Improved Timeseries Counterfactuals for Glacier

This commit is contained in:
atla8167 2024-10-11 12:24:32 +03:00
parent 250bf91d02
commit d142b84e78
38 changed files with 5523 additions and 362 deletions

@ -22,7 +22,7 @@ are RSF and KNN. For counterfactuals and explainability the user can pick the pr
counterfactual live.
TODO:
1) Offer more example entries to pick from
1) Offer more example entries to pick from (done)
2) Add more paraterization in training
3) Compare different methods
@ -32,9 +32,9 @@ A user can pick from a list of contraint factors, and a predicted margin weight
because the counterfactuals are computed for all the X_test set which is 50 entries but then only 2 of them (one from each category) can be accessed. Also experiments with specific constraints cannot be accessed not presaved and need to be rerun.
TODO:
1) Run experiment first (constraint type, predicted margin weight etc)
2) Give access to pre computed experiments
3) Offer more examples entries to pick from
1) Run experiment first (constraint type, predicted margin weight etc) (done)
2) Give access to pre computed experiments (done)
3) Offer more examples entries to pick from (done)
4) Add more parameterization
<h1> Import </h1>
@ -43,4 +43,5 @@ Importing a dataset is available in this version using the dataset selection nav
TODO:
1) Navigate between the uploaded datasets
2) Remove uploaded files
2) Remove uploaded files

@ -274,7 +274,7 @@ def compare_values(val1, val2):
return val1 != val2
def preprocess(data, value_list, name, class_label, dataset_type, path=None):
def preprocess(data, value_list, name, dataset_type, path=None, class_label=None):
if dataset_type == "tabular":
@ -603,21 +603,21 @@ def training(
elif model == "wildboar_knn" or model == "wildboar_rsf":
X = data.iloc[:, :-1].values
y = data.iloc[:, -1].values
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=test_size, random_state=1
)
n_samples, n_timestep = X_train.shape
y_labels, counts = np.unique(y_train, return_counts=True)
# n_samples, n_timestep = X_train.shape
# y_labels, counts = np.unique(y_train, return_counts=True)
print(
f"""
The dataset contains {n_samples} samples with {n_timestep} time steps each.
Of the samples, {counts[0]} is labeled as {y_labels[0]} and {counts[1]} labeled
as {y_labels[1]}. Here, we plot the time series.
"""
)
# print(
# f"""
# The dataset contains {n_samples} samples with {n_timestep} time steps each.
# Of the samples, {counts[0]} is labeled as {y_labels[0]} and {counts[1]} labeled
# as {y_labels[1]}. Here, we plot the time series.
# """
# )
from wildboar.utils.plot import plot_time_domain
@ -992,7 +992,6 @@ def get_ecg_entry(X_test, y_test, i, class_label):
# samples subplots
# Create subplots
fig = go.Figure()
y = X_test[y_test == class_label].iloc[i]
index = X_test[y_test == class_label].index[i]
@ -1310,3 +1309,28 @@ def extract_arguments_from_line(line):
# Extract argument values
arguments = [value.strip() for _, value in matches if value.strip()]
return arguments
def create_tuple_of_models_text_value(available_pre_trained_models):
available_pretrained_models_info = []
for model in available_pre_trained_models:
if "xgb" == model:
available_pretrained_models_text = "XGBoost"
elif "rf" == model:
available_pretrained_models_text = "Random Forest"
elif "lr" == model:
available_pretrained_models_text = "Logistic Regression"
elif "dt" == model:
available_pretrained_models_text = "Decision Tree"
elif "svm" == model:
available_pretrained_models_text = "Support Vector Machine"
elif "glacier" == model:
available_pretrained_models_text = "Glacier 1dCNN"
elif "wildboar_knn" == model:
available_pretrained_models_text = "Wildboar K-Nearest Neighbours"
elif "wildboar_rsf" == model:
available_pretrained_models_text = "Wildboar Random Shapelet Forest"
available_pretrained_models_info.append((model, available_pretrained_models_text))
return available_pretrained_models_info

4
base/notes_luis Normal file

@ -0,0 +1,4 @@
1) combination of dataset+model+features that produce counterfactuals
2) dataset buttons
3) Text text text guide
4) add buttons at the bottom of the pages to promp users

@ -5,7 +5,7 @@
"dt": {
"preprocessing": [
"std",
"onehot"
"imp"
],
"test_set_ratio": "0.3",
"explainability": {

@ -1,7 +0,0 @@
radius_mean,texture_mean,perimeter_mean,area_mean,smoothness_mean,compactness_mean,concavity_mean,concave_points_mean,symmetry_mean,fractal_dimension_mean,radius_se,texture_se,perimeter_se,area_se,smoothness_se,compactness_se,concavity_se,concave_points_se,symmetry_se,fractal_dimension_se,radius_worst,texture_worst,perimeter_worst,area_worst,smoothness_worst,compactness_worst,concavity_worst,concave_points_worst,symmetry_worst,fractal_dimension_worst,diagnosis
1.551486695315854,-0.265203857438333,1.5953362700257374,1.5901687615087483,1.1130075007525315,1.1799004563936333,2.033913908415601,2.0552865433305847,0.7863451938975079,-0.2803467735953654,1.1954712135450982,-0.3063581849282729,0.9533996371233175,1.2482212529580663,-0.9946999661987296,-0.1513566324902152,0.2783957697732808,0.2001444911963527,-0.4458472247069941,-0.1803895275288307,2.166251040678752,-1.5480453,2.014677990932348,2.3756728967997307,0.5011058702831275,0.8291124200476427,1.961282869578782,-1.2548602,1.2007884184088118,0.4590747606013498,0
1.551486695315854,-0.265203857438333,1.5953362700257374,1.5901687615087483,1.1130075007525315,1.1799004563936333,2.033913908415601,2.0552865433305847,0.7863451938975079,-0.2803467735953654,1.1954712135450982,-0.3063581849282729,0.9533996371233175,1.2482212529580663,-0.9946999661987296,-0.1513566324902152,0.2783957697732808,0.2001444911963527,-0.4458472247069941,-0.1803895275288307,2.166251040678752,-2.0618849,2.014677990932348,2.3756728967997307,0.5011058702831275,0.8291124200476427,1.961282869578782,-1.6275002,1.2007884184088118,0.4590747606013498,0
1.551486695315854,-0.265203857438333,1.5953362700257374,1.5901687615087483,1.1130075007525315,1.1799004563936333,2.033913908415601,2.0552865433305847,0.7863451938975079,-0.2803467735953654,1.1954712135450982,-0.3063581849282729,0.9533996371233175,1.2482212529580663,-0.9946999661987296,-0.1513566324902152,0.2783957697732808,0.2001444911963527,-0.4458472247069941,-0.1803895275288307,2.166251040678752,-1.9602913,2.014677990932348,2.3756728967997307,0.5011058702831275,0.8291124200476427,1.961282869578782,-1.5538238,1.2007884184088118,0.4590747606013498,0
1.551486695315854,-0.265203857438333,1.5953362700257374,1.5901687615087483,1.1130075007525315,1.1799004563936333,2.033913908415601,2.0552865433305847,0.7863451938975079,-0.2803467735953654,1.1954712135450982,-0.3063581849282729,0.9533996371233175,1.2482212529580663,-0.9946999661987296,-0.1513566324902152,0.2783957697732808,0.2001444911963527,-0.4458472247069941,-0.1803895275288307,2.166251040678752,-2.1445536,2.014677990932348,2.3756728967997307,0.5011058702831275,0.8291124200476427,1.961282869578782,-1.6874521,1.2007884184088118,0.4590747606013498,0
1.551486695315854,-0.265203857438333,1.5953362700257374,1.5901687615087483,1.1130075007525315,1.1799004563936333,2.033913908415601,2.0552865433305847,0.7863451938975079,-0.2803467735953654,1.1954712135450982,-0.3063581849282729,0.9533996371233175,1.2482212529580663,-0.9946999661987296,-0.1513566324902152,0.2783957697732808,0.2001444911963527,-0.4458472247069941,-0.1803895275288307,2.166251040678752,-1.6833138,2.014677990932348,2.3756728967997307,0.5011058702831275,0.8291124200476427,1.961282869578782,-1.3529579,1.2007884184088118,0.4590747606013498,0
1.551486695315854,-0.265203857438333,1.5953362700257374,1.5901687615087483,1.1130075007525315,1.1799004563936333,2.033913908415601,2.0552865433305847,0.7863451938975079,-0.2803467735953654,1.1954712135450982,-0.3063581849282729,0.9533996371233175,1.2482212529580663,-0.9946999661987296,-0.1513566324902152,0.2783957697732808,0.2001444911963527,-0.4458472247069941,-0.1803895275288307,2.166251040678752,-1.8508138,2.014677990932348,2.3756728967997307,0.5011058702831275,0.8291124200476427,1.961282869578782,-1.4744301,1.2007884184088118,0.4590747606013498,0
1 radius_mean texture_mean perimeter_mean area_mean smoothness_mean compactness_mean concavity_mean concave_points_mean symmetry_mean fractal_dimension_mean radius_se texture_se perimeter_se area_se smoothness_se compactness_se concavity_se concave_points_se symmetry_se fractal_dimension_se radius_worst texture_worst perimeter_worst area_worst smoothness_worst compactness_worst concavity_worst concave_points_worst symmetry_worst fractal_dimension_worst diagnosis
2 1.551486695315854 -0.265203857438333 1.5953362700257374 1.5901687615087483 1.1130075007525315 1.1799004563936333 2.033913908415601 2.0552865433305847 0.7863451938975079 -0.2803467735953654 1.1954712135450982 -0.3063581849282729 0.9533996371233175 1.2482212529580663 -0.9946999661987296 -0.1513566324902152 0.2783957697732808 0.2001444911963527 -0.4458472247069941 -0.1803895275288307 2.166251040678752 -1.5480453 2.014677990932348 2.3756728967997307 0.5011058702831275 0.8291124200476427 1.961282869578782 -1.2548602 1.2007884184088118 0.4590747606013498 0
3 1.551486695315854 -0.265203857438333 1.5953362700257374 1.5901687615087483 1.1130075007525315 1.1799004563936333 2.033913908415601 2.0552865433305847 0.7863451938975079 -0.2803467735953654 1.1954712135450982 -0.3063581849282729 0.9533996371233175 1.2482212529580663 -0.9946999661987296 -0.1513566324902152 0.2783957697732808 0.2001444911963527 -0.4458472247069941 -0.1803895275288307 2.166251040678752 -2.0618849 2.014677990932348 2.3756728967997307 0.5011058702831275 0.8291124200476427 1.961282869578782 -1.6275002 1.2007884184088118 0.4590747606013498 0
4 1.551486695315854 -0.265203857438333 1.5953362700257374 1.5901687615087483 1.1130075007525315 1.1799004563936333 2.033913908415601 2.0552865433305847 0.7863451938975079 -0.2803467735953654 1.1954712135450982 -0.3063581849282729 0.9533996371233175 1.2482212529580663 -0.9946999661987296 -0.1513566324902152 0.2783957697732808 0.2001444911963527 -0.4458472247069941 -0.1803895275288307 2.166251040678752 -1.9602913 2.014677990932348 2.3756728967997307 0.5011058702831275 0.8291124200476427 1.961282869578782 -1.5538238 1.2007884184088118 0.4590747606013498 0
5 1.551486695315854 -0.265203857438333 1.5953362700257374 1.5901687615087483 1.1130075007525315 1.1799004563936333 2.033913908415601 2.0552865433305847 0.7863451938975079 -0.2803467735953654 1.1954712135450982 -0.3063581849282729 0.9533996371233175 1.2482212529580663 -0.9946999661987296 -0.1513566324902152 0.2783957697732808 0.2001444911963527 -0.4458472247069941 -0.1803895275288307 2.166251040678752 -2.1445536 2.014677990932348 2.3756728967997307 0.5011058702831275 0.8291124200476427 1.961282869578782 -1.6874521 1.2007884184088118 0.4590747606013498 0
6 1.551486695315854 -0.265203857438333 1.5953362700257374 1.5901687615087483 1.1130075007525315 1.1799004563936333 2.033913908415601 2.0552865433305847 0.7863451938975079 -0.2803467735953654 1.1954712135450982 -0.3063581849282729 0.9533996371233175 1.2482212529580663 -0.9946999661987296 -0.1513566324902152 0.2783957697732808 0.2001444911963527 -0.4458472247069941 -0.1803895275288307 2.166251040678752 -1.6833138 2.014677990932348 2.3756728967997307 0.5011058702831275 0.8291124200476427 1.961282869578782 -1.3529579 1.2007884184088118 0.4590747606013498 0
7 1.551486695315854 -0.265203857438333 1.5953362700257374 1.5901687615087483 1.1130075007525315 1.1799004563936333 2.033913908415601 2.0552865433305847 0.7863451938975079 -0.2803467735953654 1.1954712135450982 -0.3063581849282729 0.9533996371233175 1.2482212529580663 -0.9946999661987296 -0.1513566324902152 0.2783957697732808 0.2001444911963527 -0.4458472247069941 -0.1803895275288307 2.166251040678752 -1.8508138 2.014677990932348 2.3756728967997307 0.5011058702831275 0.8291124200476427 1.961282869578782 -1.4744301 1.2007884184088118 0.4590747606013498 0

Binary file not shown.

@ -1,7 +1,7 @@
age,hypertension,heart_disease,avg_glucose_level,bmi,gender_Female,gender_Male,gender_Other,ever_married_No,ever_married_Yes,work_type_Govt_job,work_type_Never_worked,work_type_Private,work_type_Self-employed,work_type_children,Residence_type_Rural,Residence_type_Urban,smoking_status_Unknown,smoking_status_formerly smoked,smoking_status_never smoked,smoking_status_smokes,stroke
1.5379353389188812,1.0,0.0,-0.90953787,-1.1423846541919351,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0
1.5379353389188812,1.0,0.0,0.5387100724827014,5.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0
1.5379353389188812,1.0,0.0,0.5387100724827014,5.9,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0
1.5379353389188812,1.0,0.0,0.5387100724827014,1.9,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0
1.5379353389188812,1.0,0.0,1.71995584,4.4,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0
1.5379353389188812,1.0,0.0,-0.95210065,-1.1423846541919351,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0
0.3391861,1.0,0.0,0.5387100724827014,-1.1423846541919351,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0
1.5379353389188812,1.0,0.0,-1.0008157,-1.1423846541919351,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0
1.5379353389188812,1.0,0.0,0.5387100724827014,4.5,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0
0.8089252,1.0,0.0,0.5387100724827014,-1.1423846541919351,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0
1.5379353389188812,1.0,0.0,2.36068705,5.9,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0
-0.3085493,1.0,0.0,0.5387100724827014,-1.1423846541919351,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0

1 age hypertension heart_disease avg_glucose_level bmi gender_Female gender_Male gender_Other ever_married_No ever_married_Yes work_type_Govt_job work_type_Never_worked work_type_Private work_type_Self-employed work_type_children Residence_type_Rural Residence_type_Urban smoking_status_Unknown smoking_status_formerly smoked smoking_status_never smoked smoking_status_smokes stroke
2 1.5379353389188812 0.3391861 1.0 0.0 -0.90953787 0.5387100724827014 -1.1423846541919351 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0
3 1.5379353389188812 1.0 0.0 0.5387100724827014 -1.0008157 5.0 -1.1423846541919351 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0
4 1.5379353389188812 1.0 0.0 0.5387100724827014 5.9 4.5 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0
5 1.5379353389188812 0.8089252 1.0 0.0 0.5387100724827014 1.9 -1.1423846541919351 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0
6 1.5379353389188812 1.0 0.0 1.71995584 2.36068705 4.4 5.9 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0
7 1.5379353389188812 -0.3085493 1.0 0.0 -0.95210065 0.5387100724827014 -1.1423846541919351 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0

@ -1,14 +1,36 @@
{
"name": "two-lead-ecg",
"preprocessed_name": "two-lead-ecg_preprocessed.csv",
"classifier": {
"glacier": {
"autoencoder": "Yes",
"explainability": {
"technique": "glacier"
},
"pos": "1",
"neg": "2"
"name": "two-lead-ecg",
"preprocessed_name": "two-lead-ecg_preprocessed.csv",
"classifier": {
"wildboar_knn": {
"preprocessing": [
"std",
"imp"
],
"test_set_ratio": "0.3",
"explainability": {
"technique": "wildboar_knn"
},
"pos": "1",
"neg": "2"
},
"glacier": {
"autoencoder": "Yes",
"explainability": {
"technique": "glacier"
},
"pos": "1",
"neg": "2",
"experiments": {
"0": {
"constraint": "unconstrained",
"w_value": "1"
},
"1": {
"constraint": "local",
"w_value": "0.5"
}
}
}
}
}
}

@ -0,0 +1,50 @@
0.2042720257886117,-0.032707889633314835,0.03759197611969256,0.03394244808070823,0.006008606930762992,0.0956712380811311,0.1145813885232485,0.17108086468614658,0.18696755927287967,0.2238007198887928,0.22889030429236357,0.1962785385151733,0.18061860311759403,0.11757984967385227,0.0690350135926252,0.05208258093097129,0.03386324799206619,0.01914618513265509,0.002659316490166928,-0.040605614061931306,-0.05913090627863227,-0.08218867200921665,-0.12359435789486639,-0.1989600179107498,-0.22794935834088648,-0.2896733300849661,-0.23082706194188773,-0.17936627734993493,-0.14707944273489204,-0.18527376076777102,-0.027949259212320502,-0.3224666838980923,-0.41004541918000825,-1.0251855814192368,-2.106219361672199,-2.509313031072203,-2.7365777230731636,-2.739580964837483,-2.3958769725537685,-2.2618789298052935,-2.042217408671341,-1.8630229921444261,-1.7305748469481124,-1.452145881333447,-1.3450011104646897,-1.0217829890178436,-0.777094917440305,-0.4280431123271242,-0.24041509092391777,0.09027659782282882,0.27566021519314887,0.491861098993823,0.5977368615981788,0.6829913904765235,0.7056263542129884,0.7723390281184521,0.7829120893816537,0.820935660455369,0.8596346908402026,0.9150630083897937,0.9455716052731589,1.013924594322475,1.0701976124372408,1.1428936572979467,1.180707634220731,1.2220293017613955,1.254098411417928,1.3125203718617797,1.3337369613872028,1.3282194555921478,1.3056877832260412,1.199112470028851,1.1458044864113077,0.9755417620101667,0.9085978118002274,0.7662722411002676,0.7250297736482452,0.30172517516395914,0.6117495556084123,0.2477570904273918,0.34285893070723716,0.0552249874898294,0
0.1634933155096263,-0.10463993972259544,-0.04442588906007927,-0.06840936229060901,-0.11331942624290292,0.008478866729738853,0.0527098576786571,0.1421189280889621,0.18514655951615566,0.2505028942609968,0.27616763781429654,0.2744797423890546,0.26962956509753866,0.20631225620895322,0.14658183802688995,0.10779126077153478,0.07934517874409863,0.03515273384592632,0.0004621915976485963,-0.04793960249838847,-0.0708952814227004,-0.09743002138697676,-0.1481367488612122,-0.22467625657871793,-0.25616958460223316,-0.3079366296130033,-0.261430217105989,-0.254346476858359,-0.24260920440622158,-0.298871381444215,-0.11802897067740048,-0.30866960685921896,-0.32009549949517435,-0.8055632839033287,-1.8778701479251048,-2.4843641750121517,-2.7951691882694654,-2.879082416216946,-2.5311843764635196,-2.307221131123372,-2.015268675087823,-1.7696409682380967,-1.6472994168627544,-1.3044774666308747,-1.186301900146308,-0.8148390296461123,-0.55831701934855,-0.2142414190443631,-0.03572773179644173,0.23840244573698754,0.40966164577811526,0.5769912566303077,0.6549482351357909,0.7300618401167185,0.7688171838725637,0.8458222556092352,0.8720760310004962,0.9286414570470924,0.9769914548874397,1.0441016349412209,1.0761764662771611,1.1302556720506445,1.1629954227619521,1.2355020499201643,1.2633551852763603,1.2811532219262531,1.3027155213443038,1.304650352407137,1.3052044518866097,1.23203079736588,1.1522708875649599,1.0189933999955656,0.9449006630773624,0.7635848586248244,0.6744543436593631,0.5267606331109889,0.4761029916232502,0.09048679425580275,0.426395751199216,0.08892296893139928,0.20744936470595832,-0.057668565478458333,0
0.1779510959495667,-0.0864043451685319,-0.007515636342674272,0.015253937430379947,0.01667712989776504,0.13104928528138515,0.13679716395785135,0.174758398840126,0.1674030293911457,0.14922916874647996,0.11111405080224301,0.052178644916814676,0.02230184189645712,-0.031411477535961296,-0.06735476643348193,-0.09662567371867681,-0.11539308331662568,-0.1421067010476449,-0.1867249593501512,-0.24427361083179022,-0.2773735262047552,-0.27044186217295874,-0.25367673922664835,-0.26854437259678576,-0.2636523367032879,-0.34774175096963233,-0.18723147854823452,-0.11054832656349589,-0.0007336393985397666,0.03690898828303801,-0.47670177971446037,-1.2327053224239855,-1.6579662835541384,-2.433998866170988,-2.7380128858961514,-2.622564038432955,-2.5600957213691,-2.2887210594672176,-1.9852094558937203,-1.8141535260420731,-1.6472610213825192,-1.409946989997291,-1.2261503858100262,-0.8660345089981654,-0.6784054336013838,-0.30773034801330823,-0.09812354915938215,0.16476894887649962,0.29223411359083684,0.42941348537519275,0.48886715495854105,0.5842144251708703,0.6112343033207068,0.6571384337848158,0.6924481219732002,0.741111908757901,0.7664788238409841,0.8180959006230708,0.8703803059086965,0.9381888319912264,0.9734979178975678,1.0501639048440836,1.1070590803091704,1.199082657067727,1.2441827410045576,1.290138366583335,1.3304861440606217,1.3778523141838832,1.3960544820845655,1.3613585192979016,1.3062948835252897,1.1758433033012068,1.1083660323422748,0.9169743504529535,0.8339494696974441,0.6795830763957227,0.6327369768165099,0.2284051661068034,0.5816375614503002,0.24590718113260834,0.37819090333120897,0.10621538980627321,0
0.16963358093704528,-0.00878434346605417,0.09666379888783894,0.1597413995233481,0.19240737068439984,0.28240306380449454,0.2637747813584568,0.2113229416649034,0.16839498791581065,0.10582721902962078,0.06696406678809552,0.049290401380062576,0.03353771454787591,0.02082745545542508,0.00598993618743293,-0.06856113736542113,-0.09979126813618677,-0.13335253155401716,-0.17572999951589452,-0.27755180168945515,-0.31630533859917165,-0.3981614910504234,-0.3587553815472191,-0.2618123650622124,-0.2170775651844039,-0.23129593851228947,-0.04275124383978124,-0.46985835000194953,-0.6774919223128073,-1.4837510832464318,-2.6172160373903504,-2.887385946993284,-3.0220741673203007,-2.7760994707286057,-2.304468928043061,-2.0934628774329553,-1.716411883568174,-1.476354156336491,-1.379735318161078,-1.0166083322757125,-0.9180447253837585,-0.5987590539655514,-0.3954138803706897,-0.12807593857612432,0.00018996011425542576,0.2367037092349733,0.3863876607941279,0.5352982822101922,0.613763285618866,0.6586561845329371,0.6662151253124193,0.723339770235853,0.7313224164325192,0.7901096609353928,0.855475331051899,0.9727152523828124,1.037664745607671,1.1476610208085631,1.21974364140857,1.301312505325356,1.34053401538241,1.3289123810825103,1.3162307303870975,1.3111589133037924,1.298305913367173,1.1982232005925013,1.1123510314791574,0.9564602623268428,0.8781792560822765,0.7432512145743004,0.618336112029624,0.47348276359559094,0.3882562408322414,0.2724762511733303,0.26512449541660743,0.14430189935347215,0.13288504094816034,-0.21037446718789,0.13177021688674273,-0.1303649114801857,0.00972468713548835,-0.21499306703390886,1
0.22343935066304965,0.03771333595133797,0.13907077866981865,0.20753037164072907,0.24201824598156918,0.3531868631789763,0.3646711771730935,0.3191591323189158,0.2786011584086552,0.21388685632155102,0.16552963109668895,0.15103330460600262,0.14032081504986849,0.11804782282118964,0.09753771013209445,0.02128217839781854,-0.013728777897284774,-0.05221098674667246,-0.10699335680524769,-0.21682189645719063,-0.2609008111902753,-0.3384307717273387,-0.3241566873104844,-0.24146516966572307,-0.20385777548365525,-0.2528233055718516,-0.007113914220056474,-0.3365022646259561,-0.42878151011172605,-1.0956838991053814,-2.353841751362772,-2.783166761147939,-2.9982475885619477,-2.9046877408824505,-2.444611151052234,-2.233381578518955,-1.871599940146929,-1.6340406293997276,-1.5222475962943385,-1.1924302705033796,-1.1007399062850602,-0.7775028129538626,-0.5573587886182878,-0.2449659340401098,-0.0943559738399884,0.19138198550635366,0.3574627645425821,0.5410241775920923,0.6362570142162696,0.6951620048585312,0.7150475510691336,0.771526549642573,0.7797202956952773,0.8281004076377698,0.8782951953755358,0.9795887961974685,1.0322288490294298,1.1288237464936373,1.1846893208063776,1.263093493728718,1.2985685083378797,1.2874082220828456,1.283910167977652,1.2724854799057823,1.2576320001636532,1.146734108744532,1.0449562731601034,0.8604357259572666,0.7717021148580798,0.6240854964111975,0.4998554896903258,0.3463630076328599,0.2628370282176533,0.13113300248534898,0.12083277498758349,0.00716017019679782,-0.0007101503988664621,-0.3038188272856601,0.01238556920104372,-0.24057921278060945,-0.12730802897142013,-0.361733967390407,1
0.5574234141973378,0.16228182518032241,0.15580127039866198,0.0827643339016717,-0.022920806436104616,0.017750998780265093,-0.013300856505800597,0.05745915272798641,0.0582734380499943,0.10699323706468533,0.16812606898365345,0.18207281311018875,0.1998118261198769,0.17116819558236784,0.12197590630501765,0.08439561481488056,0.05586521330143768,0.02021192320757592,-0.0019433228817149501,-0.015089634173229173,-0.021253990882364352,-0.025940046317188607,-0.04295601973436902,-0.06466015657352386,-0.07914534084641645,-0.07764957339286127,-0.07680938994300845,-0.14686533146863923,-0.17037842242365997,-0.3299217310251734,-0.2057191281372539,-0.12598842901541474,-0.023920594627327322,0.02653618579910244,-0.5857654211719137,-1.5822497942482627,-2.072106257332557,-2.7966445157761894,-2.94682902017694,-2.6258940182055506,-2.4078855730662347,-2.037748400627729,-1.7825466678534703,-1.5355023183535756,-1.3874794606687537,-1.1050596236672874,-0.8721833569446957,-0.5778520374101817,-0.4140521004704354,-0.10265602267326557,0.08262821815997512,0.3833702277591726,0.5224907545678121,0.6915040448709462,0.7628609156092523,0.8192739642989935,0.8309097522269013,0.8394826348256146,0.8524386249915707,0.9091055355623965,0.9355996214887767,0.9900642877697194,1.0452339251818827,1.1122158191605251,1.1436218162878191,1.1826927558341467,1.2130080201817393,1.2372480655625466,1.2520708289204876,1.199375366140579,1.149648250409129,1.0225486708948353,0.9529582933883702,0.7702683824549439,0.6779575171619214,0.5041711416687633,0.45020396035526034,0.03351181642003098,0.3249979555838607,-0.0068558363646715765,0.08455281042807883,-0.15734262988701886,1
0.2669750069934338,0.11476026628999136,0.22831602836445342,0.31700778086165826,0.370302815415279,0.4752926211345212,0.462225509931649,0.38390324736714376,0.32273337510253697,0.2533447620804452,0.203472496376655,0.19698200394128662,0.18908759206390613,0.1787367728745366,0.17381793543012947,0.08602689572808941,0.050342286967996586,-0.006554996484240407,-0.0839229431517623,-0.23952521920552527,-0.309676923575978,-0.4081744300137231,-0.34696811968552055,-0.19486841485227302,-0.11222959688626588,-0.09300324837162322,0.09548693977600209,-0.4289609901605118,-0.71865774937487,-1.6540701210185844,-2.850268810394141,-3.0027505878983565,-3.0733935850239953,-2.7763739984122875,-2.2747903511000747,-2.059828436746912,-1.7005167570328403,-1.4797867122695187,-1.3624001352611579,-1.0199797565813853,-0.9061906102152975,-0.596765500403535,-0.40728817198758804,-0.1409605583199962,-0.02310028648489038,0.2234059240096684,0.3714519695531422,0.5282338149879351,0.6112592980254874,0.6559293525836836,0.6673064603741636,0.7210682635110359,0.731819299117916,0.7833857842083987,0.8225365261254112,0.9455219170046192,0.9951975376214008,1.1010305382007104,1.1780657240395271,1.247129707040493,1.2934192980120613,1.2558176255094011,1.2274880850572671,1.1812801033025124,1.1492621876196267,1.015768179655808,0.88922330190303,0.7058711818634293,0.6036145320548911,0.4433520986941488,0.30613628884619715,0.15660862947717646,0.07528971260819617,-0.015189311851329991,0.022447293009818736,-0.07258016543772783,-0.05729605403492144,-0.34550306861615354,-0.06640587107488471,-0.3190616823685275,-0.2398899009825044,-0.4706142139657956,1
0.28766640657744347,0.11407065335086486,0.20127296235596503,0.214970662857759,0.20148948275038947,0.28756853574547137,0.32536745561718305,0.40006127001420566,0.4280848511885438,0.4621487189711786,0.45190540712646765,0.38567034288102775,0.3487013676644395,0.2501629060477768,0.18331411640061646,0.14292688944951948,0.11367465290765466,0.10492349482424146,0.08622564880224814,0.026893941332588156,0.0026620267593600016,-0.03483183725762018,-0.06146926631021188,-0.15078678984999527,-0.17845532576004075,-0.21961226916197063,-0.18328773573129098,-0.04125126041192573,0.01859118223011791,-0.0356268495542551,0.17575728360828435,-0.19735433398436442,-0.3227572849837941,-1.0680493921307601,-2.344456841999712,-2.8423780874942732,-3.0781904415334003,-2.9689039933626997,-2.5107242531839855,-2.3144270593404563,-1.931367850386163,-1.7209410445308215,-1.6463006826651068,-1.2641311948586953,-1.168620555642228,-0.7670657168618469,-0.5288967461167147,-0.20856250166180956,-0.04757371615732353,0.19752917717726604,0.37175672426685225,0.4713148493821535,0.5336760355276269,0.5559981137428025,0.5439825869868429,0.6326351911512589,0.656752672136335,0.7322791414576741,0.7640233199520594,0.8375185930837006,0.8677483333812006,0.9186203872762135,0.9915651746206393,1.0443919348859012,1.078850297406639,1.1036158338698812,1.1232881722372952,1.1434263757648964,1.155310906176524,1.0915602553580683,1.0180161973809518,0.8797933719572626,0.7969015955332353,0.6224674657029325,0.5663916949572183,0.39120772398349857,0.3463858943504903,-0.06394886148085277,0.18588826985199347,-0.13836080788179572,-0.06719486055109058,-0.3031686638203439,1
0.30614712992296944,0.0692060616928103,0.13158501515854937,0.0984793781061768,0.040500396104881986,0.07715678694120243,0.08470277865676223,0.1258928475710519,0.14317352394608918,0.21092935034986482,0.2206887285731014,0.20069567501784036,0.18799053532275423,0.12629155828345517,0.09187776463389241,0.12053765678655992,0.12205209498344516,0.12203643565032962,0.11023773042981588,0.02262556849451869,-0.007767089095587211,-0.09333661148237127,-0.19289774800788706,-0.2754353825906861,-0.3223998305913298,-0.37868399092388927,-0.3307709487056698,-0.35600415717522793,-0.35406932611239483,-0.4120898655746501,-0.2629323085209947,-0.4741541266729712,-0.5149641556181876,-1.006655772087214,-1.960730605682901,-2.3571771893163813,-2.596606999875708,-2.622035648868189,-2.3241330603176404,-2.183472648895803,-1.9930959628192877,-1.8194644490964116,-1.675091119450574,-1.4364413770646927,-1.3340300913416385,-1.0298970832703738,-0.793519148750331,-0.4408554582258475,-0.24754490574783006,0.07746184279593393,0.24736410139439613,0.45805561020759455,0.5485981754226472,0.6332516268221724,0.6810405989395534,0.7391939415922693,0.7561584198947813,0.8052055591997913,0.8680344173515806,0.9406976378409482,0.9830142753164921,1.0670305123146235,1.109562465620506,1.2206037001658387,1.2688272187771759,1.3134578238615617,1.3454835692110052,1.3973105412850444,1.4084355940405686,1.3976020457938105,1.3702629581612342,1.2215227825633121,1.1618640359443546,0.962293966194423,0.8818700404411999,0.7714822819124194,0.741204359051487,0.3561296132406113,0.7161352724386205,0.3476639368455352,0.4555546340244305,0.1414991798668126,0
0.5235914250012215,0.334854301216005,0.4166017417585124,0.4538375279201077,0.4452303152449488,0.539211609783969,0.5857129028936185,0.6607205062349948,0.680731628251543,0.6771363055964201,0.609278392386372,0.49052041916631595,0.4268312011162365,0.31092382880525093,0.2567865028146272,0.1864715800105472,0.15040783470444552,0.14380501666807533,0.12190272903680466,0.10670835765839115,0.09721548923914014,0.08403755814037339,0.032103078721675615,-0.05206402992820358,-0.09390968284619561,-0.15833759982189832,-0.025463641221250558,0.11665745472514288,0.22957299098799666,0.2389932844210776,0.19615747982454934,-0.4627441945111528,-0.8486871298868763,-1.8115086044506548,-2.8078578781362546,-2.935080323187301,-2.971754274309435,-2.716266024674578,-2.2855307714859485,-2.1628240113368395,-1.8949502643798546,-1.7047303222050054,-1.6010977590694502,-1.270768945253554,-1.1473792725530458,-0.8177896093743051,-0.6052588817725848,-0.24469912309510278,-0.07841838642062982,0.23389165437664872,0.4156935004378113,0.5889784761302508,0.6831323244745633,0.7134036222330238,0.6896788291399218,0.7311227599352961,0.7258865198542779,0.7549249462709113,0.7900307619877722,0.8452308146431022,0.8772923957740986,0.9381903376963336,0.9833283654018672,1.0554679016549287,1.0853121814449693,1.0816135674194882,1.115140500760873,1.100969707714377,1.1026666373702625,1.0061313658283026,0.9025406612947293,0.6792147809264861,0.5640226185414505,0.33458959825814816,0.23724124595826623,0.08231322465153568,0.045338527755539815,-0.31027077367028255,-0.11532653115088465,-0.3881970357915776,-0.393177908286404,-0.6241765607402385,1
0.16727926043132868,-0.0727894584476374,-0.006936241017399427,-0.023445695236496537,-0.06426445727133512,0.00788019837909104,0.021477920061762745,0.10588955522106147,0.1338444762425084,0.2063104493628245,0.24771372612030262,0.2128680962459768,0.20556572761677216,0.13926862832091302,0.07433931154449169,0.08653431834923708,0.07204792951225869,0.06879590762159182,0.06972432539073026,0.025931494628025575,0.01302278360243747,-0.024675555168109046,-0.09256900301868853,-0.17413937264058177,-0.21371803594907846,-0.2643040058737114,-0.2105066680963077,-0.21379813946078485,-0.2027227749738003,-0.2624363292586622,-0.08800731882572421,-0.13874687067129798,-0.060937752407348,-0.3295314522613708,-1.3088364829164014,-2.0663481398613612,-2.4540320467673578,-2.8116327937680463,-2.6617957496421107,-2.4224740487094856,-2.2035547649081586,-1.963241745375539,-1.7803337330573257,-1.596427664108763,-1.5059009087973365,-1.2554958254980306,-1.0236232617999406,-0.7202693055511737,-0.5363400487439591,-0.17241955626706584,0.031057818236213564,0.35501328347408645,0.5080236387562067,0.6578208193394275,0.6872359731738982,0.7457829071416526,0.7405189620866608,0.7562430405218095,0.8020751982817913,0.8403481141212694,0.8706522362510682,0.9200414717564485,0.9519061066594148,1.025732032632611,1.0571377286188834,1.1275237207040263,1.1881804486680778,1.232827917649665,1.2639147052942192,1.2919991169548908,1.2994388058898778,1.31374149870377,1.3100552314601686,1.2082846232602549,1.1853711040789463,1.0288593821403964,0.9803446601613146,0.5159996598504009,0.847011762643973,0.46273684738607557,0.581463803080922,0.27574543810221996,0
0.23874303623225046,-0.07724965811637219,-0.024859552332216598,-0.027556571320346283,-0.04689012603862608,0.10918072544451718,0.15046746062669314,0.2286770964491751,0.2521525447765143,0.26330470022396923,0.2375249208004746,0.16135943023161303,0.12588441562245123,0.03278606655833016,-0.06117053441693088,-0.060816693716724046,-0.0867590892918031,-0.08168847677258384,-0.07488539995694765,-0.13617482520707114,-0.15264242082418633,-0.16902208326303736,-0.198955500795428,-0.229064784684347,-0.25070899446023276,-0.31561060626268045,-0.20700680714498532,-0.17418484493482111,-0.12113102433938394,-0.11518409144773756,-0.26221197919768,-0.8441317696553625,-1.2070499142423508,-2.0459885976829923,-2.672273311558884,-2.6557792908171365,-2.6619068706790268,-2.383979417792963,-2.0307838369393387,-1.9486864705299034,-1.7893833218929984,-1.6363309574383855,-1.4881201877561772,-1.077866890571137,-0.8837592178093345,-0.4409277320709961,-0.1948906992878605,0.12627348982216802,0.29319505459029216,0.47941373601310033,0.5827011915380709,0.70920692095806,0.7465517201694212,0.8174975334134444,0.8700671192463858,0.9207858923614793,0.9527956772367858,1.0043163888920077,1.0671666280563201,1.1645709925861922,1.2109671874793548,1.300349155197729,1.3584693723380852,1.465079617893764,1.5089820639882774,1.4951362021039287,1.4903146332094508,1.4165992259911278,1.3875538733310009,1.2214243094492971,1.0554663959498214,0.905711375109604,0.806132170122801,0.6309948760074064,0.540838373581856,0.3334229779410407,0.26134939157167736,-0.10032187861598629,0.2948398868494664,0.014925994858018042,0.1871160217964558,-0.058033849537480364,0
0.017868142637610163,-0.15883628935342387,-0.0568145295416187,-0.04705093534408178,-0.045306124265785286,0.019076320415678083,-0.005171855772708513,0.06410443164838142,0.06778256808440375,0.11476177199509863,0.1718174556246197,0.11835438438102841,0.11533996275628766,0.050797009910390045,-0.010937200628418966,-0.052775325020874675,-0.08420420886579905,-0.1053584621997814,-0.1282852315860339,-0.16057357190618404,-0.17492836211678764,-0.19854022732684484,-0.20657888575350114,-0.27326656495418433,-0.2872928103103831,-0.3017575169938169,-0.2887530431234069,-0.1956655351360581,-0.165576126554555,-0.2295884689206531,0.025319576072433847,-0.1731769259360192,-0.15177393011831697,-0.6469137618534866,-1.8930940311236206,-2.5932561284447493,-2.9385556976093166,-3.0407499359411587,-2.624546637990316,-2.3844574038792636,-2.0002552894633023,-1.739848936415278,-1.6546174448250746,-1.2585929103331601,-1.16726933587897,-0.7852635182177181,-0.5417316775920469,-0.2598019476029947,-0.10546536726239708,0.13501320454676602,0.3043441986275326,0.48665467187392863,0.5762420177689336,0.6515131195040809,0.6437704827015125,0.6951213508206351,0.6961003602813776,0.7388973176861384,0.8107697418531714,0.8443418463477741,0.8889236665866846,0.9323762079951479,0.9543375192666232,1.0743575745075873,1.1138997997524882,1.196362149079924,1.257140839157664,1.298672401990281,1.3192785786652195,1.298337834315447,1.288320077095804,1.1816514101819635,1.1372162456205004,0.9892554229860977,0.9400071214787573,0.7924209182750417,0.756265324957397,0.3046007707778102,0.6030122500119859,0.25046314364616507,0.3543989557903231,0.10106768518556208,1
0.609590374484597,0.18510470091417375,0.16511977816649193,0.10560919293008908,0.0035022102092128176,0.06308446700872139,0.05143844028608413,0.15177531608286188,0.1650062480014043,0.21140093718945963,0.2384783332743936,0.20025058858813338,0.18988772375790575,0.12717119120711828,0.0679494002102885,0.048870008514114716,0.028155119930431738,0.01954549812710127,0.015592721079514147,0.003777754243841967,0.00040196339335807184,-0.009757932388410497,-0.035668407015215564,-0.05492125593974606,-0.07276627058898555,-0.07155869509296053,-0.07966390568535786,-0.17311037377027816,-0.2040869438009807,-0.3640289631148974,-0.25956765988830455,-0.20944123116240831,-0.1362666732186142,-0.0704071318269257,-0.4982749202092833,-1.2606861415732773,-1.6913763741791996,-2.4849412364945103,-2.8227727153615048,-2.6541018223997623,-2.569535061971788,-2.271434887268539,-1.9568146431251865,-1.7829679641424825,-1.6159768357984028,-1.3884583195589855,-1.1874590345212397,-0.8836931173551257,-0.718772182963022,-0.39097747084264967,-0.21151579165919543,0.12284138560067248,0.2694552044461176,0.48580033479606755,0.6052051589302039,0.6803774864103147,0.7155296778444793,0.71180034743481,0.6986618658098536,0.7363472555164776,0.7431422015245346,0.7897612407735721,0.8175929951172449,0.8953924768685084,0.9307217392232872,0.9946045909501606,1.0647297949107255,1.102392900181762,1.1253217775551647,1.1704525778761834,1.1910816412687524,1.2109789319791915,1.2204416862962972,1.131609300942074,1.1227334704757794,0.9881749290011257,0.9500161456087781,0.4912808002454838,0.8192700494657146,0.4355227332774021,0.5536775210314886,0.2501659174579913,1
-0.06695756142618592,-0.31848740644061735,-0.24824054150738561,-0.24879524326890134,-0.2561313396925087,-0.1490729962969084,-0.13262497484618763,-0.08331614399353526,-0.07115968323953581,-0.061409038105921354,-0.07467008412660903,-0.1262200064609118,-0.1509042348483618,-0.19965234111906938,-0.22682429548473948,-0.2314019401518408,-0.23596422662684802,-0.23223850990943617,-0.24285523662074837,-0.2866552947679679,-0.30900899279039606,-0.31571992045346775,-0.3452109618253445,-0.37997377791877085,-0.397417371586414,-0.420916007772405,-0.25239478189832454,-0.10048208563939909,0.01963282902332253,0.08566733334847498,0.052222009223903854,-0.46064102561732767,-0.7795957430529583,-1.6395483481115853,-2.447850750875766,-2.5133657869389125,-2.5687344409236283,-2.354805703772442,-2.013108515255688,-1.9507193229952193,-1.8148595511668688,-1.6887767743115099,-1.5341474848980603,-1.2349982101613257,-1.0764488175011167,-0.6898573749356949,-0.4701299792032998,-0.08904505078564995,0.09251046191996437,0.35336453638163334,0.4973117514821155,0.637617870492214,0.6957004450048885,0.7367423525366235,0.7596317804362158,0.8167076405141742,0.8360682979243848,0.88800639103534,0.920861478757864,0.9937562766927286,1.0281782011498706,1.091244659567586,1.1529466480170996,1.204126468036037,1.2347934650966863,1.272122604974932,1.3015205937711798,1.3593490052617483,1.3837338994738744,1.3889111159146879,1.372230914736427,1.2885959222714547,1.2438972593162205,1.0909630927125278,1.0438306080219135,0.8886014456937303,0.8484003238938911,0.4067294356522311,0.7445656951329411,0.3815519382716417,0.5078486758227427,0.2184717283731672,1
0.43184971623874446,0.228766836473568,0.3100722019965829,0.3924547489533339,0.4152872611998717,0.5535603771741435,0.5959574193024153,0.5872357730391045,0.5719631049951133,0.506159575833415,0.42712963186849606,0.3972841475143696,0.36576160881177344,0.3348422555751469,0.321360172044713,0.27079799226077483,0.24965458000356477,0.211783085145683,0.17798301689784068,0.08519424080377291,0.04633259426735492,0.01779767563859025,-0.026192703634187357,-0.09522265769972904,-0.1257616698262609,-0.24254054425333038,-0.08568853296053902,0.06101261678112735,0.20260340338874272,0.299326586928089,-0.16829362313214347,-1.068691424788497,-1.5810163206243928,-2.525335841400633,-3.0114923165035354,-2.8710565562837016,-2.7776610374953483,-2.4916027770300637,-2.1211976643677204,-1.985295205799579,-1.8146848893744263,-1.612633417607725,-1.4447465452953345,-1.1342267878705918,-0.9786684784059609,-0.6090123034639703,-0.3998948587699047,-0.04950734265607082,0.11405107918447044,0.33721163313193614,0.4192593112728318,0.5211413416506829,0.5479404834317947,0.5600653243785416,0.5763582582032143,0.6075715250767786,0.6277353255912033,0.6486495695310879,0.6483156041382969,0.6955682440964708,0.7052845591536396,0.7555717971849916,0.8146628929785109,0.8406363060787996,0.8684710718326869,0.8899397163930658,0.909998719832025,0.9427104644283375,0.9547910376449309,0.9444628040321703,0.947188431417338,0.8774574210538546,0.8433769905150399,0.7188771614389466,0.6634211389153819,0.4709182466569004,0.415847684640795,-0.04954287729660223,0.18403444572393113,-0.1586676503814104,-0.10218895294899255,-0.31894815220343986,1
0.12575462384220515,-0.09626701476212673,-0.010790846091992991,0.028516790297196337,0.041617629294471215,0.14035514512631408,0.13636111175878796,0.1537544148758485,0.1377216668937109,0.10834024085364291,0.07327447689263522,0.04029622249233711,0.02035857888502335,0.0029330536786673616,-0.0025359684119337107,-0.037702313474106575,-0.05038577101564812,-0.07693857944121163,-0.09506757007368094,-0.15914465775939135,-0.18720437585630378,-0.20820293928219513,-0.25373636514889597,-0.2937399384386623,-0.31758488679932384,-0.3945372588572411,-0.244335344741188,-0.1456743187287941,-0.034947174268836534,0.028269553518583734,-0.3239151722112794,-1.1003744716555275,-1.5541399361712784,-2.4103863233936327,-2.877714577233567,-2.731246021288345,-2.655856759344905,-2.367077727393424,-2.022125053864256,-1.8701427187441197,-1.6926157200529879,-1.4657464638558224,-1.2844576115247044,-0.9768528991876231,-0.8225262565007334,-0.4820623910373385,-0.2787723262494026,0.08612657340619023,0.25595294446724637,0.4999946168422369,0.6139424645266303,0.7092620297649859,0.7461093440089073,0.7455106756582595,0.7379158990972243,0.7697395788212731,0.7809513601909757,0.8085467188328082,0.8329120388785398,0.8916140604723424,0.9135509793210801,0.9948704984721033,1.0681034777740592,1.1219661631531181,1.1640629676830017,1.1767461240835217,1.1973559144507178,1.2355987161880506,1.2452572121691006,1.2243032176143842,1.1799662250259146,1.0918728397383362,1.0360021460282312,0.8843089815739447,0.83252025440963,0.6520536676375883,0.602229885638252,0.17150697923150204,0.48517305804838173,0.15256490784111065,0.2789968577108439,0.023186594217484924,1
-0.20606001977353827,-0.44101446068517447,-0.3666934588727102,-0.3413458168150001,-0.3214560546300973,-0.18457330675187222,-0.14900222815686703,-0.09465199546407632,-0.08041254226468908,-0.08414458294355143,-0.10868004766640382,-0.1513535372523691,-0.17492384500146585,-0.21943429481829213,-0.23829234786369824,-0.27014945424112824,-0.28367460093762986,-0.2931533157288726,-0.310630336049897,-0.3583232441814346,-0.3832348340400813,-0.3886472416186493,-0.42176040719655816,-0.45602965315582367,-0.47089879223106834,-0.5224393791937061,-0.343180066776668,-0.18355304097119074,-0.04618937088170583,0.06956502179038182,-0.1751695760749712,-0.9247732697965851,-1.3724674301788298,-2.2861039181350282,-2.7927479015291032,-2.589869157733844,-2.5245424100943605,-2.18432819053775,-1.8225160616373017,-1.6884589199633666,-1.5198649685326053,-1.3233191074906117,-1.156978293182359,-0.8610087664911426,-0.7153052969535487,-0.3977022509927082,-0.21922741093655418,0.11454374589556693,0.26424606705703013,0.4701238366423084,0.5769737904510635,0.6544935121933975,0.6888576175744205,0.6975124105309689,0.6968748949885537,0.7863020338601459,0.8171683862769967,0.9025201837052705,0.9547555030043995,0.9998212568647844,1.02736542153297,1.0641868376490464,1.1118616773192969,1.17725987066612,1.2129860368871732,1.2595445467908988,1.291282702464855,1.3396131261388078,1.3562433379075074,1.336246670659989,1.3019867600723884,1.192123288061957,1.1318908677971322,0.991729296477331,0.9728817833676757,0.8162240080337213,0.7851980508755005,0.3426330749411477,0.6633386262755039,0.312706282511229,0.44222944496617345,0.17269949767645443,1
0.29766609533579924,0.14746990289915374,0.27350826145384843,0.3487896019837251,0.3986748167514378,0.4742717530717968,0.4401353103029919,0.33309413194561444,0.2572448394492781,0.1799551894473339,0.11705737000163197,0.12577299344451376,0.11972969542600254,0.11821224581890277,0.11963092117096608,0.04097710234184149,0.009443722562473054,-0.03458249249185741,-0.08208327265170823,-0.1712077647967405,-0.206913453428335,-0.27259773074553806,-0.27993653743833846,-0.23757141625834066,-0.22349939746688108,-0.2971874008522519,-0.06275122363853569,-0.19342263680827898,-0.12209256762088216,-0.4869050398033181,-1.6974287064283544,-2.446455564523376,-2.8380819720396024,-3.0456449267809296,-2.6858226248223573,-2.4236693527088864,-2.0717828318755167,-1.8274600443570002,-1.6925032438814753,-1.4240720096085262,-1.3527700971066352,-1.0573590364397027,-0.8267423813715808,-0.5271362757053026,-0.3670436858806596,-0.022472708596183114,0.17771229111955478,0.45483189557294423,0.5925719919392449,0.6897803136641514,0.6916588313559728,0.7398164000836118,0.7341465169317019,0.7316202449027358,0.7594245954134564,0.7853386837325189,0.8024293401230196,0.8654283429519296,0.9023467264769138,0.9677870795667403,1.0007029977755977,1.0458696338781692,1.0970139192565753,1.1410952431178316,1.1652051955773715,1.1596726327312439,1.1654945920989874,1.132559400864757,1.1209835400001182,1.0160639001388745,0.9070592823216259,0.7570931616253702,0.6673498246812528,0.49619903540784804,0.43564559881415477,0.235939714463548,0.18156930532231996,-0.21475938160126162,0.060366669290111474,-0.20951350500755694,-0.09812023660814617,-0.29406577302387404,1
0.05141344558130356,-0.19918798166398943,-0.12875772184869305,-0.0860083447253217,-0.06788899060553888,0.05957256041654091,0.07386441215366091,0.10559564158412371,0.10243215515376392,0.07885190975095924,0.03758866356845658,-0.029635347791433734,-0.0645315693573636,-0.10483447682245384,-0.11762273143946089,-0.1522187154070025,-0.16255477868632084,-0.19930873921359193,-0.26227461653014217,-0.2978086547795087,-0.3312922238138043,-0.3168383582071428,-0.26554952513843944,-0.28389473502431173,-0.27093242089690506,-0.34337370045346205,-0.15739352271964435,-0.1050603325885433,0.029755684459452425,-0.07351520830933822,-0.8419596394676248,-1.66263517395074,-2.1014494384629003,-2.6151897723848787,-2.66121255241144,-2.4633525872370825,-2.3083664457132116,-2.072706280817801,-1.8433542674692696,-1.6684657158375948,-1.543983804652278,-1.2559491933058275,-1.0358461241491703,-0.6779115623262015,-0.48345336141542816,-0.12539969831847486,0.07196722371850939,0.33519037459594614,0.4576568994951913,0.5657644182095325,0.6174932183105781,0.6665262039875799,0.6768568467285121,0.7180240289251714,0.7477141245122283,0.8222173166426714,0.8581600032581491,0.92979151460802,0.9901829373321718,1.080886914134723,1.1247920704984296,1.1973748863350693,1.249049782193275,1.3306388225584982,1.3644024527427447,1.3794492650206465,1.3913295794579739,1.3657846900312123,1.3549833638737496,1.2672609843246008,1.1851663281843585,1.0511272549717106,0.9807472857069968,0.8091908594776953,0.7261153870305819,0.5632321233601374,0.5077221965937326,0.1092002996109116,0.4689078291976827,0.15556547697886458,0.3052232292691528,0.053319969388120114,0
0.3369110943925264,-0.034598151824972945,-0.025932818932673744,-0.08239977186525493,-0.16877695447157492,-0.09609897807215617,-0.10408493682005826,-0.031220252987338885,-0.010128636985818675,0.05541199606415148,0.10190877205847926,0.12002662047315482,0.13318949452084894,0.11971855320820879,0.08631358198051231,0.09990226943254044,0.09343797626603845,0.07028986822901828,0.05652591670250473,0.02389367333585568,0.010734412980418993,-0.01623758374700657,-0.0746676749984374,-0.14021071717657918,-0.1802531376581129,-0.2154465854122165,-0.19625004985869765,-0.24335001131899503,-0.25078337629253156,-0.35741379829664766,-0.21592630305939053,-0.18498165397696198,-0.09224979353594875,-0.17576161932314704,-0.8437473631414782,-1.6631686452702432,-2.09476365607512,-2.6255449204764316,-2.708544016031979,-2.441113247517551,-2.2641706882638033,-2.00415950752118,-1.7601610488827681,-1.6082423298034136,-1.5159415527346098,-1.3097144595644465,-1.097396186953361,-0.8049060436240083,-0.6203466492294041,-0.24612863952393838,-0.05498178528505804,0.29860234277149544,0.4560259197230039,0.6406735484368937,0.7327564499766765,0.7787948893363534,0.7883787023440831,0.8021345230630175,0.8350862770534278,0.9072989905747022,0.9476118356935004,1.01836823123503,1.0614428406615701,1.15629684188076,1.1905332634686872,1.2544365927850194,1.2956649066090336,1.3354555731966329,1.357357559686882,1.3509182612251607,1.3416229413159826,1.2668960014066002,1.2291196671114974,1.069261063860523,1.0040556007674297,0.8508052360912117,0.800570697738614,0.3767785519405962,0.72160188540105,0.35947528998894995,0.4843940062258838,0.1906246158374003,0
0.10398544054241654,-0.16271829826096962,-0.0932721673037804,-0.08163366910667946,-0.0893606465761323,0.024635985953736395,0.030058933468055216,0.08058828888065506,0.08238700420179157,0.08343467381542524,0.07652288509104466,0.023091132513684443,0.004072872444865537,-0.03941309561697892,-0.08382206090957567,-0.09111268503894365,-0.10453875633938736,-0.12323208524605889,-0.14278968888429944,-0.20171636168010565,-0.22699082646960278,-0.2418590621217831,-0.2615524803606988,-0.28156179553111826,-0.29454699637615533,-0.37347906950910215,-0.22126071511340228,-0.17814966762326634,-0.09306528342204246,-0.05443912916440041,-0.4818705642066732,-1.166588305458955,-1.5568559270437596,-2.3146760276799423,-2.648396178751555,-2.534328288727485,-2.4898503621409755,-2.2294212729458316,-1.9463591021456068,-1.8328320990386935,-1.7067615183947034,-1.5470829974745577,-1.3678369352624635,-1.0378160381410027,-0.8547808690264809,-0.4449443510151312,-0.21817432078453436,0.12759459548328067,0.30078170034374807,0.49589970123252414,0.5892431790881076,0.6768932847921079,0.6963855408286932,0.7236520534750994,0.7531452028341263,0.8110121603754408,0.8424564024124592,0.8936371258544611,0.9326722296192358,0.988573639713529,1.0126965412369913,1.0743910011609685,1.1242030386604682,1.2098153230722986,1.2525499442856187,1.2962828479850543,1.32221831731664,1.3598946727926204,1.3687467131182203,1.3440528482180838,1.3112140221107182,1.1931101271892572,1.1364796546820273,0.9587203256928447,0.8900156039304719,0.7321610941772647,0.6844437936229895,0.2698484946201347,0.5999237476959678,0.2569150900307875,0.3782180060231397,0.10268149991952669,0
0.0962870714700017,-0.11627482422743896,-0.03740629185001865,-0.03493392406389262,-0.050658905922105646,0.03082533736765214,0.04704900875739071,0.11689866868332643,0.13632437255417074,0.1946939344602896,0.21873010736957355,0.18201981229041309,0.17173644868984894,0.09522886192061719,0.030650073293166713,0.007426378859761938,-0.020937491668817646,-0.019607652918082866,-0.013674271372401849,-0.0565335649686034,-0.06517179516897187,-0.10854634105287886,-0.15870438958602762,-0.19637713136975066,-0.22347801645435794,-0.20935450254822996,-0.16681200930659656,-0.1675573333346918,-0.1534943487738758,-0.27013530061311997,-0.0980374228272467,-0.09698764522646286,0.008786632853663432,-0.13662111620086392,-1.0574489270346064,-2.0161038144255663,-2.481844226944636,-2.983418313029418,-2.912636772212597,-2.624613566582334,-2.353062247828742,-2.059736588735369,-1.8718598248484426,-1.5578242459982405,-1.4357019252865157,-1.098570787507537,-0.8260410239326177,-0.5567339209987736,-0.39199442407209517,-0.09191432243805053,0.09265802102047616,0.41242401236790016,0.5655150734437697,0.7236659059620862,0.7489310353799183,0.7911037274472079,0.7736980775482678,0.7618469737900213,0.8001442820522371,0.8071310548909594,0.8336859713036731,0.8756523817712676,0.9077555203632244,0.9660744905777392,0.9950825017512059,1.0443597127966058,1.0656226780393325,1.123184880866937,1.1416065805722582,1.167820304207666,1.2030893383581542,1.1978847180843886,1.1957607704600832,1.1181004158607308,1.1125016019898837,0.9695162313119212,0.931666418607584,0.4743557714167821,0.804559310567754,0.42518606771604084,0.5470469980211448,0.25679282677607773,1
0.41584105953832307,0.16643486100717553,0.2340494522718899,0.27096060841235925,0.260951283141317,0.3964373389620448,0.4344410347283443,0.48899935586695875,0.5018222417014329,0.4932951325379804,0.45544321184649306,0.38710678555335676,0.34947018069220803,0.26294995610069805,0.19334361812009604,0.150957718209618,0.12027686866198195,0.10122186938854583,0.07902235556910142,0.028589064142344967,0.0062221159149729015,-0.006815483467796925,-0.04420334584522578,-0.10429332640690347,-0.13405810496728066,-0.25305578644041304,-0.11002976172455448,-0.03976452718901413,0.05984479189993408,0.1295261139948778,-0.26342708321924135,-1.0480281818899932,-1.4898946612250867,-2.361004842269555,-2.8233882852519816,-2.7474661542710814,-2.699859146615913,-2.4171714823184924,-2.071481464998298,-1.924722947892045,-1.7494952361849592,-1.5480493590123992,-1.3833797268026977,-1.0318963585117977,-0.8504951805796779,-0.45497144360643915,-0.23473858266953584,0.11841581714940475,0.2825114745722175,0.49755597685051356,0.602287102432328,0.6924854634598603,0.7223815395055908,0.7551637511009233,0.7884916302271279,0.8661971559796982,0.9015553278725363,0.9760621336952369,1.0361433811672924,1.1057885663396618,1.1429129303233196,1.173106232557224,1.1944468921834854,1.253904777741134,1.2704834943951653,1.237314918869309,1.2045287924406978,1.1112461450714477,1.0630569565365562,0.9041568851568655,0.7772599735500094,0.6051205383031757,0.514895978006777,0.34562400756621514,0.25009454703590706,0.09277486373679977,0.03612903303747572,-0.3282088408951509,-0.023067763254573496,-0.3340458573139671,-0.2566047333782322,-0.4873558479124327,0
0.3837574951127607,0.026410308852135245,0.03340732048558692,-0.01758579210004996,-0.10728395789094947,-0.054492129984176074,-0.056679919505029375,-0.0016945803979950842,0.012830053348707791,0.11240654806631767,0.18532664184698433,0.2520375089063194,0.2932266743975447,0.28176223571084336,0.2388668051920675,0.21910201653106753,0.1932192468782361,0.14233484620134362,0.11158623992388073,0.06497232007220788,0.052326505158347913,0.002931849114581551,-0.08727735298972306,-0.16284899346428006,-0.220477447316604,-0.2530834914143867,-0.20664664248332798,-0.27004315146055546,-0.2719054075372185,-0.3932902338874058,-0.27406790121226976,-0.24229782459003957,-0.16345519034046418,-0.32669380041622276,-1.1087729936028197,-2.008257509826363,-2.443199853655196,-2.853286168143841,-2.7819442415287243,-2.465702541197988,-2.2120436291618866,-1.9638443285594658,-1.7909298316086684,-1.5792418471554832,-1.4944534845783473,-1.1895063417555853,-0.9344781414949388,-0.6229361608728752,-0.43072778453337435,-0.1066678233610574,0.05365333249886817,0.38297723872617695,0.5155780624203672,0.6987425716036029,0.8218294470070404,0.8434077068992281,0.8656849151022072,0.8774026133879502,0.8725994140957809,0.9849903626992642,1.0247825349919708,1.107236452370806,1.1922280851374225,1.2616516305180028,1.2969056076174184,1.3188780611066875,1.323457813760939,1.3499323255209248,1.3568998253342741,1.3103527587893637,1.2554963080395112,1.0904550678093372,1.0139236908994107,0.822340784461467,0.7419225803876515,0.6264810732368531,0.5905865691848078,0.2052185120190373,0.5431755290493498,0.18541698415342012,0.2981048578040557,0.02249487329120825,0
0.18110434358519711,-0.06538078703785999,0.0024030454809107465,-0.012467298158419739,-0.05278074555926082,0.03765130090091873,0.05609528504182748,0.14102337705291745,0.1721294377228446,0.2414701693225254,0.285358762930052,0.28980270098362837,0.2933269543576884,0.24346010919228434,0.19177738366752095,0.15588137391036838,0.13050391889153445,0.08667705919340563,0.05295197505990501,0.011144868192658917,-0.012198379226262547,-0.03866084534539027,-0.08727946097687322,-0.1762163422655405,-0.212052424959424,-0.27099716621651737,-0.227453379078554,-0.20789306517112038,-0.19201751280218105,-0.24348462135558435,-0.09305775489650614,-0.298642514267911,-0.32225980001635435,-0.8072544918798066,-1.806741993792592,-2.40055625231561,-2.715174990753855,-2.848252407757122,-2.552303057514343,-2.3500725197677603,-2.114685188637786,-1.912109053926459,-1.7869344431065457,-1.4809793812849819,-1.3653085552463473,-0.9569304632018927,-0.679953449022161,-0.292947335270199,-0.07766673843108407,0.22990153584240147,0.4241414095126217,0.5961236491462572,0.6747277797068421,0.7471862243016218,0.7524860051381665,0.8429204607265177,0.8657538763961199,0.9204338585074012,0.986885744288287,1.0398844560767984,1.0726766053258388,1.1382063972990366,1.180917228371662,1.2787714975875843,1.3164508644737793,1.3322339665491327,1.3436110743396128,1.3107830893090195,1.2996134676823203,1.198530966716426,1.0987903501421243,0.9728510669834876,0.9006172735907114,0.7327013411697507,0.6619985487300397,0.4877761210378182,0.4314597386159633,0.040391081914094684,0.3950255898534749,0.0788997911733702,0.21785589498429658,-0.03199418541247212,0
0.19395071841934453,-0.022786497540536747,0.07072983526136056,0.12921955243503902,0.15795111615081225,0.2831251999739379,0.2824051717916447,0.2932260721155018,0.2712557266133828,0.2218137914292484,0.19173733191166775,0.14794630799509179,0.12541584019307095,0.09483587288762152,0.06215454353447569,0.02915460698063299,0.00956719038126863,-0.01273952964181291,-0.033551987916446535,-0.1181057616378709,-0.1530125231395516,-0.19437484471811217,-0.2559106033237839,-0.30093028260788657,-0.328866231744982,-0.39279545918915915,-0.21497018031627846,-0.08614415932599684,0.05037631590342073,0.14767497993476297,-0.16534244112190777,-0.9654943115699623,-1.4464485943485847,-2.4154210248460437,-2.9955796108610744,-2.927539093264143,-2.8614803470867636,-2.5395330219291337,-2.1552632637112286,-1.916015605827253,-1.6503870157557081,-1.3739156173509954,-1.220745205615973,-0.9024620326581818,-0.7767481535541023,-0.4588441171423199,-0.2529817057491357,0.08259268351944371,0.23789201170562535,0.45414288491586063,0.5410542916942376,0.6184550627330978,0.6443381335269507,0.636254605088098,0.6332552405144298,0.6641128598416586,0.6761094147132667,0.7282546928469813,0.7695832866311392,0.8367293024664733,0.8689953583510359,0.9390356405435512,1.0033120835854632,1.0603614432535338,1.0972807302015823,1.1196302122497102,1.1416562688407978,1.175063649196666,1.1837473516912738,1.161483092552217,1.1292965378973179,1.033833027250708,0.9817552047057987,0.8287894182948534,0.7707378613073885,0.5984213551399407,0.5492465320418347,0.12891178631111444,0.463570104592435,0.1430449367299289,0.2820690984117036,0.032364770269317944,1
0.10509303721931929,-0.12173059611309611,-0.04856115756666668,-0.013881456395161253,-0.007638200738405489,0.11438534571828285,0.15538509350701446,0.2024058548786698,0.21044150189511157,0.20693802725153176,0.16787612193584778,0.1301076173073028,0.10350692745932832,0.04803072848732626,0.018676405139189,-0.02506553279089019,-0.04778632171846908,-0.06434245279589135,-0.08103921673033199,-0.12787176496357944,-0.14678071084161104,-0.16950601688451172,-0.19087016551044655,-0.26430370473268994,-0.290099745771343,-0.32671849397998187,-0.2663123153457789,-0.13372504299755406,-0.06828860474100651,-0.09565027795019176,0.06648133773070697,-0.3673005591719587,-0.5836869458418477,-1.3630548158417959,-2.463281969667552,-2.724012275169404,-2.861177549789693,-2.7104843805610814,-2.292038504244795,-2.179525744098134,-1.9254361251161,-1.7325327152990866,-1.6159369346130603,-1.2826673281521686,-1.1541814459456177,-0.8205433934449786,-0.6051655280559345,-0.25613645908987337,-0.09709153887886401,0.19960945935346075,0.3763367780621252,0.5231981348272043,0.6095750162925029,0.6448618177632568,0.6400405500098003,0.7173130349735217,0.7304954831876103,0.7792387712019746,0.8119336519010858,0.8631685807269491,0.8910048521859437,0.9388814563405674,0.9989443342103144,1.0371392545252363,1.0662785631840563,1.1113952098770667,1.1342195913160253,1.20682830528051,1.2321202362492514,1.2520687209333374,1.2566168537803364,1.2122894977045533,1.1802233994582352,1.0642636286095168,1.0444295775135828,0.8671617106714109,0.8281847271237766,0.3555155866978694,0.6515423301831618,0.2937006703653111,0.4072275229017137,0.1374211281543012,1
0.08999352526266335,-0.11701081288386916,-0.03707563900846367,-0.016266493285066023,-0.01713558627297829,0.0651590275055085,0.07205154320451612,0.13493370331710253,0.14329277579058441,0.17611654484687733,0.1836456726652358,0.12902953245050242,0.11190273913742743,0.03908172075281868,-0.008535600982334303,-0.03874697167752572,-0.06306621714697513,-0.07271176406410262,-0.0893720899349475,-0.15296253372999047,-0.17809184854714744,-0.2212408398059864,-0.2482730647377025,-0.3069290117552228,-0.3227615009580944,-0.32057612056541274,-0.27510412746708823,-0.17063409115087325,-0.1239750001459825,-0.18772956579771716,0.06687854273800298,-0.194315519936886,-0.21803218222240872,-0.7901724180084173,-2.083158960957677,-2.6391546501573337,-2.924525273921445,-2.9577811615222087,-2.5153319366679767,-2.330487211155546,-1.9753977544180064,-1.7364788672442018,-1.6436693124196537,-1.263057476546706,-1.1637589349918969,-0.7885420405182728,-0.5509234049898453,-0.26886538892565426,-0.11898027516416931,0.11765694177534414,0.2841186642037101,0.44891296879629294,0.5355979175265375,0.6034272223395476,0.6030571200241823,0.68504095626853,0.7002696577233891,0.7493532350919949,0.7890704232703598,0.8278935237560319,0.8546923643961222,0.8974483666219655,0.9479584490091923,1.0111796939119344,1.045005961428643,1.1049655479280318,1.1386334152674564,1.2176769105783407,1.247355863947604,1.2699393325694004,1.2793186708235638,1.2071990098779182,1.171172907199498,1.0382384192535383,1.0175888782715106,0.8597738179921137,0.8239555026184959,0.3736626457916259,0.6831380461539709,0.33098253110318865,0.450800520718758,0.17571662957038825,1
0.4504325263905429,0.0647389357805821,0.05487656732800872,-0.014033532610994827,-0.12349437907574412,-0.07542022641104751,-0.06560513709884219,0.008420445371577044,0.04210517660820301,0.12732567655112348,0.14754187560328091,0.20865633791994043,0.22406271257745658,0.19019006934344418,0.13217555270161796,0.06383581385724568,0.01702163522630684,-0.015439861181178573,0.003315502775912192,0.026191981611582094,0.05863179586552292,0.08574051061668797,0.04337298030851855,0.07026156097300174,0.04863511851738167,0.034439933048147964,0.03521266090919539,-0.14350700679739958,-0.19749075086708245,-0.40106087680496927,-0.3083260049537415,-0.21297993930549808,-0.11446436440646579,0.0014631843529571125,-0.41319505312338123,-1.193260817440546,-1.6339632361572143,-2.4130868807887644,-2.7208599685994654,-2.5687904531536185,-2.4925890891605764,-2.185502188809883,-1.865169224204319,-1.6886975742228678,-1.5320497365426213,-1.3520691913792042,-1.1880443020964329,-0.9269625650225457,-0.7784200885052073,-0.4340535859742971,-0.2186368733934856,0.16767586315658178,0.35216448941114464,0.5752253656805095,0.6546760036523978,0.7135123341417682,0.720924619243803,0.7370811361857577,0.7981410919775342,0.8730291423333938,0.9135747694617748,1.0037725282072643,1.0397567722837024,1.1550492146288818,1.197179746953168,1.2755179699918102,1.3659997047205295,1.401132623129321,1.4448236682267748,1.4333577238349662,1.3806008282866813,1.3414022049472578,1.3025529051927194,1.1491856978001778,1.1028141964707743,0.9099713159990728,0.8549194247262974,0.39076173413072723,0.7148445820206746,0.32262616889889983,0.41690077479281484,0.14170335347935747,0
0.07640574123369959,-0.13986139359169414,-0.05566296627558387,-0.061352724734909714,-0.07461768558887627,0.017323077388780916,0.029071492058712067,0.11018834330229765,0.13525983904333572,0.19029366185482388,0.20966184779057073,0.14611597286670275,0.12146035287629076,0.03165708886890428,-0.04071161570148263,-0.0512623925290967,-0.07466225446005126,-0.06328243640037812,-0.055678625608699406,-0.09966177749696215,-0.11014329188964211,-0.14453389768055303,-0.17528250395801592,-0.2063795303972995,-0.2226125371587031,-0.2015450124388991,-0.15386083739698364,-0.13560898122776166,-0.11346728648443616,-0.23536104116087841,-0.06420663819521621,-0.10318030919161458,-0.021497011686676618,-0.230517187830813,-1.204655541980781,-2.09888394281589,-2.5434139392004766,-2.9549402159471385,-2.8027533119668666,-2.523232296080531,-2.240202874366389,-1.9506913921654796,-1.7709403917456648,-1.4928700850875494,-1.3769910200325803,-1.0555222267793525,-0.8139086544603344,-0.49178262092778624,-0.3249245969151886,0.007894954289142218,0.19983591740159312,0.46957816911143624,0.606233856659486,0.7088853023471486,0.7246410005895498,0.7624164314615882,0.7489530186744844,0.7663119917150993,0.8088237685725446,0.8256792338252907,0.8509082263205485,0.8874977638501065,0.928326463538653,1.0080926973010236,1.0460991033365161,1.116214369643373,1.149549777295114,1.2138177883884254,1.2363756600233984,1.2598432786841798,1.288556171656623,1.2413116625060283,1.2263401354834897,1.105396781870752,1.072151114243404,0.9183321953186834,0.8750455826130406,0.4145365166333903,0.7249659317516972,0.35557461033807414,0.46653423566659313,0.18228150383805541,1
0.3929859617151763,-0.06373264222744979,-0.09400875824225352,-0.16616937436681667,-0.2678303672349216,-0.19196842681568427,-0.207015239093586,-0.10526300049598092,-0.08872403445678145,-0.05015991524955865,0.0028478307695962695,-0.005573276754304858,-0.0019270612665565085,-0.05352667186939897,-0.11003126742966174,-0.14687526912234716,-0.17615761976635724,-0.20121104704610815,-0.22100534752721046,-0.25265858143311704,-0.26406459876165655,-0.28355022969576993,-0.2988737905723866,-0.324394588717432,-0.34033609097006945,-0.3269898220403107,-0.31200655051793547,-0.32010302802071067,-0.312766028174039,-0.4311451659891077,-0.273151227942968,-0.27501950684006005,-0.19051150655389648,-0.3157419037480338,-1.0848529105573057,-1.9552493873809311,-2.3741777292562123,-2.7647866941888335,-2.661394516873653,-2.335933572384283,-2.0710999193241175,-1.7490006120572232,-1.5458787345297686,-1.2809572988618498,-1.1696858420056166,-0.8537365119640832,-0.6308971249159967,-0.35031198958773047,-0.20021577597020723,0.06503616196875583,0.23208962650427623,0.49109951335056934,0.6153701741093371,0.7502927950789271,0.7972732035537078,0.8567344016625924,0.8666425435504266,0.8965413298653502,0.9382839925540054,0.9988154458531326,1.0375120671097946,1.103769415790822,1.159700036564196,1.2438165535224712,1.280896348634954,1.3204030392393236,1.355829871285053,1.390826673952148,1.4063538061592666,1.3510338993773985,1.2767156078341273,1.1518267045583173,1.0782191058256743,0.8929993091710244,0.8196579191013456,0.6326074861772852,0.5760245939514448,0.1629066927998366,0.512582612679978,0.1903864132894313,0.33860621720228323,0.08702728620135503,1
0.07487835397289189,-0.1183695611726634,-0.016308954169090843,0.03721193615061935,0.07316215129163339,0.17965374728485983,0.16866752054022527,0.15261881208395067,0.11769187413383264,0.07401709065153739,0.05265715799990289,0.03565834962094527,0.028732407268556415,0.021339094050873086,0.010762419095414087,-0.036019838587250774,-0.05519469198722504,-0.09036344617756953,-0.13240062478520542,-0.20340395596432614,-0.23823934704392258,-0.2666766959817366,-0.27451238535993383,-0.27840403078016607,-0.27530559081044004,-0.37491882473266713,-0.16846105754007112,-0.11041763136018545,0.03494494654112401,0.007231540618882091,-0.8493824645054104,-1.8272179269757522,-2.3234394572599797,-2.914344185340292,-2.908314664523512,-2.6106427311740825,-2.345047680683802,-2.04410782143351,-1.8263855731924572,-1.6152556030520238,-1.5137076886374743,-1.2434768356203243,-1.0141645728866244,-0.7332871801970384,-0.5755437914807473,-0.2290939953634279,-0.02321652691917109,0.3206533940673637,0.4836763871717622,0.6622210919448932,0.7050960448742103,0.749206278273526,0.741604876610019,0.7219349473707766,0.7271967844386182,0.7458702380378739,0.7681332926128448,0.8091571316832926,0.8287502699620646,0.8682662959380991,0.8760068247535173,0.9123331650303257,0.9686022683118125,1.0212787592073695,1.0571371263368405,1.1064697473301877,1.1499120499439215,1.1700228496385705,1.1850013029046025,1.156201681317981,1.110815814551792,1.0394222046088686,0.9907376390936875,0.8477417284799742,0.8004324740097672,0.635409001099859,0.5892943730617546,0.15856183014231817,0.47000217566964153,0.12303411585440216,0.24377209129050925,-0.012517588709002327,1
-0.03279130569625721,-0.3173987816480661,-0.2547879495958085,-0.27716332977178126,-0.30119347986063616,-0.17501027247462275,-0.15648919623222213,-0.06801607211659189,-0.03597346286994707,-0.0068151823267754725,-0.00702387305464214,-0.08460322071922377,-0.11989785185653545,-0.19768769709511247,-0.24902140017601226,-0.24730519749475377,-0.2527441054832096,-0.24790717839663756,-0.259695042540379,-0.2931355484086069,-0.3104102019632151,-0.3118225533538279,-0.3316165526939088,-0.37650403106959374,-0.39461194183056136,-0.42813134664640984,-0.33000484594709434,-0.27067313847743435,-0.22544537074750792,-0.24254626593273798,-0.17553576355705758,-0.5280442158849823,-0.7051342589539864,-1.3585735363015594,-2.158836979498062,-2.28852975963334,-2.3969558102631225,-2.2609881546638366,-1.9798127076482679,-1.9211579651948334,-1.8028660077054752,-1.6892242698693885,-1.533788976512021,-1.2920099272017147,-1.1619276964404435,-0.8293996497448788,-0.6162511313376484,-0.23925087973498194,-0.054743883878110466,0.23300539635051365,0.3979201573516775,0.5526271411486618,0.6231519592446944,0.6740050412553558,0.7019536383153522,0.7751321110924252,0.8004550595863762,0.8577272636103217,0.9114556400938127,0.9695879028750269,1.0036864018751288,1.0789189575595302,1.1295503997784024,1.2322918866314794,1.2781966193776313,1.3490307093026956,1.406250213647887,1.4869740758584769,1.5224072318656567,1.5496348973202956,1.5489473923683192,1.4629990345765478,1.4253196676903528,1.2445350759996572,1.1766289802261767,1.0295866377072045,0.9831190723919576,0.5405845117007715,0.877658583256185,0.4897612426512339,0.5981036513623081,0.2838657057456899,0
-0.03477251247639401,-0.3132800758976586,-0.25069243170405286,-0.24322865148734962,-0.25133205523361823,-0.10456796701846827,-0.06788929174656033,0.014543545760773212,0.04338231568018358,0.050924392562464504,0.028707412563775847,-0.05429157006388863,-0.09570990387243938,-0.18114632192774138,-0.2356299600930356,-0.25970437791204404,-0.278588931367338,-0.2870615340059075,-0.3136613204308176,-0.3676712637693669,-0.3901686060590279,-0.4048329692396848,-0.3896641948480948,-0.3926355533067678,-0.3885677403889858,-0.4383174416970448,-0.2830247386133351,-0.2735089834764537,-0.19009683536735622,-0.34135003278930043,-1.002914245466176,-1.7094632050686656,-2.072549311060369,-2.481525318602918,-2.493906430558921,-2.3115792439858343,-2.1915554997673574,-1.9713867818680235,-1.769835505337955,-1.613140689658362,-1.5072397817787149,-1.2654562153530868,-1.0407550239398695,-0.700008688198352,-0.5022538965257368,-0.12276019726544263,0.0783818286164717,0.37980562148823793,0.5207299830153787,0.6646022140015191,0.7343356334931741,0.8116514827639847,0.8273650212633825,0.8783867422460574,0.9253490822595509,0.9952487315950478,1.0432286271200297,1.1009615769067977,1.1634877883320272,1.255337907862227,1.2870022839859274,1.3603584299656575,1.3827497706157672,1.4607582442359188,1.4993603072118447,1.46241903696923,1.4121841974756109,1.3280390721202977,1.2622876403553107,1.1632321196048139,1.1135366236806163,0.9330646163701886,0.8675158525126392,0.6883101431974197,0.5881918957822165,0.47384383168031263,0.4340073916574525,0.08497049302483362,0.526334217424612,0.2358177523498597,0.4246759348257001,0.16119801864411443,0
0.19817753379645353,0.026928271409033755,0.14426696699498365,0.21216854565314236,0.24888817610396785,0.3235582003602957,0.2732007964709453,0.17906320974179124,0.11549896521561465,0.03200791815889659,0.002697561399891411,0.012241021510746462,0.01437912276306008,0.04346001006371836,0.042442153411208494,-0.022664535426848435,-0.0550347861048337,-0.10440836227709838,-0.14648499035854456,-0.24052079142244764,-0.2719511809724793,-0.3376643678277418,-0.33584607834021085,-0.24788941107637186,-0.21609976028774724,-0.2592159271752479,-0.005115542401696873,-0.25368005177788433,-0.26357012520443135,-0.8030257190860581,-2.044333376058578,-2.5792250271895796,-2.870864785916978,-2.9357090303548388,-2.531880990931395,-2.3504467627721706,-2.054559071153534,-1.8372373404710132,-1.6983325812042445,-1.4169775788546346,-1.31363953163806,-1.0114628862126622,-0.80688619641057,-0.4764816456277785,-0.3269006842979607,-0.005048387953912938,0.19007081749894894,0.41098305258024936,0.5283663170373742,0.6063898477085985,0.6199996150321283,0.6499014127572664,0.6434163408602842,0.6552761777081528,0.6661241807239406,0.7698982801395786,0.8155334916715304,0.9325975466459155,1.0112077000269295,1.0702843410514191,1.1091742948438537,1.1211708497154618,1.1603989848749876,1.2068039128577723,1.2243360419857225,1.2406169301695371,1.2546004135006896,1.2320699456986688,1.2277910329248485,1.1133149838888272,0.9992644471161185,0.8724349910980678,0.7869446687999258,0.615485209979532,0.5547062187607708,0.3416257582243887,0.2821236049365865,-0.10816720450687001,0.16188190990383333,-0.1356893858804895,-0.03515104674035996,-0.2650996204523892,1
0.23786912498799495,-0.03236127631762287,0.03830628262257818,0.04902359043505555,0.03677769079768467,0.14385109124435758,0.1355739291287108,0.2172391581723616,0.22579758600204514,0.2301969551844465,0.2211723610535543,0.12119866132864843,0.08234002620244496,0.021453527639025083,-0.035734959180956594,0.00364946816870315,0.0042213349684416795,0.012902026052834968,0.025513510890249336,-0.049747954332211464,-0.07241905499125068,-0.11297522205538257,-0.17954997337302103,-0.245676626850738,-0.28720307028599024,-0.36085764701797984,-0.2283986607448938,-0.18163386924147318,-0.11552016482767868,-0.10725474721186856,-0.25118268928697773,-0.8081565598095679,-1.1617196079946197,-1.9740135597128994,-2.623411072841046,-2.587166755849956,-2.6016449385940996,-2.360925265754636,-2.0155263012316755,-1.9409157523270846,-1.7934710101181963,-1.6495951654397984,-1.4914973337412576,-1.2008878160908765,-1.0456866598776884,-0.696640124732383,-0.4934000493540083,-0.1261100899880816,0.04460675507340994,0.3196530035940981,0.48501977726846235,0.6452566136423812,0.7196477813128439,0.7707206962691657,0.7696525490660733,0.8137802486446333,0.8189231350090012,0.8569214102369145,0.9262937616438478,1.0071700012112927,1.0556293132424273,1.1349137213704736,1.1811987952267202,1.2771067900209943,1.3136373039103475,1.368186289677297,1.4086265174481696,1.4309389591506587,1.44759025079086,1.3621095650054045,1.2901645658522014,1.1491760612874913,1.0688969843655869,0.8781825686335125,0.767846004078379,0.5981238278107455,0.537263528516192,0.12718865738636254,0.45201231218908333,0.10785751179625436,0.22789744234463427,-0.025666911410731078,0
0.23936790385176465,-0.015724740587472755,0.04930816870032828,0.05437968464261189,0.03544755090592844,0.1483492346817954,0.16912314690568309,0.2449534675176679,0.2674357527562563,0.30431468680743023,0.29707616007477355,0.2522967913257901,0.2289219240996161,0.15642101862081148,0.10850797640259202,0.10575675203060086,0.08888201375248173,0.08567154932277532,0.07660991484624446,0.017627229820448065,-0.0020137898807348637,-0.03804320511039094,-0.09218565049837935,-0.19802738416731103,-0.24451964304631701,-0.3165438422881621,-0.23926232309379714,-0.15756908793515123,-0.1033772554196446,-0.12044201368230034,0.03626996703551555,-0.3044894683404351,-0.43260479652008854,-1.1121552589852648,-2.180251493959835,-2.5055606633743928,-2.7035953279838205,-2.648255847035558,-2.3064907135758386,-2.212690705931733,-2.0144078634780005,-1.8893656041370157,-1.7670070382939613,-1.4565143835611494,-1.335063607327264,-0.9311664936820243,-0.6732601381088443,-0.3104382080782102,-0.11808407948432631,0.184365700847529,0.3609120338023004,0.5347631546150708,0.6133868593420502,0.657588940752909,0.6722638438693167,0.7102000840468108,0.7181393659363877,0.7619894134931684,0.8198608881498046,0.8853494238030635,0.9207148230804165,0.9789320076296804,0.9814308758256942,1.0698082370965025,1.0980983280748262,1.1513957717566186,1.2319220854571356,1.276688806283218,1.3057702958659192,1.3107864018602555,1.3006268072195084,1.215501467839367,1.176716311122398,1.000284110614757,0.9027144196641075,0.7581182456623949,0.7071802418836839,0.2862106908797415,0.5961429221716301,0.22106093887561684,0.3010765174037502,0.009176008194401673,0
0.37172239419040665,-0.014177176878227728,-0.016501383281799068,-0.052383841692986266,-0.1290459138062232,-0.0322733431393587,-0.02558198964268144,0.04725619378015011,0.0676341055608276,0.1468510581000686,0.20718737201729454,0.2541894626456198,0.28148337912497823,0.26398407436836635,0.23811003780515705,0.2093086093724068,0.18709674877108284,0.13133205670052917,0.07852818315289767,0.053879489405979086,0.035534580661128246,0.008503259152476515,-0.047524931311848206,-0.14058895029952367,-0.18902356876689907,-0.2342805471759064,-0.2131145493420874,-0.2646445963689743,-0.27437115022087255,-0.38075042061309716,-0.272865143972588,-0.2080282774897526,-0.11922751194278192,-0.22945446116610668,-0.9149854337468213,-1.8544094555078168,-2.3046259730857486,-2.827015942924283,-2.847938618812768,-2.5166178088295794,-2.2928282465735546,-2.0107598411441234,-1.7928878505301533,-1.5782596757140155,-1.467822981769249,-1.1445444815476016,-0.8993050207597832,-0.5931289214284732,-0.4039614671236009,-0.11020562808108281,0.0465138811622694,0.3478928040218392,0.4728512708736048,0.6438936493792866,0.7374762332059035,0.802331168150026,0.8259918182055586,0.8601457271536077,0.8886466168469482,0.9358869100232425,0.9598730935229653,1.0093586941552104,1.0667850823821396,1.179464825225196,1.2351735050657595,1.2919024506870045,1.312855842959678,1.3235114168627575,1.3147421903180572,1.26274356786179,1.2213387853992046,1.0888523952931664,1.0344813838698954,0.8633317991605765,0.7924040543778403,0.6766201498856503,0.6392319863672,0.2500295005752733,0.584543572307318,0.22988316624009286,0.34151162577725813,0.05656988329163681,0
0.13653035301284433,-0.10712706341877265,-0.022392303943455264,0.04475009819962139,0.08037146734520917,0.2190222141603826,0.2356524259290822,0.23435209899844978,0.207584878165612,0.14383844332145657,0.08650510767015618,0.020683208906149275,-0.01153135186374499,-0.06308428560826229,-0.11398464675929176,-0.16707821796956068,-0.19740703366311863,-0.22378638486032543,-0.2633981736811819,-0.36033185479452357,-0.3970550989376065,-0.45390691009560413,-0.3963031498070393,-0.2969052317151508,-0.24861004154070798,-0.22655417198849648,-0.05776342490021591,-0.4298984421602938,-0.5739603919899494,-1.2741722905075008,-2.2456634645083895,-2.5246454756089527,-2.6963379046520677,-2.5619521051958447,-2.210115724342547,-2.1018337696915292,-1.8906751158688024,-1.7366877085425791,-1.6127091545746204,-1.2829359459433043,-1.1521496474738768,-0.784051576176882,-0.552139412434471,-0.21068373901692183,-0.045230236728379225,0.22468788133799222,0.3974672412554128,0.5789781850898521,0.6709650226437915,0.7742780751555856,0.8207715385986774,0.9429155414639467,0.9833931107214795,1.0800660037102432,1.1464323654410364,1.2080933987116325,1.250538924544358,1.2655541170150073,1.3070971232064394,1.4055593961446746,1.4369202221187507,1.4817796943794406,1.4913830815535647,1.4437278160497087,1.4223236156679206,1.259218712205687,1.127106339248293,0.9597152956277242,0.8685240726524626,0.7225354225675531,0.6053843378379682,0.45055539192729555,0.3711056573784717,0.2574980990483198,0.2220444654516811,0.12070147750223015,0.10108966848012813,-0.22054399948234504,0.16419437180756802,-0.11017491169689464,0.03795364648645716,-0.20062111178508246,0
-0.047962188074997414,-0.3445824805135729,-0.29547119817099343,-0.32931192045673185,-0.3739389118488603,-0.2375578649123753,-0.19163024544859297,-0.08135571594387869,-0.024616832668925785,0.0342432879611394,0.06036877727726164,0.01617151412274609,-0.0083284159595749,-0.09858369264016176,-0.18423964250010272,-0.20566943986871422,-0.23181390106918798,-0.25054758287273415,-0.2655465137282249,-0.3256015619314141,-0.3474017627564123,-0.34455718466777085,-0.3638205735280522,-0.3796136132571135,-0.39194684379070566,-0.41126323347076266,-0.25239086706504565,-0.13189591243325083,-0.029097208786097898,0.0203874884230828,-0.09881978720098061,-0.6766056642866722,-1.0550949076699112,-1.9483264564387568,-2.6092732923790267,-2.6506011709532586,-2.6661459199101323,-2.3626083429235347,-2.014650357285525,-1.8357656642991742,-1.6226365694878275,-1.4172103608642175,-1.2642620406325165,-0.91324378464925,-0.7551644731235285,-0.4064654547169795,-0.20001340920379107,0.08950386996178139,0.23160659630586622,0.4164237674148339,0.5332532335335074,0.629361185966026,0.6638324975506862,0.723339770235853,0.7682290554576667,0.8503450926104321,0.8969544953467832,0.9775678388025,1.0566327151259074,1.1663380881000762,1.2198129038435042,1.2977795188616739,1.3242404792756943,1.4417330579236065,1.4769060280882513,1.498071122499006,1.5137888769727041,1.459492247381732,1.4371006055906008,1.3249213591251987,1.22872216096318,1.0538938375357958,0.9724583790915133,0.7942786572363829,0.7262927590922175,0.6288224446786472,0.6056162164244867,0.2514779888884604,0.6348103327492112,0.3048748091073321,0.4432479039007262,0.1515928246238616,0
0.657022795632578,0.2718736679894036,0.26995449625968604,0.21883309759891034,0.12544234060295878,0.1836977700619471,0.1388123996734123,0.20756349715308886,0.20282564546257476,0.2600309961797578,0.33301643756207966,0.33386505296053315,0.3537716790426373,0.311683005320333,0.2583235265881214,0.20245253173699496,0.16492524106663353,0.11641985445921677,0.07344552499282031,0.06051091583938728,0.05135893905642064,0.047602204813799176,0.041137610506275735,0.02111775540010541,0.007344769642948277,0.020253781809557836,0.003428430658956925,-0.08091936260379384,-0.11477724992775507,-0.3152639929469885,-0.18251832042147953,-0.08912304631020618,0.03185222825080558,0.08609856729119514,-0.6088195732102406,-1.6798197863399338,-2.205955235275413,-2.9277588885671757,-3.029724127973517,-2.7083017480802205,-2.4601973821848127,-2.0934670181220003,-1.8598902220982545,-1.6077210546952792,-1.4721982596699341,-1.209442329087281,-0.9813260479202803,-0.673866033844007,-0.514120057335056,-0.17025856829712183,0.012738506478186194,0.3118272518696088,0.45837783110054886,0.60222326053578,0.7006698741408997,0.7323733985973888,0.7384100715134281,0.7553513619572882,0.7578707077427609,0.8241885857691003,0.8575408573180425,0.9049371415434493,0.9607093621395393,1.0247762110305203,1.052913924651989,1.0990520416897667,1.127604727638797,1.1642276918217362,1.1828824746776618,1.1556000015571186,1.127290035271379,1.0016910414669837,0.9348368312814372,0.7469082711388211,0.656854457801586,0.4978926525124976,0.4500305031269036,0.03342629236993844,0.303585323253472,-0.031537655623949945,0.045277697269206385,-0.19093641653516613,1
0.17536760712652466,-0.08682654488060848,-0.012770848308043982,0.017845557061001216,0.023540133776670302,0.14785114743231276,0.15426906488151104,0.2050257817653076,0.20056558209657283,0.18953930359608506,0.1628380326469454,0.10405018586202885,0.07727844791386929,0.028295150505407207,-0.0011895669050190367,-0.030514378433053938,-0.04789955074253527,-0.07693315890282548,-0.1280295628588206,-0.19409719269633285,-0.22942856303826176,-0.23699382777919453,-0.23124655138477124,-0.24746781364633819,-0.2487027929753154,-0.31538926761191277,-0.14169263214314753,-0.03624177952006136,0.09066416631743834,0.16489211555427374,-0.306994359356878,-1.0903052193212162,-1.538308952673514,-2.3944206545740236,-2.7887433282258263,-2.70510856161662,-2.6499610204269057,-2.3655327986681165,-2.029145930923658,-1.865997211442803,-1.6922710641539354,-1.480380712934334,-1.3055272442316586,-0.9513235185234663,-0.7657402446559232,-0.36293100295068115,-0.13985687647637235,0.18382515271402156,0.337190252119413,0.5075999333390229,0.5727349294330963,0.646602412867253,0.661306827803763,0.6721807289473958,0.692550509920494,0.7310559066285336,0.7498940843665238,0.8003129210242506,0.8366413692882091,0.891282504207723,0.9182800979219721,0.9743935112953679,1.0213206178093515,1.1008968315871854,1.1391658325933847,1.1869644412234521,1.224704939737002,1.260537408738628,1.2744251292249587,1.2504768894939389,1.219108836135348,1.116608864381476,1.064735516590133,0.8996352527197544,0.8337967911995676,0.6750162728053937,0.6296051101934026,0.2125229886353921,0.5427078570430339,0.20687629334213398,0.33274691634787956,0.06832793447425445,0
0.29932176867174576,0.15663392532297848,0.2836979701967408,0.3605479543073642,0.421301348539302,0.5319095422957858,0.5020493020316081,0.4248412612464776,0.3568728292815564,0.2720654948200689,0.2196666559462912,0.2182085311204176,0.2093372177694448,0.21612915236728725,0.21261152409569917,0.12137964708254145,0.08674963417957571,0.02411049487130157,-0.040277069207526495,-0.18006221425051194,-0.23775782255061984,-0.324886954287507,-0.3074945545935108,-0.17391833513083554,-0.12059559560324118,-0.13882065022155388,0.12858504830283835,-0.19949996376221435,-0.26942671578964195,-0.9651218001264255,-2.3056376563473187,-2.8303874048725834,-3.0842707422549225,-3.037040386732336,-2.566893603502116,-2.2949348785891264,-1.880541569926411,-1.617235454697564,-1.5161531043021803,-1.2160025356691158,-1.1499761621515425,-0.8579627250591493,-0.6552927096343844,-0.35547083642623534,-0.21658971672965066,0.05999325442351022,0.22714519207304562,0.4151562648555398,0.5104363806200851,0.588013921438538,0.6066277491155461,0.6997465757691259,0.7233846402480495,0.7933014546217692,0.8350907941687495,0.8972601534835576,0.9301170480522103,0.9850144539809804,1.0739013458600866,1.1607736043056747,1.2155098997879676,1.2395725731071394,1.2353005865768125,1.2429302954963362,1.231306252068265,1.1096127561710887,0.9840757974171126,0.8187403424089794,0.7207577871179183,0.5625973180869153,0.46161268795299293,0.29967831964114566,0.21787577029171246,0.09331541187030723,0.08056630558608902,-0.045147422947479754,-0.043183682346587204,-0.3436429205266407,-0.08017283401161279,-0.3428069530510882,-0.28128926290670364,-0.5202856186082769,1
0.3289317607470963,0.13738890606500576,0.24066762850035417,0.30501574310537194,0.3313128828037222,0.42740758503129683,0.41104990588701185,0.35541892042998313,0.3094139077236875,0.21427864079046088,0.14554410606696422,0.0933461282544954,0.0579346544008601,0.03406019422009621,-0.004821929905780566,-0.07232600241562182,-0.10553282285120247,-0.13600799308118638,-0.17543277332772078,-0.2659991286834682,-0.30146691590811514,-0.3537160876942309,-0.26267633865275997,-0.14909889442475333,-0.08177339854063348,-0.06873369117071348,0.0811327518474414,-0.27319639909618587,-0.4140051224710888,-1.1360074347304412,-2.2251474042841206,-2.556398613048726,-2.7418996001321574,-2.6610599115561913,-2.3057568329065585,-2.154812907313646,-1.9380447491138106,-1.7847124740797575,-1.6416590455309468,-1.4112971557669738,-1.3245092168073924,-1.0290957470122883,-0.8094761597655733,-0.4601838935467626,-0.2786943307248464,0.04985383623120043,0.2328963833007478,0.4437749006882683,0.5495943499216125,0.6213424028467855,0.6257056351066126,0.6984667264279523,0.7075744354807654,0.7651857242948665,0.8324290086801298,0.8818863020563583,0.9241719220066926,0.9946955355386393,1.0583781284862468,1.1600038878548418,1.2067822307042277,1.2732871173048892,1.3174410161523156,1.4034854379299304,1.4368443345813446,1.4014554463043183,1.3853958967712714,1.2789563981747563,1.2292353052637353,1.0363008779215122,0.8598042332352804,0.6676720455742071,0.554746270516624,0.3698616438188509,0.2942466390372047,0.12976341311978246,0.08046000280551624,-0.2790376314893024,0.02556922197921807,-0.2743913266693099,-0.17813190030300063,-0.3934703162182345,0
0.5402671090641604,0.36555442378901404,0.45265615169294904,0.5400349293366205,0.5664422866488223,0.6944666702399971,0.7363674319649149,0.746413195299553,0.7326883921058283,0.6822566063841791,0.6103992392682187,0.5453548866216025,0.5005390798090232,0.4299507209574642,0.39304347965027375,0.31240724947692655,0.2763516349784041,0.24948804901870147,0.22052490785743117,0.15189486906837857,0.12554743881944574,0.09326391675563883,0.05071600297561929,-0.011811111872674475,-0.04221581510363848,-0.0941156633048692,0.049056113665372436,0.24149968114262776,0.38913647603794743,0.4439745571854914,0.27784439102174474,-0.5315796114768361,-1.0170330916864714,-2.0857952247447287,-2.986540637246408,-3.007910055840218,-2.969810785442235,-2.669446651361019,-2.2520630876405345,-2.127755537106639,-1.884701833137779,-1.730158067774422,-1.623739347908387,-1.306641616581544,-1.184304281180502,-0.7974491896507985,-0.5707679960215302,-0.17561707163284979,0.02038959641023297,0.31343323693701564,0.4348508876585413,0.5623028021679346,0.6032182304706595,0.5881024568988451,0.5980545653758114,0.5996753063532694,0.602738211682464,0.6266165866965068,0.6264813743778745,0.6837433396070907,0.7023972190399519,0.752298695422823,0.8166660830532138,0.833715181982754,0.85716924929757,0.8693461876410282,0.8675748761528439,0.8965533755062083,0.9048410775576059,0.8588432922358251,0.8368545771313975,0.7066643873139355,0.6357718760307094,0.4753091838907011,0.43247066902497977,0.22430934707402628,0.18913457006325274,-0.2107316204393328,-0.05142109384740223,-0.3020481180795187,-0.28675858613832617,-0.5011279302465255,1
0.10470245731449523,-0.10174988933971463,-0.010371958931152394,0.031465563179260414,0.050080294279332804,0.1622616487318851,0.18404588908274633,0.18137446708144012,0.1617936755845477,0.13309523738113427,0.09712845948394033,0.10341899428106416,0.10004892510998786,0.07607267926397299,0.05051122708103151,-0.021737924503838716,-0.055033280399726436,-0.09733666767032645,-0.12833883468785245,-0.21733714874489607,-0.25169221989527557,-0.2964616509905511,-0.31044302633455345,-0.27421034091541685,-0.2690785967688427,-0.35757731787129643,-0.12718064631934567,-0.17062836947146565,-0.05764989473512827,-0.27066410424679077,-1.3159693091505282,-2.2405427120090984,-2.7037151068251033,-3.086229758706041,-2.8781023339413148,-2.532919852170151,-2.186464786084956,-1.8747771284937649,-1.6878772660804309,-1.3817915090555566,-1.2708196875156688,-0.9349131397004271,-0.696636812181147,-0.4190170124911248,-0.27065416659308283,0.014022872934681628,0.19383929624140706,0.43575822555617805,0.5535389961616204,0.6766349057957015,0.707859616028081,0.7965625107430796,0.8158063254369665,0.8556207821652606,0.9037349865858104,0.9614257766295751,0.9956959260119049,1.0644903877986707,1.0998470539864016,1.174981136556788,1.2098770569816963,1.2229522989921477,1.2599221776318004,1.2794349112578445,1.287221514649545,1.219152200442437,1.1494151672585247,1.0138523204773264,0.9452460718289686,0.7943626755813682,0.6595213626875704,0.5262712789511284,0.44333222338673295,0.33855472208761483,0.32123790879000325,0.18743402671510978,0.16402302256636148,-0.1987254290550382,0.15780988101175097,-0.11152372233198093,0.03730257959807659,-0.18153419156337236,1
0.25665159163701645,-0.01723526395107911,0.04716253892247835,0.025686666977584593,-0.009764858631903907,0.10752324526244195,0.1445419087475699,0.23990574171607904,0.27321585352201794,0.3162799230128073,0.30112379654411825,0.25414910974874516,0.2262059332271349,0.14693929241935422,0.08157151431569787,0.08593384315246055,0.070062807898843,0.07168083860710794,0.06819272215562222,0.00919528121977464,-0.011135652561556244,-0.05296865755664726,-0.1137250631987996,-0.22390744355094938,-0.2841407672388385,-0.37597071032060114,-0.259752259334455,-0.21558089430778438,-0.14616487745274043,-0.12472303444327082,-0.24391194046502562,-0.7828754699175988,-1.132230222898361,-1.9604622890327867,-2.6209638126875836,-2.6051683638303507,-2.624806710904968,-2.3572496137320407,-2.0037468690365348,-1.9006257186406614,-1.743416102384895,-1.60392953866468,-1.4296214363518551,-1.0710297848200767,-0.884741539821313,-0.4508689994711901,-0.21654665356358294,0.15127060373090728,0.33071692472226744,0.538051313428312,0.6133437961759824,0.70001278443209,0.711403142427514,0.7508839349040386,0.8411789621994572,0.8841578087811754,0.9377283873694253,0.9979713475700009,1.0369124953360824,1.171627931282913,1.2111054112082016,1.3200537156544385,1.379127646409735,1.4598545200305395,1.5021889248263491,1.4555183904626432,1.4569337532634705,1.3826091377587488,1.3463574804552607,1.1849552283283202,1.0067399718326584,0.805229951622529,0.6820449042460979,0.46689259348212175,0.3558914106926423,0.18082970297363232,0.13007870776924335,-0.23053435286903579,0.12995975706576957,-0.13663105385457186,0.006756942369072759,-0.20484039863665515,0
0.09176875158412656,-0.13642145970364083,-0.050274047696689195,0.004903118241010416,0.031459841499852814,0.1762406149477158,0.20617523704419227,0.2421974248893335,0.23138555879612,0.19947153676563545,0.16605211076890924,0.12074935892464111,0.09947615488718498,0.053862023226734834,0.02441735757216179,-0.017209666964255636,-0.03979855612443828,-0.04250250135606137,-0.05858553988878157,-0.09419305654738253,-0.10788383080568309,-0.1407419299384216,-0.20131855439076674,-0.285189641416558,-0.3301036202021308,-0.46446642001284033,-0.265078841721909,-0.1567048132035822,-0.012563362144263126,0.1033322656668858,-0.49132488657517825,-1.516003136073497,-2.033957336308662,-2.8485750803616083,-3.0596627590098415,-2.72166473033667,-2.49303861742035,-2.0862533355236135,-1.7829124036240245,-1.5485567816335468,-1.3856714099759522,-1.1175309273592156,-0.9309391322108276,-0.5735923976617343,-0.4152413063641518,-0.07389073116308964,0.13491683941990118,0.37887931170624967,0.507783629362109,0.6176835394361362,0.6638954360241698,0.7098209475008019,0.711752466012399,0.7235665294250069,0.7326179251068083,0.800548714444048,0.8356975933269766,0.9137440107158312,0.9767354850192049,1.056594470216183,1.0948222149024431,1.1459086812047303,1.1806799292467574,1.227853971398332,1.2491934264605078,1.2048976901919772,1.1654858590093653,1.047514767278365,0.9852990322462531,0.8428879374962008,0.7333216916739431,0.604571859362089,0.5320552945501689,0.42241075206233347,0.38558391540787085,0.25504289630041654,0.22772609310342773,-0.14392017227883258,0.20938208778164125,-0.07490617868742788,0.06857968836818884,-0.15216451002314102,1
0.24804708923105068,0.0018037748482200282,0.06166609279767954,0.05618382050213455,0.027152320328994506,0.15220655002558203,0.20069868642805488,0.2932489588331322,0.33389817847289294,0.4027838859891588,0.4136472471970407,0.384680492343513,0.3675389431203868,0.27277919904091164,0.20946008330619748,0.15035031676934807,0.11203945716116692,0.07233672375183176,0.022930624349250195,-0.01575184327940349,-0.0383085103502907,-0.05751528469853895,-0.10002706155598418,-0.19862153540263705,-0.2474696204924669,-0.3062674049310914,-0.20224516531377645,-0.11315650895029705,-0.04027646692548359,-0.05444424856176511,-0.021260314843814857,-0.5590668604919671,-0.8631830046660305,-1.73039401176473,-2.6633748955159806,-2.8175854483391003,-2.894349230832333,-2.65046979818265,-2.2491137124764276,-2.1192730720996167,-1.8874902484259195,-1.7298269632213348,-1.5957975265213733,-1.208272245648427,-1.0425700008761645,-0.6117072144649498,-0.3809274915337113,0.007492629884481515,0.1879869216304968,0.43841007339108984,0.5912677501753336,0.68228581706326,0.7247822357286111,0.7516521456497642,0.7580959612268074,0.8433631380280531,0.8698900483257717,0.9379915846221749,1.003818301642525,1.0666324038842632,1.1039672654419164,1.1568382934373318,1.1877118732386975,1.2602019376407299,1.2863129721878224,1.2796393860114108,1.2751084182026347,1.2273468499182059,1.2032019651001775,1.0774397528621549,0.959910133868604,0.7888770907345872,0.6958055432213754,0.5278007741990862,0.4620228420242114,0.30679277627296386,0.26568130516527333,-0.09295175325695482,0.24722738337065664,-0.028778902726422476,0.11186359080463859,-0.12504826674643965,0
1 0.2042720257886117 -0.032707889633314835 0.03759197611969256 0.03394244808070823 0.006008606930762992 0.0956712380811311 0.1145813885232485 0.17108086468614658 0.18696755927287967 0.2238007198887928 0.22889030429236357 0.1962785385151733 0.18061860311759403 0.11757984967385227 0.0690350135926252 0.05208258093097129 0.03386324799206619 0.01914618513265509 0.002659316490166928 -0.040605614061931306 -0.05913090627863227 -0.08218867200921665 -0.12359435789486639 -0.1989600179107498 -0.22794935834088648 -0.2896733300849661 -0.23082706194188773 -0.17936627734993493 -0.14707944273489204 -0.18527376076777102 -0.027949259212320502 -0.3224666838980923 -0.41004541918000825 -1.0251855814192368 -2.106219361672199 -2.509313031072203 -2.7365777230731636 -2.739580964837483 -2.3958769725537685 -2.2618789298052935 -2.042217408671341 -1.8630229921444261 -1.7305748469481124 -1.452145881333447 -1.3450011104646897 -1.0217829890178436 -0.777094917440305 -0.4280431123271242 -0.24041509092391777 0.09027659782282882 0.27566021519314887 0.491861098993823 0.5977368615981788 0.6829913904765235 0.7056263542129884 0.7723390281184521 0.7829120893816537 0.820935660455369 0.8596346908402026 0.9150630083897937 0.9455716052731589 1.013924594322475 1.0701976124372408 1.1428936572979467 1.180707634220731 1.2220293017613955 1.254098411417928 1.3125203718617797 1.3337369613872028 1.3282194555921478 1.3056877832260412 1.199112470028851 1.1458044864113077 0.9755417620101667 0.9085978118002274 0.7662722411002676 0.7250297736482452 0.30172517516395914 0.6117495556084123 0.2477570904273918 0.34285893070723716 0.0552249874898294 0
2 0.1634933155096263 -0.10463993972259544 -0.04442588906007927 -0.06840936229060901 -0.11331942624290292 0.008478866729738853 0.0527098576786571 0.1421189280889621 0.18514655951615566 0.2505028942609968 0.27616763781429654 0.2744797423890546 0.26962956509753866 0.20631225620895322 0.14658183802688995 0.10779126077153478 0.07934517874409863 0.03515273384592632 0.0004621915976485963 -0.04793960249838847 -0.0708952814227004 -0.09743002138697676 -0.1481367488612122 -0.22467625657871793 -0.25616958460223316 -0.3079366296130033 -0.261430217105989 -0.254346476858359 -0.24260920440622158 -0.298871381444215 -0.11802897067740048 -0.30866960685921896 -0.32009549949517435 -0.8055632839033287 -1.8778701479251048 -2.4843641750121517 -2.7951691882694654 -2.879082416216946 -2.5311843764635196 -2.307221131123372 -2.015268675087823 -1.7696409682380967 -1.6472994168627544 -1.3044774666308747 -1.186301900146308 -0.8148390296461123 -0.55831701934855 -0.2142414190443631 -0.03572773179644173 0.23840244573698754 0.40966164577811526 0.5769912566303077 0.6549482351357909 0.7300618401167185 0.7688171838725637 0.8458222556092352 0.8720760310004962 0.9286414570470924 0.9769914548874397 1.0441016349412209 1.0761764662771611 1.1302556720506445 1.1629954227619521 1.2355020499201643 1.2633551852763603 1.2811532219262531 1.3027155213443038 1.304650352407137 1.3052044518866097 1.23203079736588 1.1522708875649599 1.0189933999955656 0.9449006630773624 0.7635848586248244 0.6744543436593631 0.5267606331109889 0.4761029916232502 0.09048679425580275 0.426395751199216 0.08892296893139928 0.20744936470595832 -0.057668565478458333 0
3 0.1779510959495667 -0.0864043451685319 -0.007515636342674272 0.015253937430379947 0.01667712989776504 0.13104928528138515 0.13679716395785135 0.174758398840126 0.1674030293911457 0.14922916874647996 0.11111405080224301 0.052178644916814676 0.02230184189645712 -0.031411477535961296 -0.06735476643348193 -0.09662567371867681 -0.11539308331662568 -0.1421067010476449 -0.1867249593501512 -0.24427361083179022 -0.2773735262047552 -0.27044186217295874 -0.25367673922664835 -0.26854437259678576 -0.2636523367032879 -0.34774175096963233 -0.18723147854823452 -0.11054832656349589 -0.0007336393985397666 0.03690898828303801 -0.47670177971446037 -1.2327053224239855 -1.6579662835541384 -2.433998866170988 -2.7380128858961514 -2.622564038432955 -2.5600957213691 -2.2887210594672176 -1.9852094558937203 -1.8141535260420731 -1.6472610213825192 -1.409946989997291 -1.2261503858100262 -0.8660345089981654 -0.6784054336013838 -0.30773034801330823 -0.09812354915938215 0.16476894887649962 0.29223411359083684 0.42941348537519275 0.48886715495854105 0.5842144251708703 0.6112343033207068 0.6571384337848158 0.6924481219732002 0.741111908757901 0.7664788238409841 0.8180959006230708 0.8703803059086965 0.9381888319912264 0.9734979178975678 1.0501639048440836 1.1070590803091704 1.199082657067727 1.2441827410045576 1.290138366583335 1.3304861440606217 1.3778523141838832 1.3960544820845655 1.3613585192979016 1.3062948835252897 1.1758433033012068 1.1083660323422748 0.9169743504529535 0.8339494696974441 0.6795830763957227 0.6327369768165099 0.2284051661068034 0.5816375614503002 0.24590718113260834 0.37819090333120897 0.10621538980627321 0
4 0.16963358093704528 -0.00878434346605417 0.09666379888783894 0.1597413995233481 0.19240737068439984 0.28240306380449454 0.2637747813584568 0.2113229416649034 0.16839498791581065 0.10582721902962078 0.06696406678809552 0.049290401380062576 0.03353771454787591 0.02082745545542508 0.00598993618743293 -0.06856113736542113 -0.09979126813618677 -0.13335253155401716 -0.17572999951589452 -0.27755180168945515 -0.31630533859917165 -0.3981614910504234 -0.3587553815472191 -0.2618123650622124 -0.2170775651844039 -0.23129593851228947 -0.04275124383978124 -0.46985835000194953 -0.6774919223128073 -1.4837510832464318 -2.6172160373903504 -2.887385946993284 -3.0220741673203007 -2.7760994707286057 -2.304468928043061 -2.0934628774329553 -1.716411883568174 -1.476354156336491 -1.379735318161078 -1.0166083322757125 -0.9180447253837585 -0.5987590539655514 -0.3954138803706897 -0.12807593857612432 0.00018996011425542576 0.2367037092349733 0.3863876607941279 0.5352982822101922 0.613763285618866 0.6586561845329371 0.6662151253124193 0.723339770235853 0.7313224164325192 0.7901096609353928 0.855475331051899 0.9727152523828124 1.037664745607671 1.1476610208085631 1.21974364140857 1.301312505325356 1.34053401538241 1.3289123810825103 1.3162307303870975 1.3111589133037924 1.298305913367173 1.1982232005925013 1.1123510314791574 0.9564602623268428 0.8781792560822765 0.7432512145743004 0.618336112029624 0.47348276359559094 0.3882562408322414 0.2724762511733303 0.26512449541660743 0.14430189935347215 0.13288504094816034 -0.21037446718789 0.13177021688674273 -0.1303649114801857 0.00972468713548835 -0.21499306703390886 1
5 0.22343935066304965 0.03771333595133797 0.13907077866981865 0.20753037164072907 0.24201824598156918 0.3531868631789763 0.3646711771730935 0.3191591323189158 0.2786011584086552 0.21388685632155102 0.16552963109668895 0.15103330460600262 0.14032081504986849 0.11804782282118964 0.09753771013209445 0.02128217839781854 -0.013728777897284774 -0.05221098674667246 -0.10699335680524769 -0.21682189645719063 -0.2609008111902753 -0.3384307717273387 -0.3241566873104844 -0.24146516966572307 -0.20385777548365525 -0.2528233055718516 -0.007113914220056474 -0.3365022646259561 -0.42878151011172605 -1.0956838991053814 -2.353841751362772 -2.783166761147939 -2.9982475885619477 -2.9046877408824505 -2.444611151052234 -2.233381578518955 -1.871599940146929 -1.6340406293997276 -1.5222475962943385 -1.1924302705033796 -1.1007399062850602 -0.7775028129538626 -0.5573587886182878 -0.2449659340401098 -0.0943559738399884 0.19138198550635366 0.3574627645425821 0.5410241775920923 0.6362570142162696 0.6951620048585312 0.7150475510691336 0.771526549642573 0.7797202956952773 0.8281004076377698 0.8782951953755358 0.9795887961974685 1.0322288490294298 1.1288237464936373 1.1846893208063776 1.263093493728718 1.2985685083378797 1.2874082220828456 1.283910167977652 1.2724854799057823 1.2576320001636532 1.146734108744532 1.0449562731601034 0.8604357259572666 0.7717021148580798 0.6240854964111975 0.4998554896903258 0.3463630076328599 0.2628370282176533 0.13113300248534898 0.12083277498758349 0.00716017019679782 -0.0007101503988664621 -0.3038188272856601 0.01238556920104372 -0.24057921278060945 -0.12730802897142013 -0.361733967390407 1
6 0.5574234141973378 0.16228182518032241 0.15580127039866198 0.0827643339016717 -0.022920806436104616 0.017750998780265093 -0.013300856505800597 0.05745915272798641 0.0582734380499943 0.10699323706468533 0.16812606898365345 0.18207281311018875 0.1998118261198769 0.17116819558236784 0.12197590630501765 0.08439561481488056 0.05586521330143768 0.02021192320757592 -0.0019433228817149501 -0.015089634173229173 -0.021253990882364352 -0.025940046317188607 -0.04295601973436902 -0.06466015657352386 -0.07914534084641645 -0.07764957339286127 -0.07680938994300845 -0.14686533146863923 -0.17037842242365997 -0.3299217310251734 -0.2057191281372539 -0.12598842901541474 -0.023920594627327322 0.02653618579910244 -0.5857654211719137 -1.5822497942482627 -2.072106257332557 -2.7966445157761894 -2.94682902017694 -2.6258940182055506 -2.4078855730662347 -2.037748400627729 -1.7825466678534703 -1.5355023183535756 -1.3874794606687537 -1.1050596236672874 -0.8721833569446957 -0.5778520374101817 -0.4140521004704354 -0.10265602267326557 0.08262821815997512 0.3833702277591726 0.5224907545678121 0.6915040448709462 0.7628609156092523 0.8192739642989935 0.8309097522269013 0.8394826348256146 0.8524386249915707 0.9091055355623965 0.9355996214887767 0.9900642877697194 1.0452339251818827 1.1122158191605251 1.1436218162878191 1.1826927558341467 1.2130080201817393 1.2372480655625466 1.2520708289204876 1.199375366140579 1.149648250409129 1.0225486708948353 0.9529582933883702 0.7702683824549439 0.6779575171619214 0.5041711416687633 0.45020396035526034 0.03351181642003098 0.3249979555838607 -0.0068558363646715765 0.08455281042807883 -0.15734262988701886 1
7 0.2669750069934338 0.11476026628999136 0.22831602836445342 0.31700778086165826 0.370302815415279 0.4752926211345212 0.462225509931649 0.38390324736714376 0.32273337510253697 0.2533447620804452 0.203472496376655 0.19698200394128662 0.18908759206390613 0.1787367728745366 0.17381793543012947 0.08602689572808941 0.050342286967996586 -0.006554996484240407 -0.0839229431517623 -0.23952521920552527 -0.309676923575978 -0.4081744300137231 -0.34696811968552055 -0.19486841485227302 -0.11222959688626588 -0.09300324837162322 0.09548693977600209 -0.4289609901605118 -0.71865774937487 -1.6540701210185844 -2.850268810394141 -3.0027505878983565 -3.0733935850239953 -2.7763739984122875 -2.2747903511000747 -2.059828436746912 -1.7005167570328403 -1.4797867122695187 -1.3624001352611579 -1.0199797565813853 -0.9061906102152975 -0.596765500403535 -0.40728817198758804 -0.1409605583199962 -0.02310028648489038 0.2234059240096684 0.3714519695531422 0.5282338149879351 0.6112592980254874 0.6559293525836836 0.6673064603741636 0.7210682635110359 0.731819299117916 0.7833857842083987 0.8225365261254112 0.9455219170046192 0.9951975376214008 1.1010305382007104 1.1780657240395271 1.247129707040493 1.2934192980120613 1.2558176255094011 1.2274880850572671 1.1812801033025124 1.1492621876196267 1.015768179655808 0.88922330190303 0.7058711818634293 0.6036145320548911 0.4433520986941488 0.30613628884619715 0.15660862947717646 0.07528971260819617 -0.015189311851329991 0.022447293009818736 -0.07258016543772783 -0.05729605403492144 -0.34550306861615354 -0.06640587107488471 -0.3190616823685275 -0.2398899009825044 -0.4706142139657956 1
8 0.28766640657744347 0.11407065335086486 0.20127296235596503 0.214970662857759 0.20148948275038947 0.28756853574547137 0.32536745561718305 0.40006127001420566 0.4280848511885438 0.4621487189711786 0.45190540712646765 0.38567034288102775 0.3487013676644395 0.2501629060477768 0.18331411640061646 0.14292688944951948 0.11367465290765466 0.10492349482424146 0.08622564880224814 0.026893941332588156 0.0026620267593600016 -0.03483183725762018 -0.06146926631021188 -0.15078678984999527 -0.17845532576004075 -0.21961226916197063 -0.18328773573129098 -0.04125126041192573 0.01859118223011791 -0.0356268495542551 0.17575728360828435 -0.19735433398436442 -0.3227572849837941 -1.0680493921307601 -2.344456841999712 -2.8423780874942732 -3.0781904415334003 -2.9689039933626997 -2.5107242531839855 -2.3144270593404563 -1.931367850386163 -1.7209410445308215 -1.6463006826651068 -1.2641311948586953 -1.168620555642228 -0.7670657168618469 -0.5288967461167147 -0.20856250166180956 -0.04757371615732353 0.19752917717726604 0.37175672426685225 0.4713148493821535 0.5336760355276269 0.5559981137428025 0.5439825869868429 0.6326351911512589 0.656752672136335 0.7322791414576741 0.7640233199520594 0.8375185930837006 0.8677483333812006 0.9186203872762135 0.9915651746206393 1.0443919348859012 1.078850297406639 1.1036158338698812 1.1232881722372952 1.1434263757648964 1.155310906176524 1.0915602553580683 1.0180161973809518 0.8797933719572626 0.7969015955332353 0.6224674657029325 0.5663916949572183 0.39120772398349857 0.3463858943504903 -0.06394886148085277 0.18588826985199347 -0.13836080788179572 -0.06719486055109058 -0.3031686638203439 1
9 0.30614712992296944 0.0692060616928103 0.13158501515854937 0.0984793781061768 0.040500396104881986 0.07715678694120243 0.08470277865676223 0.1258928475710519 0.14317352394608918 0.21092935034986482 0.2206887285731014 0.20069567501784036 0.18799053532275423 0.12629155828345517 0.09187776463389241 0.12053765678655992 0.12205209498344516 0.12203643565032962 0.11023773042981588 0.02262556849451869 -0.007767089095587211 -0.09333661148237127 -0.19289774800788706 -0.2754353825906861 -0.3223998305913298 -0.37868399092388927 -0.3307709487056698 -0.35600415717522793 -0.35406932611239483 -0.4120898655746501 -0.2629323085209947 -0.4741541266729712 -0.5149641556181876 -1.006655772087214 -1.960730605682901 -2.3571771893163813 -2.596606999875708 -2.622035648868189 -2.3241330603176404 -2.183472648895803 -1.9930959628192877 -1.8194644490964116 -1.675091119450574 -1.4364413770646927 -1.3340300913416385 -1.0298970832703738 -0.793519148750331 -0.4408554582258475 -0.24754490574783006 0.07746184279593393 0.24736410139439613 0.45805561020759455 0.5485981754226472 0.6332516268221724 0.6810405989395534 0.7391939415922693 0.7561584198947813 0.8052055591997913 0.8680344173515806 0.9406976378409482 0.9830142753164921 1.0670305123146235 1.109562465620506 1.2206037001658387 1.2688272187771759 1.3134578238615617 1.3454835692110052 1.3973105412850444 1.4084355940405686 1.3976020457938105 1.3702629581612342 1.2215227825633121 1.1618640359443546 0.962293966194423 0.8818700404411999 0.7714822819124194 0.741204359051487 0.3561296132406113 0.7161352724386205 0.3476639368455352 0.4555546340244305 0.1414991798668126 0
10 0.5235914250012215 0.334854301216005 0.4166017417585124 0.4538375279201077 0.4452303152449488 0.539211609783969 0.5857129028936185 0.6607205062349948 0.680731628251543 0.6771363055964201 0.609278392386372 0.49052041916631595 0.4268312011162365 0.31092382880525093 0.2567865028146272 0.1864715800105472 0.15040783470444552 0.14380501666807533 0.12190272903680466 0.10670835765839115 0.09721548923914014 0.08403755814037339 0.032103078721675615 -0.05206402992820358 -0.09390968284619561 -0.15833759982189832 -0.025463641221250558 0.11665745472514288 0.22957299098799666 0.2389932844210776 0.19615747982454934 -0.4627441945111528 -0.8486871298868763 -1.8115086044506548 -2.8078578781362546 -2.935080323187301 -2.971754274309435 -2.716266024674578 -2.2855307714859485 -2.1628240113368395 -1.8949502643798546 -1.7047303222050054 -1.6010977590694502 -1.270768945253554 -1.1473792725530458 -0.8177896093743051 -0.6052588817725848 -0.24469912309510278 -0.07841838642062982 0.23389165437664872 0.4156935004378113 0.5889784761302508 0.6831323244745633 0.7134036222330238 0.6896788291399218 0.7311227599352961 0.7258865198542779 0.7549249462709113 0.7900307619877722 0.8452308146431022 0.8772923957740986 0.9381903376963336 0.9833283654018672 1.0554679016549287 1.0853121814449693 1.0816135674194882 1.115140500760873 1.100969707714377 1.1026666373702625 1.0061313658283026 0.9025406612947293 0.6792147809264861 0.5640226185414505 0.33458959825814816 0.23724124595826623 0.08231322465153568 0.045338527755539815 -0.31027077367028255 -0.11532653115088465 -0.3881970357915776 -0.393177908286404 -0.6241765607402385 1
11 0.16727926043132868 -0.0727894584476374 -0.006936241017399427 -0.023445695236496537 -0.06426445727133512 0.00788019837909104 0.021477920061762745 0.10588955522106147 0.1338444762425084 0.2063104493628245 0.24771372612030262 0.2128680962459768 0.20556572761677216 0.13926862832091302 0.07433931154449169 0.08653431834923708 0.07204792951225869 0.06879590762159182 0.06972432539073026 0.025931494628025575 0.01302278360243747 -0.024675555168109046 -0.09256900301868853 -0.17413937264058177 -0.21371803594907846 -0.2643040058737114 -0.2105066680963077 -0.21379813946078485 -0.2027227749738003 -0.2624363292586622 -0.08800731882572421 -0.13874687067129798 -0.060937752407348 -0.3295314522613708 -1.3088364829164014 -2.0663481398613612 -2.4540320467673578 -2.8116327937680463 -2.6617957496421107 -2.4224740487094856 -2.2035547649081586 -1.963241745375539 -1.7803337330573257 -1.596427664108763 -1.5059009087973365 -1.2554958254980306 -1.0236232617999406 -0.7202693055511737 -0.5363400487439591 -0.17241955626706584 0.031057818236213564 0.35501328347408645 0.5080236387562067 0.6578208193394275 0.6872359731738982 0.7457829071416526 0.7405189620866608 0.7562430405218095 0.8020751982817913 0.8403481141212694 0.8706522362510682 0.9200414717564485 0.9519061066594148 1.025732032632611 1.0571377286188834 1.1275237207040263 1.1881804486680778 1.232827917649665 1.2639147052942192 1.2919991169548908 1.2994388058898778 1.31374149870377 1.3100552314601686 1.2082846232602549 1.1853711040789463 1.0288593821403964 0.9803446601613146 0.5159996598504009 0.847011762643973 0.46273684738607557 0.581463803080922 0.27574543810221996 0
12 0.23874303623225046 -0.07724965811637219 -0.024859552332216598 -0.027556571320346283 -0.04689012603862608 0.10918072544451718 0.15046746062669314 0.2286770964491751 0.2521525447765143 0.26330470022396923 0.2375249208004746 0.16135943023161303 0.12588441562245123 0.03278606655833016 -0.06117053441693088 -0.060816693716724046 -0.0867590892918031 -0.08168847677258384 -0.07488539995694765 -0.13617482520707114 -0.15264242082418633 -0.16902208326303736 -0.198955500795428 -0.229064784684347 -0.25070899446023276 -0.31561060626268045 -0.20700680714498532 -0.17418484493482111 -0.12113102433938394 -0.11518409144773756 -0.26221197919768 -0.8441317696553625 -1.2070499142423508 -2.0459885976829923 -2.672273311558884 -2.6557792908171365 -2.6619068706790268 -2.383979417792963 -2.0307838369393387 -1.9486864705299034 -1.7893833218929984 -1.6363309574383855 -1.4881201877561772 -1.077866890571137 -0.8837592178093345 -0.4409277320709961 -0.1948906992878605 0.12627348982216802 0.29319505459029216 0.47941373601310033 0.5827011915380709 0.70920692095806 0.7465517201694212 0.8174975334134444 0.8700671192463858 0.9207858923614793 0.9527956772367858 1.0043163888920077 1.0671666280563201 1.1645709925861922 1.2109671874793548 1.300349155197729 1.3584693723380852 1.465079617893764 1.5089820639882774 1.4951362021039287 1.4903146332094508 1.4165992259911278 1.3875538733310009 1.2214243094492971 1.0554663959498214 0.905711375109604 0.806132170122801 0.6309948760074064 0.540838373581856 0.3334229779410407 0.26134939157167736 -0.10032187861598629 0.2948398868494664 0.014925994858018042 0.1871160217964558 -0.058033849537480364 0
13 0.017868142637610163 -0.15883628935342387 -0.0568145295416187 -0.04705093534408178 -0.045306124265785286 0.019076320415678083 -0.005171855772708513 0.06410443164838142 0.06778256808440375 0.11476177199509863 0.1718174556246197 0.11835438438102841 0.11533996275628766 0.050797009910390045 -0.010937200628418966 -0.052775325020874675 -0.08420420886579905 -0.1053584621997814 -0.1282852315860339 -0.16057357190618404 -0.17492836211678764 -0.19854022732684484 -0.20657888575350114 -0.27326656495418433 -0.2872928103103831 -0.3017575169938169 -0.2887530431234069 -0.1956655351360581 -0.165576126554555 -0.2295884689206531 0.025319576072433847 -0.1731769259360192 -0.15177393011831697 -0.6469137618534866 -1.8930940311236206 -2.5932561284447493 -2.9385556976093166 -3.0407499359411587 -2.624546637990316 -2.3844574038792636 -2.0002552894633023 -1.739848936415278 -1.6546174448250746 -1.2585929103331601 -1.16726933587897 -0.7852635182177181 -0.5417316775920469 -0.2598019476029947 -0.10546536726239708 0.13501320454676602 0.3043441986275326 0.48665467187392863 0.5762420177689336 0.6515131195040809 0.6437704827015125 0.6951213508206351 0.6961003602813776 0.7388973176861384 0.8107697418531714 0.8443418463477741 0.8889236665866846 0.9323762079951479 0.9543375192666232 1.0743575745075873 1.1138997997524882 1.196362149079924 1.257140839157664 1.298672401990281 1.3192785786652195 1.298337834315447 1.288320077095804 1.1816514101819635 1.1372162456205004 0.9892554229860977 0.9400071214787573 0.7924209182750417 0.756265324957397 0.3046007707778102 0.6030122500119859 0.25046314364616507 0.3543989557903231 0.10106768518556208 1
14 0.609590374484597 0.18510470091417375 0.16511977816649193 0.10560919293008908 0.0035022102092128176 0.06308446700872139 0.05143844028608413 0.15177531608286188 0.1650062480014043 0.21140093718945963 0.2384783332743936 0.20025058858813338 0.18988772375790575 0.12717119120711828 0.0679494002102885 0.048870008514114716 0.028155119930431738 0.01954549812710127 0.015592721079514147 0.003777754243841967 0.00040196339335807184 -0.009757932388410497 -0.035668407015215564 -0.05492125593974606 -0.07276627058898555 -0.07155869509296053 -0.07966390568535786 -0.17311037377027816 -0.2040869438009807 -0.3640289631148974 -0.25956765988830455 -0.20944123116240831 -0.1362666732186142 -0.0704071318269257 -0.4982749202092833 -1.2606861415732773 -1.6913763741791996 -2.4849412364945103 -2.8227727153615048 -2.6541018223997623 -2.569535061971788 -2.271434887268539 -1.9568146431251865 -1.7829679641424825 -1.6159768357984028 -1.3884583195589855 -1.1874590345212397 -0.8836931173551257 -0.718772182963022 -0.39097747084264967 -0.21151579165919543 0.12284138560067248 0.2694552044461176 0.48580033479606755 0.6052051589302039 0.6803774864103147 0.7155296778444793 0.71180034743481 0.6986618658098536 0.7363472555164776 0.7431422015245346 0.7897612407735721 0.8175929951172449 0.8953924768685084 0.9307217392232872 0.9946045909501606 1.0647297949107255 1.102392900181762 1.1253217775551647 1.1704525778761834 1.1910816412687524 1.2109789319791915 1.2204416862962972 1.131609300942074 1.1227334704757794 0.9881749290011257 0.9500161456087781 0.4912808002454838 0.8192700494657146 0.4355227332774021 0.5536775210314886 0.2501659174579913 1
15 -0.06695756142618592 -0.31848740644061735 -0.24824054150738561 -0.24879524326890134 -0.2561313396925087 -0.1490729962969084 -0.13262497484618763 -0.08331614399353526 -0.07115968323953581 -0.061409038105921354 -0.07467008412660903 -0.1262200064609118 -0.1509042348483618 -0.19965234111906938 -0.22682429548473948 -0.2314019401518408 -0.23596422662684802 -0.23223850990943617 -0.24285523662074837 -0.2866552947679679 -0.30900899279039606 -0.31571992045346775 -0.3452109618253445 -0.37997377791877085 -0.397417371586414 -0.420916007772405 -0.25239478189832454 -0.10048208563939909 0.01963282902332253 0.08566733334847498 0.052222009223903854 -0.46064102561732767 -0.7795957430529583 -1.6395483481115853 -2.447850750875766 -2.5133657869389125 -2.5687344409236283 -2.354805703772442 -2.013108515255688 -1.9507193229952193 -1.8148595511668688 -1.6887767743115099 -1.5341474848980603 -1.2349982101613257 -1.0764488175011167 -0.6898573749356949 -0.4701299792032998 -0.08904505078564995 0.09251046191996437 0.35336453638163334 0.4973117514821155 0.637617870492214 0.6957004450048885 0.7367423525366235 0.7596317804362158 0.8167076405141742 0.8360682979243848 0.88800639103534 0.920861478757864 0.9937562766927286 1.0281782011498706 1.091244659567586 1.1529466480170996 1.204126468036037 1.2347934650966863 1.272122604974932 1.3015205937711798 1.3593490052617483 1.3837338994738744 1.3889111159146879 1.372230914736427 1.2885959222714547 1.2438972593162205 1.0909630927125278 1.0438306080219135 0.8886014456937303 0.8484003238938911 0.4067294356522311 0.7445656951329411 0.3815519382716417 0.5078486758227427 0.2184717283731672 1
16 0.43184971623874446 0.228766836473568 0.3100722019965829 0.3924547489533339 0.4152872611998717 0.5535603771741435 0.5959574193024153 0.5872357730391045 0.5719631049951133 0.506159575833415 0.42712963186849606 0.3972841475143696 0.36576160881177344 0.3348422555751469 0.321360172044713 0.27079799226077483 0.24965458000356477 0.211783085145683 0.17798301689784068 0.08519424080377291 0.04633259426735492 0.01779767563859025 -0.026192703634187357 -0.09522265769972904 -0.1257616698262609 -0.24254054425333038 -0.08568853296053902 0.06101261678112735 0.20260340338874272 0.299326586928089 -0.16829362313214347 -1.068691424788497 -1.5810163206243928 -2.525335841400633 -3.0114923165035354 -2.8710565562837016 -2.7776610374953483 -2.4916027770300637 -2.1211976643677204 -1.985295205799579 -1.8146848893744263 -1.612633417607725 -1.4447465452953345 -1.1342267878705918 -0.9786684784059609 -0.6090123034639703 -0.3998948587699047 -0.04950734265607082 0.11405107918447044 0.33721163313193614 0.4192593112728318 0.5211413416506829 0.5479404834317947 0.5600653243785416 0.5763582582032143 0.6075715250767786 0.6277353255912033 0.6486495695310879 0.6483156041382969 0.6955682440964708 0.7052845591536396 0.7555717971849916 0.8146628929785109 0.8406363060787996 0.8684710718326869 0.8899397163930658 0.909998719832025 0.9427104644283375 0.9547910376449309 0.9444628040321703 0.947188431417338 0.8774574210538546 0.8433769905150399 0.7188771614389466 0.6634211389153819 0.4709182466569004 0.415847684640795 -0.04954287729660223 0.18403444572393113 -0.1586676503814104 -0.10218895294899255 -0.31894815220343986 1
17 0.12575462384220515 -0.09626701476212673 -0.010790846091992991 0.028516790297196337 0.041617629294471215 0.14035514512631408 0.13636111175878796 0.1537544148758485 0.1377216668937109 0.10834024085364291 0.07327447689263522 0.04029622249233711 0.02035857888502335 0.0029330536786673616 -0.0025359684119337107 -0.037702313474106575 -0.05038577101564812 -0.07693857944121163 -0.09506757007368094 -0.15914465775939135 -0.18720437585630378 -0.20820293928219513 -0.25373636514889597 -0.2937399384386623 -0.31758488679932384 -0.3945372588572411 -0.244335344741188 -0.1456743187287941 -0.034947174268836534 0.028269553518583734 -0.3239151722112794 -1.1003744716555275 -1.5541399361712784 -2.4103863233936327 -2.877714577233567 -2.731246021288345 -2.655856759344905 -2.367077727393424 -2.022125053864256 -1.8701427187441197 -1.6926157200529879 -1.4657464638558224 -1.2844576115247044 -0.9768528991876231 -0.8225262565007334 -0.4820623910373385 -0.2787723262494026 0.08612657340619023 0.25595294446724637 0.4999946168422369 0.6139424645266303 0.7092620297649859 0.7461093440089073 0.7455106756582595 0.7379158990972243 0.7697395788212731 0.7809513601909757 0.8085467188328082 0.8329120388785398 0.8916140604723424 0.9135509793210801 0.9948704984721033 1.0681034777740592 1.1219661631531181 1.1640629676830017 1.1767461240835217 1.1973559144507178 1.2355987161880506 1.2452572121691006 1.2243032176143842 1.1799662250259146 1.0918728397383362 1.0360021460282312 0.8843089815739447 0.83252025440963 0.6520536676375883 0.602229885638252 0.17150697923150204 0.48517305804838173 0.15256490784111065 0.2789968577108439 0.023186594217484924 1
18 -0.20606001977353827 -0.44101446068517447 -0.3666934588727102 -0.3413458168150001 -0.3214560546300973 -0.18457330675187222 -0.14900222815686703 -0.09465199546407632 -0.08041254226468908 -0.08414458294355143 -0.10868004766640382 -0.1513535372523691 -0.17492384500146585 -0.21943429481829213 -0.23829234786369824 -0.27014945424112824 -0.28367460093762986 -0.2931533157288726 -0.310630336049897 -0.3583232441814346 -0.3832348340400813 -0.3886472416186493 -0.42176040719655816 -0.45602965315582367 -0.47089879223106834 -0.5224393791937061 -0.343180066776668 -0.18355304097119074 -0.04618937088170583 0.06956502179038182 -0.1751695760749712 -0.9247732697965851 -1.3724674301788298 -2.2861039181350282 -2.7927479015291032 -2.589869157733844 -2.5245424100943605 -2.18432819053775 -1.8225160616373017 -1.6884589199633666 -1.5198649685326053 -1.3233191074906117 -1.156978293182359 -0.8610087664911426 -0.7153052969535487 -0.3977022509927082 -0.21922741093655418 0.11454374589556693 0.26424606705703013 0.4701238366423084 0.5769737904510635 0.6544935121933975 0.6888576175744205 0.6975124105309689 0.6968748949885537 0.7863020338601459 0.8171683862769967 0.9025201837052705 0.9547555030043995 0.9998212568647844 1.02736542153297 1.0641868376490464 1.1118616773192969 1.17725987066612 1.2129860368871732 1.2595445467908988 1.291282702464855 1.3396131261388078 1.3562433379075074 1.336246670659989 1.3019867600723884 1.192123288061957 1.1318908677971322 0.991729296477331 0.9728817833676757 0.8162240080337213 0.7851980508755005 0.3426330749411477 0.6633386262755039 0.312706282511229 0.44222944496617345 0.17269949767645443 1
19 0.29766609533579924 0.14746990289915374 0.27350826145384843 0.3487896019837251 0.3986748167514378 0.4742717530717968 0.4401353103029919 0.33309413194561444 0.2572448394492781 0.1799551894473339 0.11705737000163197 0.12577299344451376 0.11972969542600254 0.11821224581890277 0.11963092117096608 0.04097710234184149 0.009443722562473054 -0.03458249249185741 -0.08208327265170823 -0.1712077647967405 -0.206913453428335 -0.27259773074553806 -0.27993653743833846 -0.23757141625834066 -0.22349939746688108 -0.2971874008522519 -0.06275122363853569 -0.19342263680827898 -0.12209256762088216 -0.4869050398033181 -1.6974287064283544 -2.446455564523376 -2.8380819720396024 -3.0456449267809296 -2.6858226248223573 -2.4236693527088864 -2.0717828318755167 -1.8274600443570002 -1.6925032438814753 -1.4240720096085262 -1.3527700971066352 -1.0573590364397027 -0.8267423813715808 -0.5271362757053026 -0.3670436858806596 -0.022472708596183114 0.17771229111955478 0.45483189557294423 0.5925719919392449 0.6897803136641514 0.6916588313559728 0.7398164000836118 0.7341465169317019 0.7316202449027358 0.7594245954134564 0.7853386837325189 0.8024293401230196 0.8654283429519296 0.9023467264769138 0.9677870795667403 1.0007029977755977 1.0458696338781692 1.0970139192565753 1.1410952431178316 1.1652051955773715 1.1596726327312439 1.1654945920989874 1.132559400864757 1.1209835400001182 1.0160639001388745 0.9070592823216259 0.7570931616253702 0.6673498246812528 0.49619903540784804 0.43564559881415477 0.235939714463548 0.18156930532231996 -0.21475938160126162 0.060366669290111474 -0.20951350500755694 -0.09812023660814617 -0.29406577302387404 1
20 0.05141344558130356 -0.19918798166398943 -0.12875772184869305 -0.0860083447253217 -0.06788899060553888 0.05957256041654091 0.07386441215366091 0.10559564158412371 0.10243215515376392 0.07885190975095924 0.03758866356845658 -0.029635347791433734 -0.0645315693573636 -0.10483447682245384 -0.11762273143946089 -0.1522187154070025 -0.16255477868632084 -0.19930873921359193 -0.26227461653014217 -0.2978086547795087 -0.3312922238138043 -0.3168383582071428 -0.26554952513843944 -0.28389473502431173 -0.27093242089690506 -0.34337370045346205 -0.15739352271964435 -0.1050603325885433 0.029755684459452425 -0.07351520830933822 -0.8419596394676248 -1.66263517395074 -2.1014494384629003 -2.6151897723848787 -2.66121255241144 -2.4633525872370825 -2.3083664457132116 -2.072706280817801 -1.8433542674692696 -1.6684657158375948 -1.543983804652278 -1.2559491933058275 -1.0358461241491703 -0.6779115623262015 -0.48345336141542816 -0.12539969831847486 0.07196722371850939 0.33519037459594614 0.4576568994951913 0.5657644182095325 0.6174932183105781 0.6665262039875799 0.6768568467285121 0.7180240289251714 0.7477141245122283 0.8222173166426714 0.8581600032581491 0.92979151460802 0.9901829373321718 1.080886914134723 1.1247920704984296 1.1973748863350693 1.249049782193275 1.3306388225584982 1.3644024527427447 1.3794492650206465 1.3913295794579739 1.3657846900312123 1.3549833638737496 1.2672609843246008 1.1851663281843585 1.0511272549717106 0.9807472857069968 0.8091908594776953 0.7261153870305819 0.5632321233601374 0.5077221965937326 0.1092002996109116 0.4689078291976827 0.15556547697886458 0.3052232292691528 0.053319969388120114 0
21 0.3369110943925264 -0.034598151824972945 -0.025932818932673744 -0.08239977186525493 -0.16877695447157492 -0.09609897807215617 -0.10408493682005826 -0.031220252987338885 -0.010128636985818675 0.05541199606415148 0.10190877205847926 0.12002662047315482 0.13318949452084894 0.11971855320820879 0.08631358198051231 0.09990226943254044 0.09343797626603845 0.07028986822901828 0.05652591670250473 0.02389367333585568 0.010734412980418993 -0.01623758374700657 -0.0746676749984374 -0.14021071717657918 -0.1802531376581129 -0.2154465854122165 -0.19625004985869765 -0.24335001131899503 -0.25078337629253156 -0.35741379829664766 -0.21592630305939053 -0.18498165397696198 -0.09224979353594875 -0.17576161932314704 -0.8437473631414782 -1.6631686452702432 -2.09476365607512 -2.6255449204764316 -2.708544016031979 -2.441113247517551 -2.2641706882638033 -2.00415950752118 -1.7601610488827681 -1.6082423298034136 -1.5159415527346098 -1.3097144595644465 -1.097396186953361 -0.8049060436240083 -0.6203466492294041 -0.24612863952393838 -0.05498178528505804 0.29860234277149544 0.4560259197230039 0.6406735484368937 0.7327564499766765 0.7787948893363534 0.7883787023440831 0.8021345230630175 0.8350862770534278 0.9072989905747022 0.9476118356935004 1.01836823123503 1.0614428406615701 1.15629684188076 1.1905332634686872 1.2544365927850194 1.2956649066090336 1.3354555731966329 1.357357559686882 1.3509182612251607 1.3416229413159826 1.2668960014066002 1.2291196671114974 1.069261063860523 1.0040556007674297 0.8508052360912117 0.800570697738614 0.3767785519405962 0.72160188540105 0.35947528998894995 0.4843940062258838 0.1906246158374003 0
22 0.10398544054241654 -0.16271829826096962 -0.0932721673037804 -0.08163366910667946 -0.0893606465761323 0.024635985953736395 0.030058933468055216 0.08058828888065506 0.08238700420179157 0.08343467381542524 0.07652288509104466 0.023091132513684443 0.004072872444865537 -0.03941309561697892 -0.08382206090957567 -0.09111268503894365 -0.10453875633938736 -0.12323208524605889 -0.14278968888429944 -0.20171636168010565 -0.22699082646960278 -0.2418590621217831 -0.2615524803606988 -0.28156179553111826 -0.29454699637615533 -0.37347906950910215 -0.22126071511340228 -0.17814966762326634 -0.09306528342204246 -0.05443912916440041 -0.4818705642066732 -1.166588305458955 -1.5568559270437596 -2.3146760276799423 -2.648396178751555 -2.534328288727485 -2.4898503621409755 -2.2294212729458316 -1.9463591021456068 -1.8328320990386935 -1.7067615183947034 -1.5470829974745577 -1.3678369352624635 -1.0378160381410027 -0.8547808690264809 -0.4449443510151312 -0.21817432078453436 0.12759459548328067 0.30078170034374807 0.49589970123252414 0.5892431790881076 0.6768932847921079 0.6963855408286932 0.7236520534750994 0.7531452028341263 0.8110121603754408 0.8424564024124592 0.8936371258544611 0.9326722296192358 0.988573639713529 1.0126965412369913 1.0743910011609685 1.1242030386604682 1.2098153230722986 1.2525499442856187 1.2962828479850543 1.32221831731664 1.3598946727926204 1.3687467131182203 1.3440528482180838 1.3112140221107182 1.1931101271892572 1.1364796546820273 0.9587203256928447 0.8900156039304719 0.7321610941772647 0.6844437936229895 0.2698484946201347 0.5999237476959678 0.2569150900307875 0.3782180060231397 0.10268149991952669 0
23 0.0962870714700017 -0.11627482422743896 -0.03740629185001865 -0.03493392406389262 -0.050658905922105646 0.03082533736765214 0.04704900875739071 0.11689866868332643 0.13632437255417074 0.1946939344602896 0.21873010736957355 0.18201981229041309 0.17173644868984894 0.09522886192061719 0.030650073293166713 0.007426378859761938 -0.020937491668817646 -0.019607652918082866 -0.013674271372401849 -0.0565335649686034 -0.06517179516897187 -0.10854634105287886 -0.15870438958602762 -0.19637713136975066 -0.22347801645435794 -0.20935450254822996 -0.16681200930659656 -0.1675573333346918 -0.1534943487738758 -0.27013530061311997 -0.0980374228272467 -0.09698764522646286 0.008786632853663432 -0.13662111620086392 -1.0574489270346064 -2.0161038144255663 -2.481844226944636 -2.983418313029418 -2.912636772212597 -2.624613566582334 -2.353062247828742 -2.059736588735369 -1.8718598248484426 -1.5578242459982405 -1.4357019252865157 -1.098570787507537 -0.8260410239326177 -0.5567339209987736 -0.39199442407209517 -0.09191432243805053 0.09265802102047616 0.41242401236790016 0.5655150734437697 0.7236659059620862 0.7489310353799183 0.7911037274472079 0.7736980775482678 0.7618469737900213 0.8001442820522371 0.8071310548909594 0.8336859713036731 0.8756523817712676 0.9077555203632244 0.9660744905777392 0.9950825017512059 1.0443597127966058 1.0656226780393325 1.123184880866937 1.1416065805722582 1.167820304207666 1.2030893383581542 1.1978847180843886 1.1957607704600832 1.1181004158607308 1.1125016019898837 0.9695162313119212 0.931666418607584 0.4743557714167821 0.804559310567754 0.42518606771604084 0.5470469980211448 0.25679282677607773 1
24 0.41584105953832307 0.16643486100717553 0.2340494522718899 0.27096060841235925 0.260951283141317 0.3964373389620448 0.4344410347283443 0.48899935586695875 0.5018222417014329 0.4932951325379804 0.45544321184649306 0.38710678555335676 0.34947018069220803 0.26294995610069805 0.19334361812009604 0.150957718209618 0.12027686866198195 0.10122186938854583 0.07902235556910142 0.028589064142344967 0.0062221159149729015 -0.006815483467796925 -0.04420334584522578 -0.10429332640690347 -0.13405810496728066 -0.25305578644041304 -0.11002976172455448 -0.03976452718901413 0.05984479189993408 0.1295261139948778 -0.26342708321924135 -1.0480281818899932 -1.4898946612250867 -2.361004842269555 -2.8233882852519816 -2.7474661542710814 -2.699859146615913 -2.4171714823184924 -2.071481464998298 -1.924722947892045 -1.7494952361849592 -1.5480493590123992 -1.3833797268026977 -1.0318963585117977 -0.8504951805796779 -0.45497144360643915 -0.23473858266953584 0.11841581714940475 0.2825114745722175 0.49755597685051356 0.602287102432328 0.6924854634598603 0.7223815395055908 0.7551637511009233 0.7884916302271279 0.8661971559796982 0.9015553278725363 0.9760621336952369 1.0361433811672924 1.1057885663396618 1.1429129303233196 1.173106232557224 1.1944468921834854 1.253904777741134 1.2704834943951653 1.237314918869309 1.2045287924406978 1.1112461450714477 1.0630569565365562 0.9041568851568655 0.7772599735500094 0.6051205383031757 0.514895978006777 0.34562400756621514 0.25009454703590706 0.09277486373679977 0.03612903303747572 -0.3282088408951509 -0.023067763254573496 -0.3340458573139671 -0.2566047333782322 -0.4873558479124327 0
25 0.3837574951127607 0.026410308852135245 0.03340732048558692 -0.01758579210004996 -0.10728395789094947 -0.054492129984176074 -0.056679919505029375 -0.0016945803979950842 0.012830053348707791 0.11240654806631767 0.18532664184698433 0.2520375089063194 0.2932266743975447 0.28176223571084336 0.2388668051920675 0.21910201653106753 0.1932192468782361 0.14233484620134362 0.11158623992388073 0.06497232007220788 0.052326505158347913 0.002931849114581551 -0.08727735298972306 -0.16284899346428006 -0.220477447316604 -0.2530834914143867 -0.20664664248332798 -0.27004315146055546 -0.2719054075372185 -0.3932902338874058 -0.27406790121226976 -0.24229782459003957 -0.16345519034046418 -0.32669380041622276 -1.1087729936028197 -2.008257509826363 -2.443199853655196 -2.853286168143841 -2.7819442415287243 -2.465702541197988 -2.2120436291618866 -1.9638443285594658 -1.7909298316086684 -1.5792418471554832 -1.4944534845783473 -1.1895063417555853 -0.9344781414949388 -0.6229361608728752 -0.43072778453337435 -0.1066678233610574 0.05365333249886817 0.38297723872617695 0.5155780624203672 0.6987425716036029 0.8218294470070404 0.8434077068992281 0.8656849151022072 0.8774026133879502 0.8725994140957809 0.9849903626992642 1.0247825349919708 1.107236452370806 1.1922280851374225 1.2616516305180028 1.2969056076174184 1.3188780611066875 1.323457813760939 1.3499323255209248 1.3568998253342741 1.3103527587893637 1.2554963080395112 1.0904550678093372 1.0139236908994107 0.822340784461467 0.7419225803876515 0.6264810732368531 0.5905865691848078 0.2052185120190373 0.5431755290493498 0.18541698415342012 0.2981048578040557 0.02249487329120825 0
26 0.18110434358519711 -0.06538078703785999 0.0024030454809107465 -0.012467298158419739 -0.05278074555926082 0.03765130090091873 0.05609528504182748 0.14102337705291745 0.1721294377228446 0.2414701693225254 0.285358762930052 0.28980270098362837 0.2933269543576884 0.24346010919228434 0.19177738366752095 0.15588137391036838 0.13050391889153445 0.08667705919340563 0.05295197505990501 0.011144868192658917 -0.012198379226262547 -0.03866084534539027 -0.08727946097687322 -0.1762163422655405 -0.212052424959424 -0.27099716621651737 -0.227453379078554 -0.20789306517112038 -0.19201751280218105 -0.24348462135558435 -0.09305775489650614 -0.298642514267911 -0.32225980001635435 -0.8072544918798066 -1.806741993792592 -2.40055625231561 -2.715174990753855 -2.848252407757122 -2.552303057514343 -2.3500725197677603 -2.114685188637786 -1.912109053926459 -1.7869344431065457 -1.4809793812849819 -1.3653085552463473 -0.9569304632018927 -0.679953449022161 -0.292947335270199 -0.07766673843108407 0.22990153584240147 0.4241414095126217 0.5961236491462572 0.6747277797068421 0.7471862243016218 0.7524860051381665 0.8429204607265177 0.8657538763961199 0.9204338585074012 0.986885744288287 1.0398844560767984 1.0726766053258388 1.1382063972990366 1.180917228371662 1.2787714975875843 1.3164508644737793 1.3322339665491327 1.3436110743396128 1.3107830893090195 1.2996134676823203 1.198530966716426 1.0987903501421243 0.9728510669834876 0.9006172735907114 0.7327013411697507 0.6619985487300397 0.4877761210378182 0.4314597386159633 0.040391081914094684 0.3950255898534749 0.0788997911733702 0.21785589498429658 -0.03199418541247212 0
27 0.19395071841934453 -0.022786497540536747 0.07072983526136056 0.12921955243503902 0.15795111615081225 0.2831251999739379 0.2824051717916447 0.2932260721155018 0.2712557266133828 0.2218137914292484 0.19173733191166775 0.14794630799509179 0.12541584019307095 0.09483587288762152 0.06215454353447569 0.02915460698063299 0.00956719038126863 -0.01273952964181291 -0.033551987916446535 -0.1181057616378709 -0.1530125231395516 -0.19437484471811217 -0.2559106033237839 -0.30093028260788657 -0.328866231744982 -0.39279545918915915 -0.21497018031627846 -0.08614415932599684 0.05037631590342073 0.14767497993476297 -0.16534244112190777 -0.9654943115699623 -1.4464485943485847 -2.4154210248460437 -2.9955796108610744 -2.927539093264143 -2.8614803470867636 -2.5395330219291337 -2.1552632637112286 -1.916015605827253 -1.6503870157557081 -1.3739156173509954 -1.220745205615973 -0.9024620326581818 -0.7767481535541023 -0.4588441171423199 -0.2529817057491357 0.08259268351944371 0.23789201170562535 0.45414288491586063 0.5410542916942376 0.6184550627330978 0.6443381335269507 0.636254605088098 0.6332552405144298 0.6641128598416586 0.6761094147132667 0.7282546928469813 0.7695832866311392 0.8367293024664733 0.8689953583510359 0.9390356405435512 1.0033120835854632 1.0603614432535338 1.0972807302015823 1.1196302122497102 1.1416562688407978 1.175063649196666 1.1837473516912738 1.161483092552217 1.1292965378973179 1.033833027250708 0.9817552047057987 0.8287894182948534 0.7707378613073885 0.5984213551399407 0.5492465320418347 0.12891178631111444 0.463570104592435 0.1430449367299289 0.2820690984117036 0.032364770269317944 1
28 0.10509303721931929 -0.12173059611309611 -0.04856115756666668 -0.013881456395161253 -0.007638200738405489 0.11438534571828285 0.15538509350701446 0.2024058548786698 0.21044150189511157 0.20693802725153176 0.16787612193584778 0.1301076173073028 0.10350692745932832 0.04803072848732626 0.018676405139189 -0.02506553279089019 -0.04778632171846908 -0.06434245279589135 -0.08103921673033199 -0.12787176496357944 -0.14678071084161104 -0.16950601688451172 -0.19087016551044655 -0.26430370473268994 -0.290099745771343 -0.32671849397998187 -0.2663123153457789 -0.13372504299755406 -0.06828860474100651 -0.09565027795019176 0.06648133773070697 -0.3673005591719587 -0.5836869458418477 -1.3630548158417959 -2.463281969667552 -2.724012275169404 -2.861177549789693 -2.7104843805610814 -2.292038504244795 -2.179525744098134 -1.9254361251161 -1.7325327152990866 -1.6159369346130603 -1.2826673281521686 -1.1541814459456177 -0.8205433934449786 -0.6051655280559345 -0.25613645908987337 -0.09709153887886401 0.19960945935346075 0.3763367780621252 0.5231981348272043 0.6095750162925029 0.6448618177632568 0.6400405500098003 0.7173130349735217 0.7304954831876103 0.7792387712019746 0.8119336519010858 0.8631685807269491 0.8910048521859437 0.9388814563405674 0.9989443342103144 1.0371392545252363 1.0662785631840563 1.1113952098770667 1.1342195913160253 1.20682830528051 1.2321202362492514 1.2520687209333374 1.2566168537803364 1.2122894977045533 1.1802233994582352 1.0642636286095168 1.0444295775135828 0.8671617106714109 0.8281847271237766 0.3555155866978694 0.6515423301831618 0.2937006703653111 0.4072275229017137 0.1374211281543012 1
29 0.08999352526266335 -0.11701081288386916 -0.03707563900846367 -0.016266493285066023 -0.01713558627297829 0.0651590275055085 0.07205154320451612 0.13493370331710253 0.14329277579058441 0.17611654484687733 0.1836456726652358 0.12902953245050242 0.11190273913742743 0.03908172075281868 -0.008535600982334303 -0.03874697167752572 -0.06306621714697513 -0.07271176406410262 -0.0893720899349475 -0.15296253372999047 -0.17809184854714744 -0.2212408398059864 -0.2482730647377025 -0.3069290117552228 -0.3227615009580944 -0.32057612056541274 -0.27510412746708823 -0.17063409115087325 -0.1239750001459825 -0.18772956579771716 0.06687854273800298 -0.194315519936886 -0.21803218222240872 -0.7901724180084173 -2.083158960957677 -2.6391546501573337 -2.924525273921445 -2.9577811615222087 -2.5153319366679767 -2.330487211155546 -1.9753977544180064 -1.7364788672442018 -1.6436693124196537 -1.263057476546706 -1.1637589349918969 -0.7885420405182728 -0.5509234049898453 -0.26886538892565426 -0.11898027516416931 0.11765694177534414 0.2841186642037101 0.44891296879629294 0.5355979175265375 0.6034272223395476 0.6030571200241823 0.68504095626853 0.7002696577233891 0.7493532350919949 0.7890704232703598 0.8278935237560319 0.8546923643961222 0.8974483666219655 0.9479584490091923 1.0111796939119344 1.045005961428643 1.1049655479280318 1.1386334152674564 1.2176769105783407 1.247355863947604 1.2699393325694004 1.2793186708235638 1.2071990098779182 1.171172907199498 1.0382384192535383 1.0175888782715106 0.8597738179921137 0.8239555026184959 0.3736626457916259 0.6831380461539709 0.33098253110318865 0.450800520718758 0.17571662957038825 1
30 0.4504325263905429 0.0647389357805821 0.05487656732800872 -0.014033532610994827 -0.12349437907574412 -0.07542022641104751 -0.06560513709884219 0.008420445371577044 0.04210517660820301 0.12732567655112348 0.14754187560328091 0.20865633791994043 0.22406271257745658 0.19019006934344418 0.13217555270161796 0.06383581385724568 0.01702163522630684 -0.015439861181178573 0.003315502775912192 0.026191981611582094 0.05863179586552292 0.08574051061668797 0.04337298030851855 0.07026156097300174 0.04863511851738167 0.034439933048147964 0.03521266090919539 -0.14350700679739958 -0.19749075086708245 -0.40106087680496927 -0.3083260049537415 -0.21297993930549808 -0.11446436440646579 0.0014631843529571125 -0.41319505312338123 -1.193260817440546 -1.6339632361572143 -2.4130868807887644 -2.7208599685994654 -2.5687904531536185 -2.4925890891605764 -2.185502188809883 -1.865169224204319 -1.6886975742228678 -1.5320497365426213 -1.3520691913792042 -1.1880443020964329 -0.9269625650225457 -0.7784200885052073 -0.4340535859742971 -0.2186368733934856 0.16767586315658178 0.35216448941114464 0.5752253656805095 0.6546760036523978 0.7135123341417682 0.720924619243803 0.7370811361857577 0.7981410919775342 0.8730291423333938 0.9135747694617748 1.0037725282072643 1.0397567722837024 1.1550492146288818 1.197179746953168 1.2755179699918102 1.3659997047205295 1.401132623129321 1.4448236682267748 1.4333577238349662 1.3806008282866813 1.3414022049472578 1.3025529051927194 1.1491856978001778 1.1028141964707743 0.9099713159990728 0.8549194247262974 0.39076173413072723 0.7148445820206746 0.32262616889889983 0.41690077479281484 0.14170335347935747 0
31 0.07640574123369959 -0.13986139359169414 -0.05566296627558387 -0.061352724734909714 -0.07461768558887627 0.017323077388780916 0.029071492058712067 0.11018834330229765 0.13525983904333572 0.19029366185482388 0.20966184779057073 0.14611597286670275 0.12146035287629076 0.03165708886890428 -0.04071161570148263 -0.0512623925290967 -0.07466225446005126 -0.06328243640037812 -0.055678625608699406 -0.09966177749696215 -0.11014329188964211 -0.14453389768055303 -0.17528250395801592 -0.2063795303972995 -0.2226125371587031 -0.2015450124388991 -0.15386083739698364 -0.13560898122776166 -0.11346728648443616 -0.23536104116087841 -0.06420663819521621 -0.10318030919161458 -0.021497011686676618 -0.230517187830813 -1.204655541980781 -2.09888394281589 -2.5434139392004766 -2.9549402159471385 -2.8027533119668666 -2.523232296080531 -2.240202874366389 -1.9506913921654796 -1.7709403917456648 -1.4928700850875494 -1.3769910200325803 -1.0555222267793525 -0.8139086544603344 -0.49178262092778624 -0.3249245969151886 0.007894954289142218 0.19983591740159312 0.46957816911143624 0.606233856659486 0.7088853023471486 0.7246410005895498 0.7624164314615882 0.7489530186744844 0.7663119917150993 0.8088237685725446 0.8256792338252907 0.8509082263205485 0.8874977638501065 0.928326463538653 1.0080926973010236 1.0460991033365161 1.116214369643373 1.149549777295114 1.2138177883884254 1.2363756600233984 1.2598432786841798 1.288556171656623 1.2413116625060283 1.2263401354834897 1.105396781870752 1.072151114243404 0.9183321953186834 0.8750455826130406 0.4145365166333903 0.7249659317516972 0.35557461033807414 0.46653423566659313 0.18228150383805541 1
32 0.3929859617151763 -0.06373264222744979 -0.09400875824225352 -0.16616937436681667 -0.2678303672349216 -0.19196842681568427 -0.207015239093586 -0.10526300049598092 -0.08872403445678145 -0.05015991524955865 0.0028478307695962695 -0.005573276754304858 -0.0019270612665565085 -0.05352667186939897 -0.11003126742966174 -0.14687526912234716 -0.17615761976635724 -0.20121104704610815 -0.22100534752721046 -0.25265858143311704 -0.26406459876165655 -0.28355022969576993 -0.2988737905723866 -0.324394588717432 -0.34033609097006945 -0.3269898220403107 -0.31200655051793547 -0.32010302802071067 -0.312766028174039 -0.4311451659891077 -0.273151227942968 -0.27501950684006005 -0.19051150655389648 -0.3157419037480338 -1.0848529105573057 -1.9552493873809311 -2.3741777292562123 -2.7647866941888335 -2.661394516873653 -2.335933572384283 -2.0710999193241175 -1.7490006120572232 -1.5458787345297686 -1.2809572988618498 -1.1696858420056166 -0.8537365119640832 -0.6308971249159967 -0.35031198958773047 -0.20021577597020723 0.06503616196875583 0.23208962650427623 0.49109951335056934 0.6153701741093371 0.7502927950789271 0.7972732035537078 0.8567344016625924 0.8666425435504266 0.8965413298653502 0.9382839925540054 0.9988154458531326 1.0375120671097946 1.103769415790822 1.159700036564196 1.2438165535224712 1.280896348634954 1.3204030392393236 1.355829871285053 1.390826673952148 1.4063538061592666 1.3510338993773985 1.2767156078341273 1.1518267045583173 1.0782191058256743 0.8929993091710244 0.8196579191013456 0.6326074861772852 0.5760245939514448 0.1629066927998366 0.512582612679978 0.1903864132894313 0.33860621720228323 0.08702728620135503 1
33 0.07487835397289189 -0.1183695611726634 -0.016308954169090843 0.03721193615061935 0.07316215129163339 0.17965374728485983 0.16866752054022527 0.15261881208395067 0.11769187413383264 0.07401709065153739 0.05265715799990289 0.03565834962094527 0.028732407268556415 0.021339094050873086 0.010762419095414087 -0.036019838587250774 -0.05519469198722504 -0.09036344617756953 -0.13240062478520542 -0.20340395596432614 -0.23823934704392258 -0.2666766959817366 -0.27451238535993383 -0.27840403078016607 -0.27530559081044004 -0.37491882473266713 -0.16846105754007112 -0.11041763136018545 0.03494494654112401 0.007231540618882091 -0.8493824645054104 -1.8272179269757522 -2.3234394572599797 -2.914344185340292 -2.908314664523512 -2.6106427311740825 -2.345047680683802 -2.04410782143351 -1.8263855731924572 -1.6152556030520238 -1.5137076886374743 -1.2434768356203243 -1.0141645728866244 -0.7332871801970384 -0.5755437914807473 -0.2290939953634279 -0.02321652691917109 0.3206533940673637 0.4836763871717622 0.6622210919448932 0.7050960448742103 0.749206278273526 0.741604876610019 0.7219349473707766 0.7271967844386182 0.7458702380378739 0.7681332926128448 0.8091571316832926 0.8287502699620646 0.8682662959380991 0.8760068247535173 0.9123331650303257 0.9686022683118125 1.0212787592073695 1.0571371263368405 1.1064697473301877 1.1499120499439215 1.1700228496385705 1.1850013029046025 1.156201681317981 1.110815814551792 1.0394222046088686 0.9907376390936875 0.8477417284799742 0.8004324740097672 0.635409001099859 0.5892943730617546 0.15856183014231817 0.47000217566964153 0.12303411585440216 0.24377209129050925 -0.012517588709002327 1
34 -0.03279130569625721 -0.3173987816480661 -0.2547879495958085 -0.27716332977178126 -0.30119347986063616 -0.17501027247462275 -0.15648919623222213 -0.06801607211659189 -0.03597346286994707 -0.0068151823267754725 -0.00702387305464214 -0.08460322071922377 -0.11989785185653545 -0.19768769709511247 -0.24902140017601226 -0.24730519749475377 -0.2527441054832096 -0.24790717839663756 -0.259695042540379 -0.2931355484086069 -0.3104102019632151 -0.3118225533538279 -0.3316165526939088 -0.37650403106959374 -0.39461194183056136 -0.42813134664640984 -0.33000484594709434 -0.27067313847743435 -0.22544537074750792 -0.24254626593273798 -0.17553576355705758 -0.5280442158849823 -0.7051342589539864 -1.3585735363015594 -2.158836979498062 -2.28852975963334 -2.3969558102631225 -2.2609881546638366 -1.9798127076482679 -1.9211579651948334 -1.8028660077054752 -1.6892242698693885 -1.533788976512021 -1.2920099272017147 -1.1619276964404435 -0.8293996497448788 -0.6162511313376484 -0.23925087973498194 -0.054743883878110466 0.23300539635051365 0.3979201573516775 0.5526271411486618 0.6231519592446944 0.6740050412553558 0.7019536383153522 0.7751321110924252 0.8004550595863762 0.8577272636103217 0.9114556400938127 0.9695879028750269 1.0036864018751288 1.0789189575595302 1.1295503997784024 1.2322918866314794 1.2781966193776313 1.3490307093026956 1.406250213647887 1.4869740758584769 1.5224072318656567 1.5496348973202956 1.5489473923683192 1.4629990345765478 1.4253196676903528 1.2445350759996572 1.1766289802261767 1.0295866377072045 0.9831190723919576 0.5405845117007715 0.877658583256185 0.4897612426512339 0.5981036513623081 0.2838657057456899 0
35 -0.03477251247639401 -0.3132800758976586 -0.25069243170405286 -0.24322865148734962 -0.25133205523361823 -0.10456796701846827 -0.06788929174656033 0.014543545760773212 0.04338231568018358 0.050924392562464504 0.028707412563775847 -0.05429157006388863 -0.09570990387243938 -0.18114632192774138 -0.2356299600930356 -0.25970437791204404 -0.278588931367338 -0.2870615340059075 -0.3136613204308176 -0.3676712637693669 -0.3901686060590279 -0.4048329692396848 -0.3896641948480948 -0.3926355533067678 -0.3885677403889858 -0.4383174416970448 -0.2830247386133351 -0.2735089834764537 -0.19009683536735622 -0.34135003278930043 -1.002914245466176 -1.7094632050686656 -2.072549311060369 -2.481525318602918 -2.493906430558921 -2.3115792439858343 -2.1915554997673574 -1.9713867818680235 -1.769835505337955 -1.613140689658362 -1.5072397817787149 -1.2654562153530868 -1.0407550239398695 -0.700008688198352 -0.5022538965257368 -0.12276019726544263 0.0783818286164717 0.37980562148823793 0.5207299830153787 0.6646022140015191 0.7343356334931741 0.8116514827639847 0.8273650212633825 0.8783867422460574 0.9253490822595509 0.9952487315950478 1.0432286271200297 1.1009615769067977 1.1634877883320272 1.255337907862227 1.2870022839859274 1.3603584299656575 1.3827497706157672 1.4607582442359188 1.4993603072118447 1.46241903696923 1.4121841974756109 1.3280390721202977 1.2622876403553107 1.1632321196048139 1.1135366236806163 0.9330646163701886 0.8675158525126392 0.6883101431974197 0.5881918957822165 0.47384383168031263 0.4340073916574525 0.08497049302483362 0.526334217424612 0.2358177523498597 0.4246759348257001 0.16119801864411443 0
36 0.19817753379645353 0.026928271409033755 0.14426696699498365 0.21216854565314236 0.24888817610396785 0.3235582003602957 0.2732007964709453 0.17906320974179124 0.11549896521561465 0.03200791815889659 0.002697561399891411 0.012241021510746462 0.01437912276306008 0.04346001006371836 0.042442153411208494 -0.022664535426848435 -0.0550347861048337 -0.10440836227709838 -0.14648499035854456 -0.24052079142244764 -0.2719511809724793 -0.3376643678277418 -0.33584607834021085 -0.24788941107637186 -0.21609976028774724 -0.2592159271752479 -0.005115542401696873 -0.25368005177788433 -0.26357012520443135 -0.8030257190860581 -2.044333376058578 -2.5792250271895796 -2.870864785916978 -2.9357090303548388 -2.531880990931395 -2.3504467627721706 -2.054559071153534 -1.8372373404710132 -1.6983325812042445 -1.4169775788546346 -1.31363953163806 -1.0114628862126622 -0.80688619641057 -0.4764816456277785 -0.3269006842979607 -0.005048387953912938 0.19007081749894894 0.41098305258024936 0.5283663170373742 0.6063898477085985 0.6199996150321283 0.6499014127572664 0.6434163408602842 0.6552761777081528 0.6661241807239406 0.7698982801395786 0.8155334916715304 0.9325975466459155 1.0112077000269295 1.0702843410514191 1.1091742948438537 1.1211708497154618 1.1603989848749876 1.2068039128577723 1.2243360419857225 1.2406169301695371 1.2546004135006896 1.2320699456986688 1.2277910329248485 1.1133149838888272 0.9992644471161185 0.8724349910980678 0.7869446687999258 0.615485209979532 0.5547062187607708 0.3416257582243887 0.2821236049365865 -0.10816720450687001 0.16188190990383333 -0.1356893858804895 -0.03515104674035996 -0.2650996204523892 1
37 0.23786912498799495 -0.03236127631762287 0.03830628262257818 0.04902359043505555 0.03677769079768467 0.14385109124435758 0.1355739291287108 0.2172391581723616 0.22579758600204514 0.2301969551844465 0.2211723610535543 0.12119866132864843 0.08234002620244496 0.021453527639025083 -0.035734959180956594 0.00364946816870315 0.0042213349684416795 0.012902026052834968 0.025513510890249336 -0.049747954332211464 -0.07241905499125068 -0.11297522205538257 -0.17954997337302103 -0.245676626850738 -0.28720307028599024 -0.36085764701797984 -0.2283986607448938 -0.18163386924147318 -0.11552016482767868 -0.10725474721186856 -0.25118268928697773 -0.8081565598095679 -1.1617196079946197 -1.9740135597128994 -2.623411072841046 -2.587166755849956 -2.6016449385940996 -2.360925265754636 -2.0155263012316755 -1.9409157523270846 -1.7934710101181963 -1.6495951654397984 -1.4914973337412576 -1.2008878160908765 -1.0456866598776884 -0.696640124732383 -0.4934000493540083 -0.1261100899880816 0.04460675507340994 0.3196530035940981 0.48501977726846235 0.6452566136423812 0.7196477813128439 0.7707206962691657 0.7696525490660733 0.8137802486446333 0.8189231350090012 0.8569214102369145 0.9262937616438478 1.0071700012112927 1.0556293132424273 1.1349137213704736 1.1811987952267202 1.2771067900209943 1.3136373039103475 1.368186289677297 1.4086265174481696 1.4309389591506587 1.44759025079086 1.3621095650054045 1.2901645658522014 1.1491760612874913 1.0688969843655869 0.8781825686335125 0.767846004078379 0.5981238278107455 0.537263528516192 0.12718865738636254 0.45201231218908333 0.10785751179625436 0.22789744234463427 -0.025666911410731078 0
38 0.23936790385176465 -0.015724740587472755 0.04930816870032828 0.05437968464261189 0.03544755090592844 0.1483492346817954 0.16912314690568309 0.2449534675176679 0.2674357527562563 0.30431468680743023 0.29707616007477355 0.2522967913257901 0.2289219240996161 0.15642101862081148 0.10850797640259202 0.10575675203060086 0.08888201375248173 0.08567154932277532 0.07660991484624446 0.017627229820448065 -0.0020137898807348637 -0.03804320511039094 -0.09218565049837935 -0.19802738416731103 -0.24451964304631701 -0.3165438422881621 -0.23926232309379714 -0.15756908793515123 -0.1033772554196446 -0.12044201368230034 0.03626996703551555 -0.3044894683404351 -0.43260479652008854 -1.1121552589852648 -2.180251493959835 -2.5055606633743928 -2.7035953279838205 -2.648255847035558 -2.3064907135758386 -2.212690705931733 -2.0144078634780005 -1.8893656041370157 -1.7670070382939613 -1.4565143835611494 -1.335063607327264 -0.9311664936820243 -0.6732601381088443 -0.3104382080782102 -0.11808407948432631 0.184365700847529 0.3609120338023004 0.5347631546150708 0.6133868593420502 0.657588940752909 0.6722638438693167 0.7102000840468108 0.7181393659363877 0.7619894134931684 0.8198608881498046 0.8853494238030635 0.9207148230804165 0.9789320076296804 0.9814308758256942 1.0698082370965025 1.0980983280748262 1.1513957717566186 1.2319220854571356 1.276688806283218 1.3057702958659192 1.3107864018602555 1.3006268072195084 1.215501467839367 1.176716311122398 1.000284110614757 0.9027144196641075 0.7581182456623949 0.7071802418836839 0.2862106908797415 0.5961429221716301 0.22106093887561684 0.3010765174037502 0.009176008194401673 0
39 0.37172239419040665 -0.014177176878227728 -0.016501383281799068 -0.052383841692986266 -0.1290459138062232 -0.0322733431393587 -0.02558198964268144 0.04725619378015011 0.0676341055608276 0.1468510581000686 0.20718737201729454 0.2541894626456198 0.28148337912497823 0.26398407436836635 0.23811003780515705 0.2093086093724068 0.18709674877108284 0.13133205670052917 0.07852818315289767 0.053879489405979086 0.035534580661128246 0.008503259152476515 -0.047524931311848206 -0.14058895029952367 -0.18902356876689907 -0.2342805471759064 -0.2131145493420874 -0.2646445963689743 -0.27437115022087255 -0.38075042061309716 -0.272865143972588 -0.2080282774897526 -0.11922751194278192 -0.22945446116610668 -0.9149854337468213 -1.8544094555078168 -2.3046259730857486 -2.827015942924283 -2.847938618812768 -2.5166178088295794 -2.2928282465735546 -2.0107598411441234 -1.7928878505301533 -1.5782596757140155 -1.467822981769249 -1.1445444815476016 -0.8993050207597832 -0.5931289214284732 -0.4039614671236009 -0.11020562808108281 0.0465138811622694 0.3478928040218392 0.4728512708736048 0.6438936493792866 0.7374762332059035 0.802331168150026 0.8259918182055586 0.8601457271536077 0.8886466168469482 0.9358869100232425 0.9598730935229653 1.0093586941552104 1.0667850823821396 1.179464825225196 1.2351735050657595 1.2919024506870045 1.312855842959678 1.3235114168627575 1.3147421903180572 1.26274356786179 1.2213387853992046 1.0888523952931664 1.0344813838698954 0.8633317991605765 0.7924040543778403 0.6766201498856503 0.6392319863672 0.2500295005752733 0.584543572307318 0.22988316624009286 0.34151162577725813 0.05656988329163681 0
40 0.13653035301284433 -0.10712706341877265 -0.022392303943455264 0.04475009819962139 0.08037146734520917 0.2190222141603826 0.2356524259290822 0.23435209899844978 0.207584878165612 0.14383844332145657 0.08650510767015618 0.020683208906149275 -0.01153135186374499 -0.06308428560826229 -0.11398464675929176 -0.16707821796956068 -0.19740703366311863 -0.22378638486032543 -0.2633981736811819 -0.36033185479452357 -0.3970550989376065 -0.45390691009560413 -0.3963031498070393 -0.2969052317151508 -0.24861004154070798 -0.22655417198849648 -0.05776342490021591 -0.4298984421602938 -0.5739603919899494 -1.2741722905075008 -2.2456634645083895 -2.5246454756089527 -2.6963379046520677 -2.5619521051958447 -2.210115724342547 -2.1018337696915292 -1.8906751158688024 -1.7366877085425791 -1.6127091545746204 -1.2829359459433043 -1.1521496474738768 -0.784051576176882 -0.552139412434471 -0.21068373901692183 -0.045230236728379225 0.22468788133799222 0.3974672412554128 0.5789781850898521 0.6709650226437915 0.7742780751555856 0.8207715385986774 0.9429155414639467 0.9833931107214795 1.0800660037102432 1.1464323654410364 1.2080933987116325 1.250538924544358 1.2655541170150073 1.3070971232064394 1.4055593961446746 1.4369202221187507 1.4817796943794406 1.4913830815535647 1.4437278160497087 1.4223236156679206 1.259218712205687 1.127106339248293 0.9597152956277242 0.8685240726524626 0.7225354225675531 0.6053843378379682 0.45055539192729555 0.3711056573784717 0.2574980990483198 0.2220444654516811 0.12070147750223015 0.10108966848012813 -0.22054399948234504 0.16419437180756802 -0.11017491169689464 0.03795364648645716 -0.20062111178508246 0
41 -0.047962188074997414 -0.3445824805135729 -0.29547119817099343 -0.32931192045673185 -0.3739389118488603 -0.2375578649123753 -0.19163024544859297 -0.08135571594387869 -0.024616832668925785 0.0342432879611394 0.06036877727726164 0.01617151412274609 -0.0083284159595749 -0.09858369264016176 -0.18423964250010272 -0.20566943986871422 -0.23181390106918798 -0.25054758287273415 -0.2655465137282249 -0.3256015619314141 -0.3474017627564123 -0.34455718466777085 -0.3638205735280522 -0.3796136132571135 -0.39194684379070566 -0.41126323347076266 -0.25239086706504565 -0.13189591243325083 -0.029097208786097898 0.0203874884230828 -0.09881978720098061 -0.6766056642866722 -1.0550949076699112 -1.9483264564387568 -2.6092732923790267 -2.6506011709532586 -2.6661459199101323 -2.3626083429235347 -2.014650357285525 -1.8357656642991742 -1.6226365694878275 -1.4172103608642175 -1.2642620406325165 -0.91324378464925 -0.7551644731235285 -0.4064654547169795 -0.20001340920379107 0.08950386996178139 0.23160659630586622 0.4164237674148339 0.5332532335335074 0.629361185966026 0.6638324975506862 0.723339770235853 0.7682290554576667 0.8503450926104321 0.8969544953467832 0.9775678388025 1.0566327151259074 1.1663380881000762 1.2198129038435042 1.2977795188616739 1.3242404792756943 1.4417330579236065 1.4769060280882513 1.498071122499006 1.5137888769727041 1.459492247381732 1.4371006055906008 1.3249213591251987 1.22872216096318 1.0538938375357958 0.9724583790915133 0.7942786572363829 0.7262927590922175 0.6288224446786472 0.6056162164244867 0.2514779888884604 0.6348103327492112 0.3048748091073321 0.4432479039007262 0.1515928246238616 0
42 0.657022795632578 0.2718736679894036 0.26995449625968604 0.21883309759891034 0.12544234060295878 0.1836977700619471 0.1388123996734123 0.20756349715308886 0.20282564546257476 0.2600309961797578 0.33301643756207966 0.33386505296053315 0.3537716790426373 0.311683005320333 0.2583235265881214 0.20245253173699496 0.16492524106663353 0.11641985445921677 0.07344552499282031 0.06051091583938728 0.05135893905642064 0.047602204813799176 0.041137610506275735 0.02111775540010541 0.007344769642948277 0.020253781809557836 0.003428430658956925 -0.08091936260379384 -0.11477724992775507 -0.3152639929469885 -0.18251832042147953 -0.08912304631020618 0.03185222825080558 0.08609856729119514 -0.6088195732102406 -1.6798197863399338 -2.205955235275413 -2.9277588885671757 -3.029724127973517 -2.7083017480802205 -2.4601973821848127 -2.0934670181220003 -1.8598902220982545 -1.6077210546952792 -1.4721982596699341 -1.209442329087281 -0.9813260479202803 -0.673866033844007 -0.514120057335056 -0.17025856829712183 0.012738506478186194 0.3118272518696088 0.45837783110054886 0.60222326053578 0.7006698741408997 0.7323733985973888 0.7384100715134281 0.7553513619572882 0.7578707077427609 0.8241885857691003 0.8575408573180425 0.9049371415434493 0.9607093621395393 1.0247762110305203 1.052913924651989 1.0990520416897667 1.127604727638797 1.1642276918217362 1.1828824746776618 1.1556000015571186 1.127290035271379 1.0016910414669837 0.9348368312814372 0.7469082711388211 0.656854457801586 0.4978926525124976 0.4500305031269036 0.03342629236993844 0.303585323253472 -0.031537655623949945 0.045277697269206385 -0.19093641653516613 1
43 0.17536760712652466 -0.08682654488060848 -0.012770848308043982 0.017845557061001216 0.023540133776670302 0.14785114743231276 0.15426906488151104 0.2050257817653076 0.20056558209657283 0.18953930359608506 0.1628380326469454 0.10405018586202885 0.07727844791386929 0.028295150505407207 -0.0011895669050190367 -0.030514378433053938 -0.04789955074253527 -0.07693315890282548 -0.1280295628588206 -0.19409719269633285 -0.22942856303826176 -0.23699382777919453 -0.23124655138477124 -0.24746781364633819 -0.2487027929753154 -0.31538926761191277 -0.14169263214314753 -0.03624177952006136 0.09066416631743834 0.16489211555427374 -0.306994359356878 -1.0903052193212162 -1.538308952673514 -2.3944206545740236 -2.7887433282258263 -2.70510856161662 -2.6499610204269057 -2.3655327986681165 -2.029145930923658 -1.865997211442803 -1.6922710641539354 -1.480380712934334 -1.3055272442316586 -0.9513235185234663 -0.7657402446559232 -0.36293100295068115 -0.13985687647637235 0.18382515271402156 0.337190252119413 0.5075999333390229 0.5727349294330963 0.646602412867253 0.661306827803763 0.6721807289473958 0.692550509920494 0.7310559066285336 0.7498940843665238 0.8003129210242506 0.8366413692882091 0.891282504207723 0.9182800979219721 0.9743935112953679 1.0213206178093515 1.1008968315871854 1.1391658325933847 1.1869644412234521 1.224704939737002 1.260537408738628 1.2744251292249587 1.2504768894939389 1.219108836135348 1.116608864381476 1.064735516590133 0.8996352527197544 0.8337967911995676 0.6750162728053937 0.6296051101934026 0.2125229886353921 0.5427078570430339 0.20687629334213398 0.33274691634787956 0.06832793447425445 0
44 0.29932176867174576 0.15663392532297848 0.2836979701967408 0.3605479543073642 0.421301348539302 0.5319095422957858 0.5020493020316081 0.4248412612464776 0.3568728292815564 0.2720654948200689 0.2196666559462912 0.2182085311204176 0.2093372177694448 0.21612915236728725 0.21261152409569917 0.12137964708254145 0.08674963417957571 0.02411049487130157 -0.040277069207526495 -0.18006221425051194 -0.23775782255061984 -0.324886954287507 -0.3074945545935108 -0.17391833513083554 -0.12059559560324118 -0.13882065022155388 0.12858504830283835 -0.19949996376221435 -0.26942671578964195 -0.9651218001264255 -2.3056376563473187 -2.8303874048725834 -3.0842707422549225 -3.037040386732336 -2.566893603502116 -2.2949348785891264 -1.880541569926411 -1.617235454697564 -1.5161531043021803 -1.2160025356691158 -1.1499761621515425 -0.8579627250591493 -0.6552927096343844 -0.35547083642623534 -0.21658971672965066 0.05999325442351022 0.22714519207304562 0.4151562648555398 0.5104363806200851 0.588013921438538 0.6066277491155461 0.6997465757691259 0.7233846402480495 0.7933014546217692 0.8350907941687495 0.8972601534835576 0.9301170480522103 0.9850144539809804 1.0739013458600866 1.1607736043056747 1.2155098997879676 1.2395725731071394 1.2353005865768125 1.2429302954963362 1.231306252068265 1.1096127561710887 0.9840757974171126 0.8187403424089794 0.7207577871179183 0.5625973180869153 0.46161268795299293 0.29967831964114566 0.21787577029171246 0.09331541187030723 0.08056630558608902 -0.045147422947479754 -0.043183682346587204 -0.3436429205266407 -0.08017283401161279 -0.3428069530510882 -0.28128926290670364 -0.5202856186082769 1
45 0.3289317607470963 0.13738890606500576 0.24066762850035417 0.30501574310537194 0.3313128828037222 0.42740758503129683 0.41104990588701185 0.35541892042998313 0.3094139077236875 0.21427864079046088 0.14554410606696422 0.0933461282544954 0.0579346544008601 0.03406019422009621 -0.004821929905780566 -0.07232600241562182 -0.10553282285120247 -0.13600799308118638 -0.17543277332772078 -0.2659991286834682 -0.30146691590811514 -0.3537160876942309 -0.26267633865275997 -0.14909889442475333 -0.08177339854063348 -0.06873369117071348 0.0811327518474414 -0.27319639909618587 -0.4140051224710888 -1.1360074347304412 -2.2251474042841206 -2.556398613048726 -2.7418996001321574 -2.6610599115561913 -2.3057568329065585 -2.154812907313646 -1.9380447491138106 -1.7847124740797575 -1.6416590455309468 -1.4112971557669738 -1.3245092168073924 -1.0290957470122883 -0.8094761597655733 -0.4601838935467626 -0.2786943307248464 0.04985383623120043 0.2328963833007478 0.4437749006882683 0.5495943499216125 0.6213424028467855 0.6257056351066126 0.6984667264279523 0.7075744354807654 0.7651857242948665 0.8324290086801298 0.8818863020563583 0.9241719220066926 0.9946955355386393 1.0583781284862468 1.1600038878548418 1.2067822307042277 1.2732871173048892 1.3174410161523156 1.4034854379299304 1.4368443345813446 1.4014554463043183 1.3853958967712714 1.2789563981747563 1.2292353052637353 1.0363008779215122 0.8598042332352804 0.6676720455742071 0.554746270516624 0.3698616438188509 0.2942466390372047 0.12976341311978246 0.08046000280551624 -0.2790376314893024 0.02556922197921807 -0.2743913266693099 -0.17813190030300063 -0.3934703162182345 0
46 0.5402671090641604 0.36555442378901404 0.45265615169294904 0.5400349293366205 0.5664422866488223 0.6944666702399971 0.7363674319649149 0.746413195299553 0.7326883921058283 0.6822566063841791 0.6103992392682187 0.5453548866216025 0.5005390798090232 0.4299507209574642 0.39304347965027375 0.31240724947692655 0.2763516349784041 0.24948804901870147 0.22052490785743117 0.15189486906837857 0.12554743881944574 0.09326391675563883 0.05071600297561929 -0.011811111872674475 -0.04221581510363848 -0.0941156633048692 0.049056113665372436 0.24149968114262776 0.38913647603794743 0.4439745571854914 0.27784439102174474 -0.5315796114768361 -1.0170330916864714 -2.0857952247447287 -2.986540637246408 -3.007910055840218 -2.969810785442235 -2.669446651361019 -2.2520630876405345 -2.127755537106639 -1.884701833137779 -1.730158067774422 -1.623739347908387 -1.306641616581544 -1.184304281180502 -0.7974491896507985 -0.5707679960215302 -0.17561707163284979 0.02038959641023297 0.31343323693701564 0.4348508876585413 0.5623028021679346 0.6032182304706595 0.5881024568988451 0.5980545653758114 0.5996753063532694 0.602738211682464 0.6266165866965068 0.6264813743778745 0.6837433396070907 0.7023972190399519 0.752298695422823 0.8166660830532138 0.833715181982754 0.85716924929757 0.8693461876410282 0.8675748761528439 0.8965533755062083 0.9048410775576059 0.8588432922358251 0.8368545771313975 0.7066643873139355 0.6357718760307094 0.4753091838907011 0.43247066902497977 0.22430934707402628 0.18913457006325274 -0.2107316204393328 -0.05142109384740223 -0.3020481180795187 -0.28675858613832617 -0.5011279302465255 1
47 0.10470245731449523 -0.10174988933971463 -0.010371958931152394 0.031465563179260414 0.050080294279332804 0.1622616487318851 0.18404588908274633 0.18137446708144012 0.1617936755845477 0.13309523738113427 0.09712845948394033 0.10341899428106416 0.10004892510998786 0.07607267926397299 0.05051122708103151 -0.021737924503838716 -0.055033280399726436 -0.09733666767032645 -0.12833883468785245 -0.21733714874489607 -0.25169221989527557 -0.2964616509905511 -0.31044302633455345 -0.27421034091541685 -0.2690785967688427 -0.35757731787129643 -0.12718064631934567 -0.17062836947146565 -0.05764989473512827 -0.27066410424679077 -1.3159693091505282 -2.2405427120090984 -2.7037151068251033 -3.086229758706041 -2.8781023339413148 -2.532919852170151 -2.186464786084956 -1.8747771284937649 -1.6878772660804309 -1.3817915090555566 -1.2708196875156688 -0.9349131397004271 -0.696636812181147 -0.4190170124911248 -0.27065416659308283 0.014022872934681628 0.19383929624140706 0.43575822555617805 0.5535389961616204 0.6766349057957015 0.707859616028081 0.7965625107430796 0.8158063254369665 0.8556207821652606 0.9037349865858104 0.9614257766295751 0.9956959260119049 1.0644903877986707 1.0998470539864016 1.174981136556788 1.2098770569816963 1.2229522989921477 1.2599221776318004 1.2794349112578445 1.287221514649545 1.219152200442437 1.1494151672585247 1.0138523204773264 0.9452460718289686 0.7943626755813682 0.6595213626875704 0.5262712789511284 0.44333222338673295 0.33855472208761483 0.32123790879000325 0.18743402671510978 0.16402302256636148 -0.1987254290550382 0.15780988101175097 -0.11152372233198093 0.03730257959807659 -0.18153419156337236 1
48 0.25665159163701645 -0.01723526395107911 0.04716253892247835 0.025686666977584593 -0.009764858631903907 0.10752324526244195 0.1445419087475699 0.23990574171607904 0.27321585352201794 0.3162799230128073 0.30112379654411825 0.25414910974874516 0.2262059332271349 0.14693929241935422 0.08157151431569787 0.08593384315246055 0.070062807898843 0.07168083860710794 0.06819272215562222 0.00919528121977464 -0.011135652561556244 -0.05296865755664726 -0.1137250631987996 -0.22390744355094938 -0.2841407672388385 -0.37597071032060114 -0.259752259334455 -0.21558089430778438 -0.14616487745274043 -0.12472303444327082 -0.24391194046502562 -0.7828754699175988 -1.132230222898361 -1.9604622890327867 -2.6209638126875836 -2.6051683638303507 -2.624806710904968 -2.3572496137320407 -2.0037468690365348 -1.9006257186406614 -1.743416102384895 -1.60392953866468 -1.4296214363518551 -1.0710297848200767 -0.884741539821313 -0.4508689994711901 -0.21654665356358294 0.15127060373090728 0.33071692472226744 0.538051313428312 0.6133437961759824 0.70001278443209 0.711403142427514 0.7508839349040386 0.8411789621994572 0.8841578087811754 0.9377283873694253 0.9979713475700009 1.0369124953360824 1.171627931282913 1.2111054112082016 1.3200537156544385 1.379127646409735 1.4598545200305395 1.5021889248263491 1.4555183904626432 1.4569337532634705 1.3826091377587488 1.3463574804552607 1.1849552283283202 1.0067399718326584 0.805229951622529 0.6820449042460979 0.46689259348212175 0.3558914106926423 0.18082970297363232 0.13007870776924335 -0.23053435286903579 0.12995975706576957 -0.13663105385457186 0.006756942369072759 -0.20484039863665515 0
49 0.09176875158412656 -0.13642145970364083 -0.050274047696689195 0.004903118241010416 0.031459841499852814 0.1762406149477158 0.20617523704419227 0.2421974248893335 0.23138555879612 0.19947153676563545 0.16605211076890924 0.12074935892464111 0.09947615488718498 0.053862023226734834 0.02441735757216179 -0.017209666964255636 -0.03979855612443828 -0.04250250135606137 -0.05858553988878157 -0.09419305654738253 -0.10788383080568309 -0.1407419299384216 -0.20131855439076674 -0.285189641416558 -0.3301036202021308 -0.46446642001284033 -0.265078841721909 -0.1567048132035822 -0.012563362144263126 0.1033322656668858 -0.49132488657517825 -1.516003136073497 -2.033957336308662 -2.8485750803616083 -3.0596627590098415 -2.72166473033667 -2.49303861742035 -2.0862533355236135 -1.7829124036240245 -1.5485567816335468 -1.3856714099759522 -1.1175309273592156 -0.9309391322108276 -0.5735923976617343 -0.4152413063641518 -0.07389073116308964 0.13491683941990118 0.37887931170624967 0.507783629362109 0.6176835394361362 0.6638954360241698 0.7098209475008019 0.711752466012399 0.7235665294250069 0.7326179251068083 0.800548714444048 0.8356975933269766 0.9137440107158312 0.9767354850192049 1.056594470216183 1.0948222149024431 1.1459086812047303 1.1806799292467574 1.227853971398332 1.2491934264605078 1.2048976901919772 1.1654858590093653 1.047514767278365 0.9852990322462531 0.8428879374962008 0.7333216916739431 0.604571859362089 0.5320552945501689 0.42241075206233347 0.38558391540787085 0.25504289630041654 0.22772609310342773 -0.14392017227883258 0.20938208778164125 -0.07490617868742788 0.06857968836818884 -0.15216451002314102 1
50 0.24804708923105068 0.0018037748482200282 0.06166609279767954 0.05618382050213455 0.027152320328994506 0.15220655002558203 0.20069868642805488 0.2932489588331322 0.33389817847289294 0.4027838859891588 0.4136472471970407 0.384680492343513 0.3675389431203868 0.27277919904091164 0.20946008330619748 0.15035031676934807 0.11203945716116692 0.07233672375183176 0.022930624349250195 -0.01575184327940349 -0.0383085103502907 -0.05751528469853895 -0.10002706155598418 -0.19862153540263705 -0.2474696204924669 -0.3062674049310914 -0.20224516531377645 -0.11315650895029705 -0.04027646692548359 -0.05444424856176511 -0.021260314843814857 -0.5590668604919671 -0.8631830046660305 -1.73039401176473 -2.6633748955159806 -2.8175854483391003 -2.894349230832333 -2.65046979818265 -2.2491137124764276 -2.1192730720996167 -1.8874902484259195 -1.7298269632213348 -1.5957975265213733 -1.208272245648427 -1.0425700008761645 -0.6117072144649498 -0.3809274915337113 0.007492629884481515 0.1879869216304968 0.43841007339108984 0.5912677501753336 0.68228581706326 0.7247822357286111 0.7516521456497642 0.7580959612268074 0.8433631380280531 0.8698900483257717 0.9379915846221749 1.003818301642525 1.0666324038842632 1.1039672654419164 1.1568382934373318 1.1877118732386975 1.2602019376407299 1.2863129721878224 1.2796393860114108 1.2751084182026347 1.2273468499182059 1.2032019651001775 1.0774397528621549 0.959910133868604 0.7888770907345872 0.6958055432213754 0.5278007741990862 0.4620228420242114 0.30679277627296386 0.26568130516527333 -0.09295175325695482 0.24722738337065664 -0.028778902726422476 0.11186359080463859 -0.12504826674643965 0

@ -1,50 +1,50 @@
0.19866297312303516,-0.04526607250993209,0.024205354293059145,0.019981550326164665,-0.007430112292581727,0.08764281844920419,0.10668998805608254,0.16564255897973368,0.18188761138199538,0.21522030876454323,0.21832386813163396,0.18367157079308072,0.16696998860229684,0.10489850011946089,0.0599444695780349,0.038791420808138355,0.020524808728865196,0.004171646699901997,-0.018093515862219082,-0.05597223810461571,-0.07444693862971263,-0.09228111220217983,-0.12837707959757694,-0.19826137074097971,-0.22342019737823904,-0.2816422001838461,-0.21912020473291705,-0.15982523646787428,-0.12388315213443946,-0.16022183919312738,-0.0011516231363160063,-0.30729489809628774,-0.3986631919921635,-1.0251578764452631,-2.12961636276345,-2.5343375488138946,-2.7606653158118606,-2.770891650831487,-2.4182438454958852,-2.2905660752204025,-2.069735675211682,-1.8850001133195278,-1.756644022893223,-1.4593538422524261,-1.3459492529707333,-1.0108973433743742,-0.7602688134371505,-0.4105721148265289,-0.22134473345838757,0.1015748066656883,0.2855828118500128,0.48761049347601926,0.5861013748112924,0.6651072274944951,0.6885618970913541,0.7580432615480532,0.7729006561234613,0.8162140703800134,0.853307717979483,0.9107124240528677,0.9393262416292529,1.003030516730405,1.0546277182050758,1.123435129055764,1.1586604977581416,1.1965774649102627,1.2251352702566578,1.266083522930721,1.2790066887253388,1.2708523921464447,1.2551111486730733,1.1595967451938378,1.116463112127093,0.9613095361952944,0.8992955656475559,0.765675078454727,0.7258229790987514,0.2994937201949952,0.6060959340716607,0.24273014335628318,0.33518405063449563,0.05018238108560524,0
0.1636116639310572,-0.10539309341724845,-0.044509003982000195,-0.06596469947845662,-0.10937959825923826,0.01351665487761977,0.05848815159829002,0.14352344981301712,0.18451356108906225,0.24590326629932946,0.2698701767736793,0.2661881255043781,0.2604980659040308,0.19680342731556522,0.13637586766883913,0.09782289067941008,0.06982008823555219,0.023468462213564578,-0.015438656617092763,-0.06033336237729259,-0.0839916033046535,-0.10182246432588471,-0.1427409040388241,-0.2183405506283762,-0.24628312486794357,-0.3002861419629994,-0.2624510851687134,-0.24943396337540236,-0.23817159031409574,-0.2908363367098161,-0.0991058711713606,-0.29298015964153734,-0.30161236702147676,-0.7914993959194483,-1.8842353656955488,-2.493136488252322,-2.8045023390194634,-2.8919321036023296,-2.535375581914842,-2.312969160370349,-2.017965769361208,-1.7704570604062333,-1.6489690932561984,-1.3023378596734538,-1.1835161951273605,-0.8148829962352444,-0.5584398848853027,-0.22255893405688454,-0.047119294355951524,0.2258042111045171,0.39445914359212253,0.5733778655138977,0.6563452283343096,0.73834412162973,0.7800699204211838,0.8581389233866474,0.8830432858607793,0.9382069004525135,0.9858067560084223,1.0477225545831672,1.078216997838524,1.1292835888333954,1.1627120490607652,1.226678316850581,1.2535343742847473,1.2658676048183395,1.2805247406144815,1.2895496358863952,1.2891936871990382,1.229752063256548,1.1641635487841668,1.031544957769711,0.962344557886027,0.7805634905553447,0.6869125477168581,0.5461899506740906,0.4984627124661074,0.10966315336088428,0.44251914262881087,0.09724319421311378,0.20522875081376668,-0.06297587484053935,1
0.19657064530598234,-0.054464726151223886,0.027940105241114566,0.0435798641902565,0.03754379355626014,0.14180453686256556,0.14390379092311179,0.16418654214101025,0.15581542402667026,0.13036479173962334,0.08926717311891963,0.034930491772094285,0.00416170904619406,-0.04637457260989919,-0.07843404575374535,-0.111812516571554,-0.12927387755946285,-0.15745977374436393,-0.20760908918789056,-0.25175214695854464,-0.2839570712157524,-0.2688777357075338,-0.2435873104438997,-0.27354542154004946,-0.27037621343028206,-0.36316860321660727,-0.2082457013072414,-0.1172273332782936,-0.004043179224304085,0.05074220224448567,-0.4511912203641444,-1.2120265707628768,-1.6380659814334848,-2.4221290163841562,-2.7370638399670435,-2.623953089037033,-2.5635987819437753,-2.2935086747115268,-1.9872185182183415,-1.816190293340668,-1.6467617295689507,-1.4077406803036183,-1.2231210577047236,-0.869163966493101,-0.684536213086627,-0.3207676462550566,-0.11390062841430648,0.14885364589272854,0.27468903539896417,0.41441997505808814,0.47130430944640267,0.5732884266305263,0.603971083024291,0.6547431581001817,0.6993153418264058,0.7463162278906452,0.7723074083111996,0.8218264355968259,0.8655801180267417,0.9352174735325534,0.967921990744351,1.0403009341094673,1.0961683152683364,1.172669879217139,1.2129607410413712,1.2465105611003864,1.276203065815615,1.3135653312062203,1.323874291793608,1.2969101247327401,1.2600332986687164,1.1495958518713962,1.0950525877838544,0.9300378479635683,0.8559610715195021,0.7165692166505337,0.6753794488772655,0.2581591035904083,0.5971189202221581,0.24643929731751513,0.36237347117941,0.08910877294163555,0
0.16918186940486635,-0.0378254801518807,0.055688142380823535,0.10366412307252659,0.12366139260208797,0.21765142023073025,0.2058686754843535,0.20712864951811127,0.18515860515701377,0.14642494355471314,0.11381408120058722,0.08264568433921937,0.06172120160460537,0.03305709347763752,0.007461010077228989,-0.06326737934930549,-0.09473119555271836,-0.1253244130631117,-0.15845685166639356,-0.25986458493545683,-0.2952266716615739,-0.3673830718118367,-0.3198663311778489,-0.2290373808513948,-0.18459589232848117,-0.21320368708443738,-0.040961562749288305,-0.4690100357445175,-0.6803277673118266,-1.481006785117934,-2.6123171505386145,-2.889855830365983,-3.0260730754081115,-2.7867069373535083,-2.3088194370947317,-2.105588094805979,-1.7263066246805536,-1.49763624403408,-1.4122452982730174,-1.0511169853470328,-0.9614076773383395,-0.6341220441147328,-0.427233946402481,-0.15654520846221232,-0.02494236611311607,0.20621980591536726,0.3560184922036953,0.5157647698536678,0.5972691895918629,0.6604187629314993,0.6762223425963114,0.7447545105533919,0.7589445766252609,0.8212018691183331,0.8828071912999604,0.9901615563196486,1.0508755010777762,1.1498780210084973,1.2198830697015026,1.3146307681401197,1.358784666987546,1.3651426573734753,1.3652646194871636,1.369193004112013,1.363819142584191,1.264526623849811,1.1802044275738837,1.0580824080031803,0.9903091154201604,0.8536594506925397,0.7177804058388162,0.5436124846714776,0.44516797905350813,0.31545810916526307,0.30873212445111875,0.18029066054523213,0.16767586315658178,-0.18535055172824144,0.1575701727586747,-0.12130839640101954,0.009079944208558286,-0.21604675946797158,1
0.23230765260380792,0.022521975983138987,0.10963424382282483,0.173804986366207,0.19829859248707749,0.3237858629725139,0.33594985225204965,0.3450777377533001,0.3309382633730351,0.2830845459360418,0.24422018913043075,0.20474481719229232,0.1773370694068248,0.13534144826014938,0.0959997829355359,0.014200244996317222,-0.023424916506016306,-0.06144758415666729,-0.10258856708446018,-0.2028474473566817,-0.2376436901034893,-0.3027181568522508,-0.275607635254957,-0.20379694499732182,-0.1700146440697452,-0.23358942853167264,-0.009283635279622617,-0.33296235191878054,-0.42731314649112306,-1.0911175472265846,-2.3340585930994635,-2.7824306595636257,-3.0076883784058013,-2.909510401413131,-2.442376007105757,-2.2307357535044723,-1.8544102083603704,-1.6224876552527192,-1.5253738918085489,-1.1799890809135967,-1.0946892303115234,-0.7630129609951375,-0.5371401804379587,-0.23196928983625753,-0.07998763228341943,0.19350051259227286,0.35876399489627886,0.5413590464079476,0.634967227221388,0.7035758849979175,0.7179264592342207,0.7840323339814574,0.7954007086823154,0.8567000715861468,0.9171884617192063,1.0232391872570261,1.082396534075265,1.172615974974299,1.227127318113567,1.3123363746976722,1.3463345937376303,1.3427748057230389,1.3477135184748619,1.332553477172894,1.3244500734266254,1.212586723892727,1.1146905960748228,0.986924290339033,0.9153560186036671,0.7723465566439884,0.6298273522672346,0.45660260477908565,0.3593033384657005,0.2311091113384265,0.22414281608916298,0.09658911591451869,0.08206418102679436,-0.26106704103411715,0.05450345360242892,-0.23615605345751334,-0.13810634371866826,-0.3672108191475658,1
0.5619143302502607,0.16991424436903912,0.16201892906859428,0.0952815615993714,-0.005679880675899087,0.03926632019896914,0.011194255320177147,0.08324977322825333,0.08369817220919629,0.11943427608395751,0.164099211244789,0.16387516232482824,0.17244111868004808,0.14707058990470756,0.11166634343558712,0.08161246949461542,0.061048753703701664,0.02571166168236516,7.221397486745047e-05,-0.01631317014339118,-0.027459001629395633,-0.0340931383319969,-0.04693379148673671,-0.07290539774089666,-0.08540817066956663,-0.08684642018802435,-0.09678166476778927,-0.15743598360366917,-0.18254482083136736,-0.33431176483590974,-0.19813850520422704,-0.1384689175084972,-0.03735720586352187,-0.0006911785145149469,-0.615891568958034,-1.5720460824478728,-2.0480239345617353,-2.7478304972644114,-2.894997606272834,-2.576956418947094,-2.3688649240704898,-2.002903824746978,-1.7352033844478392,-1.5113318365487238,-1.3640068731811184,-1.0973463481143106,-0.8818710636048266,-0.5613690836009724,-0.39789106641315897,-0.07011171248488068,0.12870460128835504,0.38421402490128287,0.5122628009151953,0.646090774271805,0.696580379069573,0.773915802506778,0.7919710135889915,0.8246457178396653,0.8558996387511257,0.9197758653755272,0.9509520919034529,1.0123860648438736,1.0598904586959819,1.1162321369636388,1.143879291861161,1.160154458365568,1.1746486768691042,1.1947055723209132,1.1993675364740213,1.1649742204139173,1.1344065998903474,1.0154619192369907,0.9582881883270602,0.7849303365074292,0.6977789203349545,0.5333363484554283,0.4792017327339977,0.056253082937068655,0.3420253723598563,0.0025984860038334983,0.0871621973789658,-0.16145591509904023,1
0.2637479798075475,0.06401017450866675,0.15490718270596915,0.23302436823486516,0.26831839709013394,0.40225749148365963,0.4129868449369951,0.42538361622611376,0.4087461770728993,0.36291070676168147,0.326715362829205,0.2959375458726612,0.2731161758439171,0.23415334592429105,0.1958298383932089,0.09189763994130828,0.04415745266940263,-0.0029982198798634858,-0.0509178872005549,-0.17842460937585258,-0.2261903936345817,-0.3134764198436457,-0.2533503023593937,-0.13105422327829075,-0.0679434971304218,-0.07519888776027983,0.0841354289723455,-0.4363844174803404,-0.7165410291350796,-1.6167531773517076,-2.7714297521941953,-2.9622773851856348,-3.046630429594947,-2.7573253983855572,-2.2652452347136016,-2.038720709700744,-1.6665849395881125,-1.450905180325062,-1.3488234934499879,-1.01659538321179,-0.9262479573786386,-0.6103078121382595,-0.4104844827892862,-0.1290802438826688,0.005614112192660057,0.2499780054606049,0.3921298177911865,0.5565169797227654,0.6375531251726017,0.6920551329402045,0.7069417381946934,0.7634987322926889,0.7741618347213048,0.8294266326962472,0.8744411925829851,0.9950496773798676,1.0540139928033554,1.1557987546312773,1.2241348797833922,1.3133021339534707,1.3549448178230037,1.340693017841737,1.3330575872428057,1.2987832218861755,1.2806138783568315,1.1409552125428561,1.0192987569913186,0.8693308294489341,0.7804574889157934,0.6353189599344446,0.4895501427951956,0.3330185455492298,0.24538078662710916,0.14369630475933093,0.1645066550468144,0.028076823264854056,0.017002362200933874,-0.3287514970158085,-0.05314663190032576,-0.3534116341215423,-0.30130731116674525,-0.5364249705120088,0
0.29119999532316854,0.06574685477938402,0.13350960742665308,0.16835915213425778,0.15666223257899503,0.2803833109736118,0.3279699163245766,0.39492741788048136,0.42100111094091375,0.4509345284733044,0.4438173615722931,0.40042866206037786,0.37619192923080647,0.2859285217426404,0.21428014649556815,0.1530304718602764,0.11062921375770429,0.08755036815561823,0.07033052226691439,0.015029587369397744,-0.003934768456581141,-0.026111997840438054,-0.04789593705027784,-0.12311494138871382,-0.14715894396455553,-0.18803341708836285,-0.14448661854018496,-0.020879672592698743,0.03599592870599366,-0.03229863898516072,0.17611052202644828,-0.16945753318005785,-0.2728040123452331,-0.9746723370512846,-2.2815015046189124,-2.8123225572776835,-3.0638876922555665,-2.995273839796417,-2.517850604886151,-2.3223419488072956,-1.9259004092859247,-1.6962803051430448,-1.625572995588012,-1.247407328232324,-1.1629871105539138,-0.7927750292863216,-0.5566384592949731,-0.24302779042604072,-0.08478721788333132,0.17730394389446502,0.3419979685269041,0.481160655078547,0.5564218191599863,0.5998912244656509,0.5944938739381556,0.6794511766283264,0.6983640373396369,0.7676713422859365,0.8202005752220032,0.8995304556442889,0.9456541179130369,1.0105069448700092,1.0742720504574947,1.130131601949806,1.1578167006160314,1.163189658720789,1.160936822739302,1.165627395289448,1.162866233263749,1.1048387675580003,1.0595317997394318,0.9179967242207852,0.8490580158847436,0.6729652013082799,0.5944851408485334,0.41711759632826073,0.3624065966917698,-0.059939168780211105,0.20675553579253148,-0.12478025123734682,-0.05549191817539878,-0.288745815738892,1
0.2861173371630912,0.034232145743345654,0.10125198349069109,0.06529996150354833,0.010578120790285082,0.06119751736829926,0.05566435224012878,0.10960864683600136,0.12286397117728143,0.17453163965097218,0.18600993082466033,0.15907286645572327,0.1471829155057094,0.0940357411936219,0.07289293121845475,0.08216415984591663,0.08109239895056675,0.07103037400077028,0.04397285322325217,-0.02534077568449789,-0.05434908799898608,-0.12492449778662262,-0.21069066526041524,-0.29048460399675946,-0.33321139554352186,-0.3891772498164059,-0.33774718160864126,-0.3332047704410499,-0.31920502549473895,-0.35553166691256877,-0.1985646197495825,-0.44279570982706673,-0.5036788958392506,-1.039808989420976,-2.038501328466616,-2.4358738454558075,-2.6671191700488395,-2.6976696255341865,-2.3858152487449935,-2.2555230474065144,-2.0601047336340947,-1.8714724069243438,-1.7294720685275529,-1.437209738380929,-1.3170358000780027,-0.9833879604941664,-0.7303477426866394,-0.3951437568744467,-0.20433177145142167,0.08813126918600034,0.2488535448865008,0.4384648810569942,0.5152302445405894,0.5961052795439485,0.6440616860692572,0.7175536466496624,0.7435418156600022,0.8039657616144709,0.862771978001696,0.9331079806772777,0.9693740927497956,1.0410727585474504,1.0824811547022932,1.1655554225853209,1.2028625791690004,1.2417582546408426,1.2805473261910905,1.3308646783245877,1.349771516215469,1.3382938273238238,1.3041956294647434,1.1975082918075728,1.1471391434183857,0.9797273210673367,0.9064202610741035,0.7948601605488079,0.7605198453084796,0.35903231154639315,0.7075870834036664,0.33819034145165716,0.44558355366311275,0.14177291705531303,0
0.5314930642631168,0.3081325526774066,0.3789841087817152,0.42448350571299187,0.4122764532673884,0.5269280675189165,0.5613391508992862,0.6206904325353406,0.6340373037471423,0.6436027471525634,0.6163696611595384,0.5422522306775761,0.5033969081026086,0.4050544892909116,0.3317176163365545,0.2712620505748333,0.23055531299997511,0.21003947863147232,0.19436870215712077,0.13179310360437313,0.11224754560699068,0.08275590195307103,0.028021714457928226,-0.05377541435311883,-0.09808169055740024,-0.1635096968653471,-0.042803642377513995,0.08501566417805151,0.18754243748283272,0.18638033428104706,0.15490447243677608,-0.4707750232712513,-0.8362585882199944,-1.7718819091492364,-2.7680287784257924,-2.9116403530365518,-2.9593523648016378,-2.695115535603364,-2.254792404003215,-2.131014711096565,-1.8465358223609165,-1.6680251465232097,-1.577782969477056,-1.2240386343970897,-1.1102982728764772,-0.7627359112554011,-0.5475894727413433,-0.21998779201572205,-0.062018848674362914,0.2019565524746625,0.36624403672814054,0.5023016582075854,0.577907628758588,0.6140728585889192,0.6041565858935058,0.6813712517811084,0.6978114435652714,0.7621152904401356,0.8138666761177902,0.8918754508789632,0.9348317118840725,0.9999143094404133,1.0538808884718733,1.1122646040060005,1.1372782806709196,1.1250802624559597,1.1242768182107241,1.1141370988773929,1.1082750877537961,1.012929925528617,0.9220732702281893,0.7506785567274079,0.6587715215441534,0.45721542675774174,0.3614854063071462,0.17602168542511976,0.11653940744473346,-0.28168255308072077,-0.07238623061991234,-0.39945278375041227,-0.41870894522617874,-0.6615091637402308,1
0.14925928284862522,-0.1060417511774574,-0.0391754953510528,-0.0554021781510059,-0.09140840552201013,0.0045959543991287415,0.02473174879855833,0.0928350919410903,0.11725702649885505,0.16659506803058832,0.184140146222461,0.1670172677426649,0.1590358261100846,0.10833180890504224,0.06704055660754449,0.057248655153991024,0.04322572234902822,0.02542557771198517,0.00448784477242725,-0.029398048666529068,-0.04648960848009409,-0.06907217367882623,-0.1117833058924731,-0.17394182413050885,-0.19859292700559905,-0.23625844140480723,-0.1986618882995117,-0.1969547198488968,-0.1896475329633489,-0.25707541679476265,-0.06701056224596158,-0.12984785234635154,-0.05002048695662609,-0.32607977387348086,-1.3529962540137461,-2.0982639687379745,-2.4890130395308265,-2.8552805122010385,-2.669020612100919,-2.468674125512427,-2.247465718236528,-2.0092365192871053,-1.849499200582521,-1.6275129460482098,-1.5308459253093645,-1.252650193415814,-1.0071735840736018,-0.6771465135612011,-0.48152937142936736,-0.11808739203556229,0.08533336795568403,0.35910006827622,0.48983140850923235,0.6136527668639928,0.6558694255204145,0.7193809703678369,0.729343618780554,0.7456193875670039,0.7640657808360842,0.8031852040868657,0.8198708258035126,0.8750208890492814,0.918071106053084,0.9892370533837891,1.026658944696642,1.0889541809584173,1.139148065273119,1.1963031254397194,1.2220551998892404,1.2485878318663666,1.261196004152545,1.225184657384176,1.2070195298291324,1.1091607434978883,1.1027069902671371,0.9981210146576629,0.9834409921438905,0.530611624493325,0.8464953057921818,0.46776469788024855,0.5668232300409599,0.25517509720883425,0
0.2632059259689328,-0.03821726462079056,0.02382802459317901,0.015168413380287403,-0.010786328976671202,0.13515142827561277,0.1618039143792771,0.21579609039756065,0.23379378354467661,0.22500919880788217,0.1991679866160112,0.13385862987051667,0.0983414555183515,0.021821220826218735,-0.05307676718334875,-0.05583401437576896,-0.07476313670223789,-0.07288371558735207,-0.08362872837380309,-0.13787205600397812,-0.15725138415751871,-0.1783577560690901,-0.21010464483266844,-0.25601780952742104,-0.28282929809041235,-0.34991990397779915,-0.22819539055541327,-0.1682228549921021,-0.0990360064543836,-0.06705001171977187,-0.21227978643062073,-0.7958561536473141,-1.1602974695208097,-2.0084958629448426,-2.663086778843706,-2.6849812744510464,-2.7075329726950796,-2.4511313811634707,-2.0955832866502586,-1.9592475614375022,-1.7675152137676626,-1.573325028365982,-1.4046545871157718,-1.0460412534304488,-0.8725944144389786,-0.48046845161078977,-0.25742052440534735,0.0556953697653384,0.20967449571347174,0.4089997378129624,0.5186629510441279,0.6744630767489852,0.7320310012559972,0.8199717080456992,0.8896090635515108,0.9488712074452152,0.9808734637949854,1.0290921641499793,1.0807053260987871,1.1528840106846374,1.185569857153105,1.2390850257934076,1.266509336335055,1.317165170976665,1.336646585936478,1.3158166614826001,1.3198347861318425,1.319694153274824,1.315763961803846,1.232357535374156,1.1156810488943805,0.9482875961456401,0.8528391425501027,0.655040083147334,0.5532456848067255,0.4156781422457172,0.371608864025319,0.014326121943284418,0.3828447366767378,0.05766995144300324,0.18465509736914498,-0.07844819938175362,0
0.056161234925525605,-0.16534906622437973,-0.09230460120185313,-0.06991657310297938,-0.0762459550918706,0.029427139605047614,0.051590516501917705,0.10496053516988013,0.11959508538941321,0.15465874136327074,0.1749237252609035,0.1561590259321477,0.15026900869355586,0.09151940681836379,0.042484614295233314,-0.012226987623300547,-0.045396767713242525,-0.07666152970147522,-0.09520338467435607,-0.13689485338936436,-0.15212867424158816,-0.1663383144798516,-0.18364579240579815,-0.2395568390127778,-0.2561554309742249,-0.2725585824127492,-0.24325786216643053,-0.1599661704659141,-0.1253054411787602,-0.19714865466671228,0.04786479978450586,-0.14583542917527126,-0.12559604226446197,-0.6047222484723562,-1.8626772822517985,-2.555553648985158,-2.8973336136401837,-3.0078396453051397,-2.5830344611109552,-2.33418951415854,-1.9549395132698564,-1.6870566567969725,-1.5846596752724373,-1.2242021539717385,-1.1394625762400779,-0.783289087110564,-0.555234539852961,-0.26186657044607387,-0.1107223860738955,0.13482348570325087,0.2958953861296578,0.4488479223356592,0.5267037174579343,0.5902968715221704,0.5986128808295845,0.672789636092773,0.6943224236907213,0.7533340182545771,0.7978703661992483,0.8832164419481146,0.9277856142641241,1.011077607105662,1.090195484248845,1.1743354902067935,1.221927214955123,1.2641911527519127,1.2885694218615669,1.319440592534761,1.328415799538135,1.2969161475531692,1.2624391142891014,1.1604766792585224,1.103884451661017,0.9628772763529767,0.9306696418265759,0.7672458300226239,0.7314615435844303,0.28066276984151983,0.5877326557245013,0.2454536627543007,0.3643140239216507,0.10757745064630342,0
0.6211123311063957,0.21651792542598258,0.20484268802426442,0.13964776486692188,0.03595045641175432,0.08570437369411366,0.06617748644006127,0.13933969760197584,0.14210537674299673,0.16889578543448636,0.19469604244743977,0.16432115217759957,0.15651587804256906,0.09915001916095179,0.04150470141142648,0.021398418832099253,2.5235975520841408e-05,-0.008073048373383076,-0.01566541580624659,-0.02557867709144546,-0.028399766180413625,-0.03617522735432033,-0.051281364413448216,-0.07610893592710966,-0.09057966543097251,-0.09561203304046728,-0.11501816274491716,-0.1885047027869362,-0.2195038583942477,-0.3558081143702623,-0.24453741036658272,-0.19251379320553497,-0.11501695818083135,-0.06442948255109116,-0.48350606109418237,-1.264719473844103,-1.699597072353324,-2.492500478415014,-2.8358777326904523,-2.6414286789382055,-2.5531812976607817,-2.2401577784984266,-1.926176405032086,-1.7643904239585595,-1.5946879724278311,-1.3900200368962388,-1.2010252869671696,-0.872043476940231,-0.7093244856969889,-0.34502515781510823,-0.1364642217286871,0.16113357446552357,0.3090528396389658,0.47978474175152996,0.5615354948452733,0.6379732168975281,0.658843795389302,0.6592286536147185,0.6575705711506004,0.6962461125357606,0.7066725181215148,0.7649752267208711,0.8131183406794804,0.874403851096325,0.9102477634567663,0.9663750293171489,1.0087925490348795,1.0731090438326447,1.1002755776599287,1.1398584569427257,1.162837022584668,1.1303782364463757,1.115505784819895,1.026941716115786,1.0339339094928945,0.9519061066594148,0.9474296453755215,0.5085958066969667,0.8292248682118739,0.4511582762522437,0.5545857623521897,0.24178907766424373,1
-0.055568407994847746,-0.3078863390624207,-0.23701671449682493,-0.24059848580598242,-0.25000342104696927,-0.144950375713222,-0.1274841964689699,-0.08648595438534556,-0.0768370949169821,-0.06899568385937727,-0.08610591441627236,-0.12613779496205524,-0.1477573111741819,-0.19266436371626128,-0.2181689002461482,-0.23047803949802415,-0.23847273133554836,-0.23968121025463773,-0.25283715805883844,-0.2906255379947993,-0.3097226970112388,-0.30784719072963185,-0.33025840668715745,-0.3671587217508545,-0.38434122615289823,-0.41148005500620854,-0.2486690651809127,-0.09198840312932788,0.02778441533302356,0.09447028768757804,0.06863931429043646,-0.44584145011803855,-0.761287422942214,-1.6178265945226755,-2.4410204960829436,-2.518159500288906,-2.5799215663721995,-2.382255686586168,-2.0406280616453696,-1.9756580908310521,-1.8386438196117076,-1.7001821893580065,-1.5411313968970788,-1.235574594076386,-1.0726579037525603,-0.6862156765632683,-0.46623652693693884,-0.0903369457676817,0.08863116328161169,0.34050220107334894,0.4867775374106813,0.6080924990438916,0.6599065220540083,0.70042323964433,0.715013220992688,0.7979685381722419,0.8265441108389027,0.8975302769798006,0.950172437798912,1.0243880402538679,1.0641296208549704,1.1244081156960775,1.1726051338975267,1.2304257157215375,1.2582634928856393,1.287166405842619,1.3080830589106753,1.341613907085339,1.3528109325449904,1.3443196591630908,1.3298606741590646,1.24237137776052,1.1992347332835607,1.0647599090128708,1.0323423791945174,0.8930282187090839,0.8626156858115621,0.42017538226009066,0.7499537102887714,0.387194116449578,0.5083949456356578,0.21780078617737075,1
0.4369832672314473,0.2183274818238914,0.29404035743750967,0.37352562662686495,0.3945019056171688,0.538083234376586,0.5651314197824391,0.5831053227888603,0.5751564043865969,0.518334406189723,0.4614425432758722,0.4113477343572285,0.37709715914129305,0.3372971571820287,0.3127210384212802,0.24746829618781874,0.2194326693726225,0.17410612738765963,0.13169131793912214,0.0630519437784045,0.029338604144740543,0.01289088383504122,-0.02056347452017349,-0.09141894545776097,-0.12062299943619337,-0.23559081176024677,-0.08147888262165282,0.04685417051651086,0.18204932411051544,0.26506908546866015,-0.1919250625085951,-1.053283393855363,-1.5538704149570783,-2.4849913011893268,-2.979894530188204,-2.8473977318956116,-2.757622022291688,-2.4604419839794875,-2.081447576532762,-1.946898370429773,-1.7700824409755462,-1.5856070649259273,-1.4250287346336812,-1.1038515964597302,-0.9533646523668722,-0.5631509350249075,-0.3456316558323138,-0.01140969089107813,0.15485930128355818,0.3531805392175258,0.43562783149388906,0.5044123556269469,0.5159912279018002,0.5104047608128326,0.4994326876962063,0.5605594967947454,0.5828228525107377,0.6435720307683752,0.6794942397943942,0.7400883304259835,0.7722568166195956,0.8279546553833868,0.8839882663860976,0.9246928959738057,0.9502561550028759,0.9659654775279733,0.9755791034968269,0.9921427630997854,0.9961352907622043,0.9691289639583331,0.957571472696003,0.864577619566326,0.8185954935776607,0.6851294917288371,0.6398764281531086,0.46129799558557494,0.4153514042374411,-0.03261543933972888,0.2084175330899285,-0.12400661995323503,-0.0654913057927331,-0.2951929438671712,0
0.13788097049405934,-0.09347061923691768,-0.012403757402893236,0.01767932721715937,0.02028871416804634,0.12271249724349076,0.12537458387313194,0.14368787281073025,0.136252700991065,0.1095562482982686,0.07442272760743407,0.043131164068292094,0.019846940289575343,-0.003453846245321303,-0.016227947234320087,-0.05922968053366873,-0.07537625982191543,-0.10273010336454291,-0.12133820936214335,-0.16239186139371498,-0.18182930976439593,-0.18359851326543009,-0.21185517759037253,-0.26002900793316996,-0.2820454280115712,-0.3684244174640199,-0.23218641251272487,-0.12552497298339915,-0.018561489009556457,0.04736761595808758,-0.2885515797800551,-1.057791324375998,-1.5065193018848895,-2.365565623039455,-2.8386604262991852,-2.685385518629719,-2.6180064196437804,-2.321609799698889,-1.9682908263117245,-1.8338449868643494,-1.6609305651988073,-1.4671890799190912,-1.3005837132234923,-0.9785350729334574,-0.826231194487665,-0.45394816641554314,-0.2423484162816436,0.0840965817805781,0.247797142183245,0.44774032565875643,0.5442370511499703,0.634808224762061,0.6610029765131173,0.6722749860871104,0.6773796275417538,0.735067406175304,0.7586904136031549,0.8212885977325115,0.8678431928029582,0.9474444012855727,0.987915646581655,1.0623477694310353,1.1262592295549467,1.183670259589782,1.2147958944261035,1.2258339174264279,1.2316965308320675,1.2460227126456331,1.247580214008586,1.2130962545010249,1.1768677850561886,1.0646159636046164,1.006621322270206,0.8576206596887275,0.8109582561326008,0.6563783538466694,0.6177747851656363,0.190887210808107,0.5022197478497503,0.1626543366238593,0.2754635701061403,0.016491627028550226,1
-0.16312483863993066,-0.41441346969617854,-0.3439627322914234,-0.32216825314583275,-0.3079625277408482,-0.16904587340373212,-0.1367497034170242,-0.1024009562280952,-0.09409127088213154,-0.0989610223400419,-0.12140084669460549,-0.1409707971147256,-0.15538310526042665,-0.1888994986660606,-0.20984445899013338,-0.25347136105001766,-0.2747129452802213,-0.2984645399242325,-0.3144090535870845,-0.35516638285354674,-0.3749140064763239,-0.36585869596124354,-0.3904598094267726,-0.4259134430234113,-0.4394557547581357,-0.4928308928234628,-0.3204899942332773,-0.15659971498709524,-0.017201837297697867,0.09291941142709703,-0.14818101659136573,-0.869031916155194,-1.312005540455658,-2.201668718690801,-2.71349364514583,-2.544938992618368,-2.494009044361981,-2.189181981521523,-1.8328438435385301,-1.6970263820236937,-1.5207927840197009,-1.3079640773772532,-1.140989662359864,-0.8337174097104665,-0.6849535945423604,-0.3602348873856158,-0.1769116768840746,0.1393875790243868,0.28392533166793754,0.4800985306958836,0.582391919709039,0.6629402167041221,0.6949852350789385,0.7139065277388497,0.7220674494202157,0.8099289561212757,0.8448257799692485,0.9309548223738915,0.9843257444649183,1.0701178100665558,1.1141991339278121,1.1798219784766388,1.2445745254734675,1.3020936651350041,1.3335300775054648,1.3508378565724328,1.3593197945826674,1.3721252142378972,1.3734348765401947,1.3349156273451683,1.2933717177306718,1.1820992068808636,1.1220269936394516,0.9835051351814599,0.9620117970573219,0.807168095236598,0.7753793478710378,0.3398008436343858,0.6701188163735097,0.32271500550022836,0.45505233080064755,0.17671882688978258,1
0.2928123043520259,0.09461212510868222,0.19911829834747152,0.25306229180232265,0.27914351338829135,0.37000679379119106,0.3379452126601947,0.32531415365638594,0.29156678508729783,0.24361429339526808,0.20907642964486683,0.1841389416583752,0.16696547148697505,0.14551128169562588,0.11744102366296261,0.04231537304117694,0.006989423237634183,-0.03363600626143182,-0.06310084836444219,-0.14827437030801605,-0.17687403425639303,-0.22425104545642682,-0.21732148941178053,-0.18443688986915419,-0.17255506972671952,-0.26317593160734987,-0.03180025059465663,-0.14866404678977574,-0.0721627839819945,-0.4131787915082228,-1.6214905773306896,-2.384832324450972,-2.78237765874385,-3.0658492401733968,-2.7344993983136083,-2.457456848319083,-2.1288599718028163,-1.866451633244175,-1.7188378756369964,-1.4555066151328582,-1.3679930768820867,-1.0657790899700288,-0.8360518549087672,-0.523100684876816,-0.3588074789439304,-0.036797384704641445,0.1454329850300482,0.37207834287776365,0.4830247180013387,0.5709551859963113,0.5920582453566468,0.6360206185144293,0.6359844815918549,0.6550283386474973,0.6668812492518725,0.748443789207208,0.7867025514186778,0.8815556492148033,0.9583285412239348,1.045734421559537,1.0968199844387598,1.1506630956514243,1.1917173499650389,1.2396749610544333,1.256253376567443,1.2344477552040587,1.2159962425376136,1.1768003294673832,1.157971487101058,1.0559693014556473,0.9688859431540209,0.8054452674528676,0.7164785732030765,0.5478673061635817,0.4876640965778378,0.30618386912758666,0.2603011196760008,-0.14832074602531975,0.12330152908145209,-0.18495515356707415,-0.10469775879871435,-0.32229081754156397,0
0.0788814215710616,-0.17467359681263872,-0.0937533906560617,-0.07565270727960893,-0.07325201105658863,0.046036873784288446,0.047361894278679983,0.06789820623664156,0.059454814277152934,0.03377260454460895,0.006783743919982042,-0.04059808553639499,-0.06513445368231174,-0.10358684957057562,-0.13179623475515,-0.16514308576570613,-0.18012906755727442,-0.21038621168772664,-0.2683100848820956,-0.307553879374737,-0.34042824012263395,-0.3294661046597156,-0.27521705535013297,-0.2897031430460899,-0.2757570012015975,-0.3514933658148891,-0.16717247510927535,-0.10077298786612232,0.031323424617134776,-0.033476100379040474,-0.7775491886711663,-1.6275171620225102,-2.0723046339804387,-2.6666981749008487,-2.7389203367216712,-2.4986441316789243,-2.3364289493645725,-2.048696006036362,-1.8108078492937345,-1.6291382041409896,-1.5040558177588963,-1.2376461431629586,-1.0189215470320008,-0.6797702047106071,-0.4913101306651271,-0.1483306836790277,0.049440670749767435,0.2929658862729667,0.410610239995691,0.5259421318146806,0.5645020350476031,0.6528339240241721,0.6746883302330318,0.7279911944532103,0.7767938072488008,0.8388333747833627,0.8736708738501093,0.942853205272506,1.0058898507290976,1.0886382840269135,1.1311687316276888,1.1929758182936894,1.231635700345734,1.2948343596718672,1.3201356260122736,1.3202798725615494,1.3248415567545138,1.3261873559793855,1.3222857729054454,1.2623135384831556,1.1935681626828867,1.0580694589392579,0.9860615213125712,0.818177208698863,0.7475015189510827,0.6021558049469746,0.5616960030097076,0.15818570500652385,0.5001990915958032,0.1630051659138516,0.28680152956383154,0.02598961484516593,0
0.3427252240937122,-0.0012687669936610763,0.023005608463591898,-0.04883549703721002,-0.13318027888974626,-0.08856894683073335,-0.12179985854803022,-0.058154607087082866,-0.05304424395303187,0.0058402690997709766,0.05652109844616149,0.06266377300175208,0.0763102795298991,0.0616618768233792,0.033823497377234446,0.044043019081250634,0.039829453909085544,0.01711920491725749,-0.007217205590414723,-0.031575599392652975,-0.04626977553443368,-0.06940523564855283,-0.11765465238773487,-0.1596210628553294,-0.1884628441849543,-0.2009132185758915,-0.1735638921485858,-0.2243299444040474,-0.2317235587627522,-0.3447514206266078,-0.20150676752917462,-0.1646964936308919,-0.06537898019173127,-0.13027065434047103,-0.8060300524865802,-1.6352328467036585,-2.072027960666979,-2.648557665624309,-2.7384984005079884,-2.489548844693246,-2.3255205675739834,-2.054640981511369,-1.816441143811538,-1.6485372570314354,-1.5391503406874527,-1.301245771759156,-1.0788596019483556,-0.7603296439234839,-0.5695562045512048,-0.197248934626856,0.0108729378502872,0.31836412002228087,0.4648499539336086,0.6217546649051542,0.6931777866681799,0.7691921044442722,0.7866778578549187,0.806856715420416,0.8291959586738145,0.8807787053794556,0.9019540385849396,0.9666644258387649,1.012876021285777,1.0841874197298438,1.1201021002303264,1.1672472328438417,1.2056336788484074,1.2551831213772005,1.272521917969378,1.2835725888926035,1.2788064299460729,1.2109298459926947,1.1818920218581042,1.043588791781687,0.9952198220569883,0.8727310127221557,0.8391315043946008,0.4114221161895273,0.7413079515628667,0.3700597946109667,0.4743009637508777,0.17152324084666049,0
0.1047611798136785,-0.15822798449008957,-0.08571111853714797,-0.08330078580144118,-0.09731859920903929,0.015455099632710299,0.026235948200714176,0.06493949570086954,0.06817977309169976,0.06540746884820692,0.04517169562965506,0.004755860281520084,-0.016535412217223214,-0.05929773840451702,-0.09044475425336174,-0.108367463286136,-0.12035106909382165,-0.13782357229952424,-0.16699209163742523,-0.20569594027860205,-0.22793159102062077,-0.22392340402508637,-0.2345672334283293,-0.2682257653960889,-0.28034096983014933,-0.38099825967375267,-0.22935056751370553,-0.15688399211134652,-0.059717528988421975,0.01191699377166344,-0.4091197116800629,-1.1226887202041453,-1.5282228364420014,-2.3188496163815095,-2.682395451785088,-2.5707685355956578,-2.52483045148138,-2.2561571751124383,-1.9537927682601648,-1.8396582131424708,-1.7034128302361502,-1.5377664471233672,-1.364382847746402,-1.0409784705777874,-0.8644705331032512,-0.47493859903385527,-0.2551032442452694,0.0800305757089248,0.24516396509166327,0.4493360719314339,0.5515303855485314,0.6659338595983826,0.7032693234380787,0.7368715420348266,0.762039704043751,0.8144683558786525,0.8353648324982714,0.8844475064438129,0.9233615515179636,0.9835873466803164,1.0117587880961878,1.072646792364715,1.118865012914199,1.1822666412887912,1.2155315819415122,1.2449066840201297,1.2711574480011762,1.3017021818071157,1.3099880770123846,1.2914438129113321,1.2652936300314508,1.1659538321567027,1.118610849892093,0.96193470495583,0.8972869550344669,0.7549484352705846,0.7130672477120612,0.2871728364432826,0.6060465469441425,0.24868340020938007,0.35301039454040506,0.0730082682296711,0
0.10945446263301761,-0.12823975929179454,-0.06100972511147518,-0.047671888130317086,-0.06251392451363103,0.051115014829044014,0.09184584368561843,0.14387969964139558,0.1638995547475659,0.19366523673100744,0.18588766756995057,0.15264742048098867,0.133449680363384,0.061556477465870785,0.009209434847782914,-0.025175148122698946,-0.051184698145561924,-0.05289548028843427,-0.05671485186351788,-0.08458485111691516,-0.09230761261206766,-0.11688011768055873,-0.14583211662403528,-0.17295528614423006,-0.1905063871565318,-0.17819032166116244,-0.14906456434830773,-0.14281799614031598,-0.13031130837836713,-0.24917468095593165,-0.07175323219281893,-0.07852167779098806,0.024201740600801713,-0.1231811924134334,-1.0446067681747593,-2.0031464691250136,-2.467128443934566,-2.961479417942727,-2.8817605386059797,-2.554585104174911,-2.2765766443540763,-1.9497744930404117,-1.7436317193562552,-1.5100769819123308,-1.4015017911916736,-1.1243725502255977,-0.8941294605945878,-0.5716894875471752,-0.4041027022626622,-0.06406359621002622,0.14439856562135844,0.38554567049814636,0.512524793603859,0.6263576054180575,0.6480554182957619,0.7249445507391741,0.7358175484597425,0.7553603961879318,0.7762701230124947,0.8266031344791074,0.8511262524200802,0.9088155367587376,0.9560757052424478,1.0038044491555382,1.0302876940051462,1.0671648212101914,1.0946053933669972,1.133675128349239,1.1516872762653847,1.1658637909912883,1.17123343654481,1.1245875957448632,1.0989824781138111,1.0102410373480666,1.0264523619559256,0.9197975475290718,0.9097014936438512,0.4725453115958089,0.8007655359794938,0.4352926615370123,0.5568337800773335,0.2517131800262149,1
0.4134421701614315,0.16122572361808807,0.22828410741617944,0.2663450199765549,0.25567770157363867,0.3910155960118118,0.42535199641886123,0.467482227602126,0.4733120166364273,0.4662409243116983,0.44099326107311043,0.38423691161891327,0.3556757937212822,0.2715177193020466,0.193874529740917,0.1446963940915751,0.10916325926527293,0.08471813684885632,0.061434816493203925,0.011281285075376955,-0.01070231063168592,-0.02234351909797994,-0.054545130803951736,-0.11099250957013851,-0.13785398754269096,-0.25249325501233955,-0.1141954454743086,-0.039010470071296766,0.06002397080769839,0.130459048879338,-0.2578881964116633,-1.0425633757736925,-1.4835021901922012,-2.3549268377483212,-2.818240994700175,-2.7452095163841985,-2.70011556819568,-2.418807280347023,-2.0736233305133798,-1.9209641809475286,-1.7432705007010227,-1.538924033209831,-1.3720306251272127,-1.0173416106629496,-0.8356614255744539,-0.4363461725706159,-0.2179502718645736,0.11214455537765389,0.26780224137936415,0.47144102747014216,0.5738852881350454,0.6894541779379182,0.7302630023190488,0.7803364302251694,0.8228885599794893,0.8978253951808242,0.9317986195160017,0.9957953025489843,1.043299997542114,1.1082196778058488,1.1380236046990149,1.1675598172241095,1.194843193767717,1.2246459160967973,1.234283031065324,1.1901222059744043,1.159077276931832,1.1100078531912345,1.0835631543923725,0.9587639911409553,0.8356635643915524,0.6554764364874188,0.5562733566364102,0.3707081512301542,0.2699514848494715,0.10921987377730602,0.053183251364380624,-0.3131267951177392,-0.005646152881496393,-0.3151444399614718,-0.23597627226770612,-0.46398881035281647,0
0.37640302908684475,0.05463354652369645,0.08091171433769517,0.01240393880335233,-0.07671543394431524,-0.04348030625271804,-0.06936970100802142,-0.005339591321657624,0.0037121055011652953,0.09092194303180179,0.16896745699759208,0.20035628908666325,0.2291251942890966,0.21802573852039586,0.18209298955862607,0.1761141357187057,0.16148440375551587,0.10235958016759383,0.05791658593957294,0.011422520214438235,-0.01430365610723783,-0.04641281751962367,-0.10889144866346356,-0.17178505213486517,-0.2116729872723937,-0.24184852218603226,-0.221532645455774,-0.27121669802115633,-0.2787274562372062,-0.3886445313494562,-0.23270196594145176,-0.2116660610289003,-0.11673014945187532,-0.2595992796955571,-1.0961584973551908,-1.9771954157455678,-2.409679695986794,-2.8567520754449944,-2.7658102348781233,-2.4769566328812047,-2.2355135816655842,-1.9647876528091661,-1.7815855762835042,-1.5539714477697757,-1.4511244109886796,-1.1462786021196365,-0.8916045437002182,-0.5652510925085181,-0.37032311160427867,-0.03164998122495177,0.15600062575486362,0.4264758547109224,0.5501993422337108,0.6811029351309941,0.7407201242889911,0.8093688338213738,0.8265983162227641,0.8658532529331993,0.9083656320726874,0.974700976278271,1.0075084837194055,1.07233481026649,1.1106218797339764,1.1707154739879115,1.196922873661869,1.2063302180310274,1.231658888204386,1.2682948014512476,1.2809610939545664,1.2636725879129713,1.2167933628213987,1.0868913649614669,1.0229362393894448,0.842464232079017,0.7611724179019674,0.6411610957506255,0.60284933271938,0.20899692841520334,0.539786487993922,0.18418260710648582,0.2877311518970558,0.008021734659173772,0
0.18234173204234594,-0.07136777168535957,-0.007363258985819245,-0.018935506158200614,-0.05768181568340225,0.046931563759024186,0.07737360847664831,0.15051684775421137,0.18121094750679134,0.24053000705355032,0.2731577333048776,0.2797515171106042,0.28133190519118756,0.23322553043719552,0.1868097613776385,0.1469654916882206,0.12128177625056935,0.06856463131711621,0.01780911899740545,-0.024292804929842763,-0.051540646832918924,-0.0642569287457988,-0.09340677734036973,-0.16322421517701002,-0.18657589454453216,-0.2366125832460355,-0.19581399765963425,-0.16850110929592432,-0.15229098925215112,-0.2058564484430363,-0.043174648115943626,-0.2590665612286074,-0.2867360005617172,-0.7926937212105294,-1.837192319888306,-2.4297424636885214,-2.741628686140733,-2.8657949827142537,-2.555320603477181,-2.3541055508975646,-2.1084152820006317,-1.8839461197444436,-1.747350810971195,-1.4416213037746992,-1.3226227188785025,-0.961105934034844,-0.6962311752252504,-0.33774838617272707,-0.144054180033379,0.1668495321937158,0.3447540111552385,0.545214856046627,0.6341014467847117,0.7256392830756653,0.7675002941857514,0.8495422506472394,0.8778570351893222,0.9296279950333712,0.9737785813295616,1.036779089863579,1.064422028786801,1.118811710953402,1.1564925835447042,1.210266733463456,1.235523732073709,1.2358227651080114,1.243913520931379,1.250087815294222,1.249643331146558,1.1901505132304209,1.1171042413617656,0.9832006816087713,0.9103709301345404,0.7414615334838075,0.6678199058157404,0.5210061293320507,0.4785557852429818,0.08541648287760495,0.4267309211560928,0.09804362704813485,0.21943808991100866,-0.0351615866761108,0
0.21143044900956198,-0.009846467848717568,0.07552098891267178,0.12480331935543632,0.14145099730338018,0.2613617383535569,0.26702559868503783,0.2807958741730019,0.2681482524130132,0.23130244387419907,0.19763969593213915,0.15720187728943813,0.13173317654110406,0.0967047540667565,0.06637322810400548,0.01626336213428914,-0.007461732099834252,-0.041450916909148816,-0.06773360183846933,-0.12543643752309208,-0.15163781437662038,-0.16273546329919242,-0.20174045296182186,-0.2559596893102807,-0.2822086464451985,-0.3647745882840141,-0.20614162899035193,-0.07288973840778112,0.05831891034423364,0.15192377860643802,-0.15514279472530745,-0.9494760183568545,-1.4271377757774246,-2.38802961396099,-2.9587874430667065,-2.869209169044973,-2.8035202805058788,-2.4683613152763932,-2.0792390835666836,-1.8683117813336878,-1.6119207673804574,-1.3727687217707931,-1.2362057856573507,-0.8939182101680387,-0.7657461169058415,-0.4210476063987798,-0.2132479548145909,0.06908801441240087,0.20902884936347732,0.3811140792264496,0.45977181288885305,0.5335561814010887,0.5554434119812868,0.5675007973392283,0.5780494661796922,0.6458634128006082,0.6758260410120798,0.7531771237824003,0.8072740968761494,0.8942053789619422,0.9380831314926965,1.010206104989578,1.0737188544010863,1.1305730746872555,1.1615144112184481,1.1741451690812355,1.1795783553902837,1.191480653122177,1.1911680687419093,1.1559833540774278,1.1203601780857113,1.00826193855508,0.951351404897899,0.7985750361894475,0.7517301411743205,0.5972107682337011,0.5579627577667594,0.14855943111476932,0.4801036500932483,0.15484665336065717,0.2860122389466042,0.027623003745524954,1
0.10644305241849139,-0.13320888728678426,-0.0665419868165813,-0.03649142542684558,-0.03603308879219469,0.09491597639932792,0.14422872208525916,0.18979798373351287,0.20517002831458342,0.20343033663365162,0.16507460701327403,0.13098514224381574,0.10486748259425127,0.04950451264631539,0.015298807442576388,-0.03634748001859123,-0.06266961442172203,-0.08443699087538192,-0.10121596630867913,-0.137847362440219,-0.15345971755640875,-0.1577994608165625,-0.17005650267172712,-0.23651501355508486,-0.25709649666626433,-0.30236311158795814,-0.24021422986260887,-0.09999273147953858,-0.032776850927227485,-0.05448972085600445,0.09861127787357304,-0.34640167342416817,-0.5643151462138434,-1.3506854483856294,-2.457297845859756,-2.723158841514607,-2.8630121949989515,-2.7146587974004577,-2.2895637273304974,-2.1825059109316847,-1.9241121586152836,-1.7355915552244916,-1.6262701370526749,-1.2829053801296268,-1.1595319690442771,-0.8158266216259662,-0.5966784706483352,-0.2561376636539592,-0.09555812879762726,0.18627854861579607,0.35722185172542,0.5067784206325001,0.5906781160553294,0.6378509536428183,0.6377554919390178,0.7150020787748943,0.7305135516488974,0.7802686734953426,0.8127410109796003,0.8765073211311716,0.9102917300458984,0.9706680957189775,1.0348005933526352,1.0924889742682282,1.1262571215677966,1.1684126485968633,1.1895301627262285,1.2297312845260677,1.2443721587070513,1.2369384925924933,1.230320918646072,1.1611864686460862,1.1212437258426533,1.0091337418121853,0.9979105170836675,0.849547972326647,0.8230617160668245,0.36372619664777517,0.6586414286228859,0.29774559656546273,0.4033503322505112,0.12796349323456013,1
0.10448744262517806,-0.12167940213944917,-0.04933057287647813,-0.025197131417264988,-0.0284889039227636,0.07647500366863369,0.10161847211379893,0.14913521274778674,0.15835223599138715,0.17578318173612928,0.1674430811469989,0.13416760055852706,0.11823964965185496,0.0572113136673309,0.010373043754675846,-0.03857923612857661,-0.06878729427253205,-0.09333631034134982,-0.1105775372425768,-0.1558549932410429,-0.1736021370583103,-0.18434955897293293,-0.1977141975050003,-0.25763463567160017,-0.2721812527128691,-0.29328702234239756,-0.2526441266640873,-0.13703428168229692,-0.08853401447224485,-0.14319020644283142,0.1085061695564633,-0.16677978721730113,-0.19801895221871035,-0.7848657109283792,-2.087818440697358,-2.647225116604381,-2.9305452523321076,-2.961863353923765,-2.5093549649594404,-2.323037509281596,-1.9632779575833688,-1.7230922454175683,-1.637994309870379,-1.272883708076705,-1.1846716732266742,-0.8301011577543527,-0.5947388213291589,-0.28579824742091375,-0.1261730284615652,0.13610002249318853,0.30299117201814596,0.4637414538336415,0.5485527031284079,0.6093717461030224,0.6125225846104811,0.6864662567230653,0.7014151981689949,0.7464186158379391,0.7811645680341641,0.8451473985801599,0.8800240459796953,0.9501480453761744,1.0191542093010213,1.0849243118093383,1.1229915483311643,1.166971989950234,1.197348687066203,1.2488453074397086,1.2691973210925411,1.2679388527638906,1.251308640995191,1.1627427654449534,1.1153555154501902,0.981909087767761,0.9650000194131962,0.8296916367951255,0.8037191271179012,0.36933826072356624,0.6883450755559082,0.3300008113732531,0.44745032685509756,0.16152656349851924,1
0.42922406767269905,0.10626357236970563,0.13561247517945674,0.04582758077437887,-0.05598699401466689,-0.05419400037293798,-0.10140056575482959,-0.05481284517202312,-0.05682205806715501,0.007197210542436492,0.05426615447752425,0.06091715507732687,0.075201779429932,0.06785935904487417,0.04517741730906266,0.06376534685822577,0.06423211544147733,0.041716403549507675,0.020898825877509353,0.007201426516736829,-0.0035309383468131745,-0.025301025069666142,-0.07583128390533034,-0.11807745438185435,-0.15201936005080086,-0.16852008118027584,-0.15831471310426792,-0.2504168876694237,-0.2726248334374688,-0.4141346131103134,-0.2970551999438342,-0.24519510235743525,-0.1655514329907959,-0.11435023195933525,-0.5750902731024397,-1.3059074347712425,-1.717735097216437,-2.4585936556750667,-2.7427095941946096,-2.569107215865559,-2.4947368269255765,-2.181907468436803,-1.873890719897119,-1.699899116797841,-1.5363321124381883,-1.3378479572116149,-1.1485094548065575,-0.8182124113684246,-0.6400533176732637,-0.2569028629894703,-0.038288032760831925,0.26838645496098223,0.4173865152604179,0.577990743680509,0.6613809084950404,0.7312260513056543,0.7505752653570497,0.7616178054726959,0.7736224911518832,0.8171376698928086,0.828410582889866,0.8982590382517159,0.9529986462852449,1.0429139347526117,1.091419020219007,1.1619396223407392,1.217252000597071,1.2823303821791114,1.3084402121621181,1.3234566091968532,1.3226585854900037,1.2651355309951882,1.2402260491236916,1.1041684276442467,1.0456169765611705,0.9185670853154164,0.8825557385470475,0.43575822555617805,0.742202340396581,0.3709210579323212,0.4559120884168948,0.15912466271141312,1
0.09350573299586529,-0.14800213882462288,-0.08017704998591313,-0.06777214788921526,-0.08064110829997162,0.0365569544289599,0.07201841769215633,0.12628071720668288,0.14589102052367764,0.17580004563333063,0.17163646987072667,0.13749340199944982,0.1197775768484135,0.0464509426887858,-0.012292636365977218,-0.04544976853301819,-0.07296261453497266,-0.07642423057657055,-0.08134005661076316,-0.11121475164397054,-0.12016104910928505,-0.13519702031041447,-0.1459215555074067,-0.1777991394742955,-0.19014953504611043,-0.18302303277343412,-0.1565274411419466,-0.13471489353506882,-0.1171924009198051,-0.2361632808420282,-0.0567922451060312,-0.09956059411375406,-0.013003329176605407,-0.20860827509707036,-1.1863988675552157,-2.0847047931060487,-2.5305077125883155,-2.9689847367990767,-2.826389155530757,-2.533390686157192,-2.252963122868401,-1.9463810101549175,-1.75523784489355,-1.4878526239586165,-1.3698842424968092,-1.0565162932911676,-0.8166785495756557,-0.4774711950242718,-0.3029295578493105,0.026251607533829713,0.221933946696808,0.43474006776264673,0.5448959477049087,0.6336021549711432,0.6486402341594228,0.7177313198523194,0.727392224961541,0.7598097547798943,0.7882730018455533,0.8388737276802374,0.8662721400940399,0.9258796927393504,0.9817540001417129,1.049487542109901,1.0867353739123544,1.1401701378999292,1.1788559180798188,1.2275308470823134,1.248909450477278,1.2528134426793898,1.2482460368070178,1.188426782023626,1.154924241104979,1.04278504639543,1.0320794830827893,0.896335650547698,0.8719977343349186,0.4215091358441043,0.7302792639342073,0.363638263469511,0.46990852081196977,0.17828957845767945,1
0.4125414573662667,-0.03777097362699777,-0.06376757458593829,-0.1329619516491931,-0.23133990510142155,-0.15700776107116354,-0.1757321075030447,-0.08628328647790795,-0.0784388640100886,-0.054706843532471794,-0.011709326207423489,-0.025374804619922035,-0.022811492245317314,-0.07088413920490666,-0.12208443681330294,-0.1503925962529138,-0.17539242043084613,-0.19752688778965677,-0.2148135869851231,-0.24477260150433722,-0.25653697664840536,-0.2740778388659777,-0.2943946190193003,-0.3234047381799172,-0.33942905421345415,-0.3289722333845333,-0.311179918414048,-0.31949291631124765,-0.3146141306226937,-0.4359661326015427,-0.275671477151505,-0.26643277175436,-0.17538579532837417,-0.28049726202028324,-1.0639407746045713,-1.950952255575313,-2.3778925296115965,-2.792284859565992,-2.6804328028203983,-2.3536631747370507,-2.0849066328756773,-1.752788514395565,-1.5523726900868837,-1.2841864340348863,-1.1753542194524194,-0.8662915328599752,-0.643073460977412,-0.3424778059146405,-0.18490727214466318,0.09092585786508067,0.2674607474610369,0.48252422162368447,0.5910187065505923,0.7068005030556321,0.749594147909157,0.8357015081602555,0.8626695900544021,0.9116845072701167,0.9544956183028859,1.0338176690586138,1.0728834892075767,1.1436630726077581,1.1978633370718654,1.2626303388377238,1.294238702731434,1.311771434141427,1.3304566322405194,1.355594379006277,1.3610390086741404,1.318515186175837,1.2692488162072095,1.1378615908294734,1.072167074717541,0.8976880748750418,0.8263884209308117,0.6750515063049036,0.6310638373013191,0.21761287417998432,0.5547986690543567,0.21411361551070485,0.33851256234461147,0.07154562628847572,1
0.10086712526527464,-0.11489168351590706,-0.028129943825192075,0.014300826097482398,0.029403048323331404,0.14311630715201318,0.1466221909237646,0.1584555273617454,0.14785777253478471,0.12283084566492164,0.10346838140858239,0.0815001438936136,0.06680928030306887,0.04402645632507074,0.024780533644033653,-0.024892376703554934,-0.04756889790098029,-0.08461135152680299,-0.11962441580905647,-0.1811430093765054,-0.2084790855988672,-0.22230266304762836,-0.22454887392664347,-0.2355555782607368,-0.23967578971625159,-0.353171925868466,-0.1592250624121192,-0.11778896128330274,0.012849928656123664,-0.0432637858582936,-0.8861150440201584,-1.8547461311698008,-2.334001301020132,-2.9006141498213194,-2.8958442266120206,-2.544641314718662,-2.276756124402862,-1.949867846757062,-1.7166931492822108,-1.5335888683032657,-1.4385177444076085,-1.19728345920511,-0.9858109411527742,-0.7019778493376307,-0.5439468709458524,-0.2085965305972337,-0.013589951886395115,0.2782247321318394,0.418911493393054,0.5593196992094249,0.6041388185732401,0.6507214197586819,0.6507421984891621,0.6456125623297382,0.6444938234350417,0.7061955107435338,0.7334322104288162,0.8092649401689727,0.8602863600106261,0.9317435107090759,0.9710282603806348,1.029675474308533,1.0884687416318357,1.1409226893125393,1.1697075549891096,1.1878103463527125,1.195539732950337,1.2065813696429188,1.2083210613238506,1.169943348408907,1.1326762435810807,1.024488621355033,0.9662003675247064,0.8242177964481812,0.7861607987210846,0.6276488981180464,0.5897457834529121,0.16001814812206305,0.4651926524160217,0.13156604327419785,0.2513999933639042,0.0013595918415774105,1
-0.030279488436320893,-0.3159801062960028,-0.24987272584365883,-0.27097367721684407,-0.29150667662356966,-0.16236355413769843,-0.1419419769089103,-0.08333300789073661,-0.06216851576202487,-0.047532760978405975,-0.05950462228625497,-0.10104311136236532,-0.1247898877500333,-0.18211840514499045,-0.22243546623808896,-0.23246255882939693,-0.24391796328545468,-0.24418236510229008,-0.258049005717119,-0.2888774143652668,-0.3035279250589369,-0.3058135854117623,-0.32717050665318226,-0.3781054990216788,-0.39859935009561553,-0.4422346841041005,-0.33671697817425184,-0.25897019610174254,-0.20291550522753,-0.19202624589180317,-0.1213047827087621,-0.4936521043889641,-0.6870252941994437,-1.369771615754786,-2.207524631708713,-2.3511766533229164,-2.467462559897868,-2.3440661868096324,-2.0454274213895154,-1.9957526289105427,-1.8751139547262596,-1.736203624350594,-1.576811940253382,-1.3081938479766215,-1.166577313811672,-0.8362953274246117,-0.6182139685154766,-0.2631247376337029,-0.08525248076147562,0.18904302319273114,0.3497743331238752,0.5225494770669954,0.6015312384684819,0.6730522310634797,0.706687274031566,0.7787825425544739,0.8023898906492093,0.8525331832723069,0.8936082163164016,0.9574811303895672,0.9880719387717889,1.06186985862999,1.122616025477413,1.2085839574355788,1.2541041330973357,1.3202082009984437,1.3732945448241978,1.4471849149759848,1.4792022283768276,1.4928610816868542,1.4816553231375806,1.4038874611935697,1.3650824291691848,1.21351815307208,1.1636049321893722,1.026390025764485,0.9897005094158047,0.5390860339780232,0.8653383017865153,0.47950769201179355,0.5818022855890348,0.26902457278544034,0
-0.018862328889987626,-0.3023507648060786,-0.23389388210436124,-0.24098665658263485,-0.2537634678408267,-0.10905677508424105,-0.07770889817408744,-0.025417566644968307,-0.00574914311083319,-0.006956417465836752,-0.028749692047341572,-0.07372299561414053,-0.10061007057351645,-0.16551348922209286,-0.21694205172475023,-0.2564758450210505,-0.28167442227314154,-0.30762976691214305,-0.35111814410215914,-0.39496789051791836,-0.42170258812043926,-0.42210702051225013,-0.39112743907133307,-0.3992784230989912,-0.38933715569879723,-0.447780497155172,-0.2900840864382275,-0.262825403458379,-0.1704500939867657,-0.2769856565691242,-0.9342554477095746,-1.6450000545934529,-2.017408131474733,-2.4895371001934095,-2.516530402648103,-2.3484486920948324,-2.2355764448538125,-2.0068818976403673,-1.802279686136707,-1.6388495503713045,-1.5315088872680924,-1.2824556260140874,-1.061007510485112,-0.7199100443125808,-0.5201561279690523,-0.15156734737760047,0.05521203842590694,0.34331726734188805,0.48070261958491756,0.6336804516367209,0.7006536125257412,0.8126214579940836,0.8467169455839709,0.9100709936771736,0.9612234098631589,1.02745455927532,1.06042287602191,1.1188213474660884,1.1755123493186304,1.2392916085341241,1.272176509217772,1.312746829909912,1.3366923593717388,1.3813500671480554,1.3962953949017276,1.3674219937648502,1.3511950098238756,1.3178680341207354,1.2975666121595069,1.2130360262967343,1.1090466110507577,0.9585288000032008,0.8749477117810684,0.7131353055829095,0.6558200383928963,0.543613388094542,0.521124778894503,0.1607646767142441,0.5709151342404581,0.24928869366249984,0.40429772190400115,0.1262831263348545,0
0.21090827047836314,0.002243139598519404,0.10680050681095565,0.1513359513325625,0.1726507128309791,0.2523654514786813,0.2110636592454327,0.19355260998898416,0.15837181015778157,0.1125703687819879,0.08539510186508181,0.07145859653327591,0.060057999743122537,0.0536912762675712,0.035245184139512276,-0.03570484507881133,-0.06871020217104018,-0.10830934306899564,-0.1365768484707104,-0.21918374548844355,-0.24294889147842014,-0.2894312127037182,-0.269346913418957,-0.2041574108000006,-0.18005829941723306,-0.2558154427610049,-0.03229472415188184,-0.2804316132776066,-0.3016132704445411,-0.8121656502281667,-2.0307593692313457,-2.566540741510229,-2.8532588772387717,-2.940681621471575,-2.537104808945278,-2.3265841223764987,-2.016282692192309,-1.7754606690481793,-1.6405803583921035,-1.3522754729788993,-1.259222295067996,-0.9709443617762119,-0.7600926459396007,-0.4482544931229384,-0.2986151104349588,0.009870138248849967,0.19848439649731375,0.41426729656021166,0.5282274910264846,0.6058194866139672,0.6117155266729881,0.6548434380603254,0.6504434665958811,0.6734500383528186,0.6941324037061847,0.7785985453903663,0.8214771120119408,0.9213625774175611,0.9977506112012762,1.0912738702466669,1.1430704270775394,1.1988366248532003,1.2472685330513826,1.298614582914162,1.3174608914597314,1.3056579702649174,1.2947593755575255,1.2663578624012644,1.2531374704184728,1.148729469152677,1.0620866801654358,0.9004046680295659,0.8126136283275258,0.6313050512595026,0.5568771443844227,0.36240238071746944,0.30535904386982793,-0.1094810827834678,0.16906864038080016,-0.1514788119172934,-0.0738401394714856,-0.3019761453753915,1
0.24196102918749318,-0.02324152162395166,0.05167694397507461,0.04799459156475194,0.024469153827851642,0.12236738963290605,0.11764037901916424,0.1580188728806391,0.15989468030326748,0.1605231616150391,0.1498531329429298,0.09603170388380988,0.0722036194203497,0.017208041518586015,-0.03316351599877265,-0.033560118724025756,-0.0459448443722863,-0.05158069858877212,-0.06383081420044334,-0.1119618825181945,-0.13142613243978474,-0.14851437970211379,-0.19024740587808253,-0.24566970060724458,-0.2775722792789139,-0.3524970688393907,-0.21744134353831868,-0.15026190104960335,-0.07307494013597449,-0.03910412492896853,-0.20400714143029575,-0.7815499977116751,-1.1493428625834277,-1.9973659166477198,-2.6614366389740285,-2.66273990202962,-2.6825902523833403,-2.440778002275419,-2.0887110226849437,-1.9885766642250928,-1.8250369131278816,-1.6611803616761023,-1.4963786791284939,-1.177373972283302,-1.0170409213530291,-0.6447014293393849,-0.4246444347590099,-0.08116087770299885,0.08932589561810289,0.3301703537683309,0.4721086571147026,0.6136265675951265,0.6720373858211843,0.7194737218024443,0.7416590819938804,0.8013551700994981,0.8197723526894976,0.8736205832995267,0.9252834335168743,0.9875985450860654,1.0207704331631575,1.0867299533739683,1.1324154554565027,1.211296635756824,1.2495126359432476,1.2776118035139703,1.308605839723917,1.3421990240900215,1.351424178141201,1.3163511867956785,1.2699739637868674,1.1514322098202143,1.0912810976311818,0.9095045474158212,0.8113551599988753,0.6573459199485967,0.6033925911220805,0.1794950459665543,0.48249260181643194,0.12783038890307807,0.2184373982967216,-0.044659574492726506,0
0.24316137729900333,-0.012344131480645617,0.05685175128771647,0.06120354018872831,0.0408753166765905,0.15326204930577347,0.17143621109146068,0.22563858354271815,0.23764688291416292,0.25650222569037595,0.2506076913364623,0.213292705086225,0.19480234522801254,0.13311571497059305,0.08491538421790779,0.059522571006979774,0.038405659159657546,0.01979363832877823,-0.0028934228043979732,-0.041928526569172675,-0.06157978506508499,-0.07386663988137343,-0.1085975350265258,-0.18709957878083827,-0.21694566541700766,-0.27873076878844216,-0.19754375168685812,-0.11383678651775853,-0.05976089329551115,-0.07011502503611666,0.09391648934912666,-0.2567896339654041,-0.38922573352085976,-1.0997506580295884,-2.2386784232305406,-2.596406515240676,-2.7977182717308064,-2.7699966973583576,-2.397319362761271,-2.2795743526521264,-2.0652957272766397,-1.8904710928267683,-1.7641370137890071,-1.44738258322662,-1.3208018696922892,-0.9614295100623949,-0.7079532400558044,-0.34958172261070786,-0.16151614330333075,0.14474036068070717,0.3191910532671898,0.49211255174673596,0.5730384795827206,0.6318675826875761,0.6441119766198398,0.7058401643382197,0.7188651157980885,0.7620586759281025,0.8070843780326342,0.8596431227888033,0.8896593541020934,0.9544721293032126,1.0062364640447896,1.0787903703433699,1.1159864058901334,1.158727351064904,1.191567080595334,1.2465211010361372,1.2631591424713946,1.2653481365563337,1.2577099956882094,1.1692317521752145,1.1309257108233766,0.9729926032635703,0.901938981533867,0.7668946995916102,0.7230521805603658,0.2943535440998204,0.5884255812148638,0.2170542575851897,0.29291107860706234,0.0013409210982473479,0
0.3707653680242302,0.03754951523566774,0.055820042148219784,-0.0001849604574530889,-0.08320652866172651,-0.014624371295084872,-0.014306968658473808,0.06015797856224481,0.08181995565839628,0.15204182588684745,0.19909721847596984,0.2147966033473594,0.22670462275866043,0.20734306192538554,0.18632432205105687,0.18071376368037306,0.17344361714046386,0.12248031751595079,0.06960236327704195,0.022661705417093003,-0.008872577785339788,-0.04517663362656066,-0.09857616411462544,-0.15700956791729226,-0.19036183946623453,-0.21210813604839274,-0.19029257703130043,-0.24249477081806958,-0.2523465993348921,-0.36453006177459457,-0.22319584731725683,-0.18525599344750532,-0.08834670475690132,-0.19298176635287234,-0.9649046774499581,-1.8635045166377289,-2.3053961412481137,-2.8152464107402224,-2.788973625821982,-2.499259362785752,-2.2747213145209066,-1.9855423672929362,-1.7725694141012127,-1.540687364460947,-1.4210024791768596,-1.1112432534017955,-0.8711016583956379,-0.5485660730739141,-0.36437647985365373,-0.04185926413423857,0.14305427210159394,0.39644607205166693,0.5148631536354387,0.6390874386769028,0.6964240868794391,0.7663153042663353,0.7857654005599173,0.8190812340452638,0.8510160348062286,0.9134859328604463,0.9405973578808045,1.0114675847284431,1.0648878939469881,1.1392612942971851,1.178378308419795,1.2061474254310056,1.2315522842827917,1.2591172276814575,1.2641754934187972,1.232723421715221,1.1866759481249005,1.076997376701641,1.0220159524278856,0.865031439085655,0.8017996542471622,0.6806918776367112,0.6464199214082527,0.24336223836031223,0.5740792229528608,0.2174508603104428,0.32327241753093716,0.04105419444333336,0
0.17106520535303105,-0.06540246919140458,0.023718710402391707,0.0706425043651393,0.08897536746913204,0.2174680253486656,0.22721234652082956,0.23374228843000822,0.21851629724434218,0.15548296433898656,0.10376109048143434,0.03903414047142917,0.0015472026979423941,-0.05513627062906323,-0.11407619362981336,-0.17716523762413772,-0.21155373542789846,-0.23973150080522032,-0.28073998168357406,-0.3728882308250121,-0.4072210175398041,-0.45552192939365455,-0.38473511860895826,-0.2903819149084441,-0.2388455439201067,-0.22758618226901461,-0.06740776725325759,-0.42737879523379974,-0.5695016980263219,-1.2595690589541988,-2.235617776459007,-2.5335738551834908,-2.7091850699813964,-2.591824579314019,-2.2434549715423113,-2.12338989571864,-1.9085890165266992,-1.732027400665089,-1.6021092917605095,-1.2822392561901736,-1.1524586181618872,-0.7955794050485991,-0.5613802258187661,-0.20906420260354963,-0.03732408035116208,0.23847983897950087,0.4021102335241693,0.5769168747980089,0.6596779560187258,0.7556287128380461,0.8124064433047664,0.9248043181517431,0.9700585862915574,1.0612172860365021,1.1250606882895653,1.213079089462802,1.256132920158862,1.304707569201213,1.3470612470223955,1.4074963351946579,1.4310308071622018,1.4224817147041833,1.4181937676997194,1.4014602645606615,1.3904710264058124,1.2722689595113579,1.1707991911918754,1.0546527129098564,0.9856245656904434,0.8482678218444519,0.6991473051364352,0.5122212434542348,0.40886091180207274,0.2723807894695298,0.25521454668264454,0.14667699858966898,0.13514209290394774,-0.19004714709881654,0.18473851343208736,-0.0941551127786795,0.047578113532082966,-0.19181875972802231,0
-0.02768124370322767,-0.330502933196577,-0.2721984177510919,-0.30837990919658154,-0.34621105115758866,-0.21001189339806103,-0.17567248158079707,-0.10244853650948471,-0.06425783216886316,-0.023826939769655556,-0.01279704757691036,-0.032929529425103965,-0.048557242733387795,-0.11587009069460663,-0.17496600474446922,-0.1966909203141043,-0.2173076369247937,-0.23707122102170786,-0.2672690403709339,-0.3164917448914508,-0.34090886119287234,-0.344092222930648,-0.3716406035731339,-0.40644407370445634,-0.42626065862114615,-0.44790035128171013,-0.27943333079149113,-0.14126049477736302,-0.027566810115075672,0.035523137302313046,-0.048319341326440224,-0.620023223772364,-0.9850216505355469,-1.877310477336735,-2.594322017090181,-2.617107551337372,-2.645304363884301,-2.362866947775707,-1.9914066369741938,-1.853891643521429,-1.6456041434824868,-1.4498426042308665,-1.3050606262189177,-0.9435942824963526,-0.7875017488596647,-0.41948107080518326,-0.19983362801398385,0.0933581738953535,0.24122142683880554,0.4270441078184035,0.5293742360361762,0.6583445035757336,0.7071820487298126,0.7743115018089668,0.8270331638577417,0.9019555442900469,0.9369300625215544,1.0089596823017857,1.0756094177337658,1.1554873748150953,1.1958746017661923,1.2532741884422123,1.2844362613421296,1.3547529909923384,1.3801211106395073,1.3850739770193385,1.4031782740880487,1.4058774010633286,1.4052543402899431,1.3337487058870394,1.2377064021971975,1.0939154792868493,1.013577981006783,0.8425988421156063,0.7793917508408725,0.6574007276145011,0.6292862018516843,0.25123286009699797,0.6278810778455863,0.2817288090574621,0.4106433655080508,0.1208276555902188,0
0.6750804158429631,0.3161919898345431,0.3199333658850705,0.26178032437337606,0.16207012304224122,0.19730783852649836,0.1669302379874651,0.23084109582933365,0.2286587268468665,0.2693088499096916,0.31118250894267874,0.30783653105331865,0.3132408078243074,0.28089223929986673,0.24091004702262353,0.20417084240540362,0.18018315320057354,0.13257847938832157,0.09497439775748973,0.06864654167495132,0.051784752460754646,0.04086025962551787,0.022815889620076746,-0.015205573466488433,-0.03320567574177602,-0.037077445854592384,-0.05157919288366486,-0.11095577036552129,-0.13485221384085122,-0.31170420493239703,-0.16171399295442512,-0.12559724682854778,-0.021065777743956463,-0.0035062447830540595,-0.7034937932396232,-1.6822883898632917,-2.1676271353437535,-2.841965674865394,-2.960211670706353,-2.636590057933388,-2.408635263639141,-2.052770820482893,-1.7978431260381562,-1.583955607564281,-1.4516571294556293,-1.195113135863501,-0.9810178300848236,-0.6816929901325821,-0.5230320247239248,-0.19830292820194018,-0.002142075955873681,0.26653293197394134,0.4008442366699825,0.5472258757878876,0.6106121459703857,0.6853972060969085,0.70432271473112,0.7277424519694904,0.7491915223634749,0.8108245495190758,0.8384132830584363,0.9037051736246866,0.955486372263465,1.019013576444003,1.0519108239095303,1.0800596797487927,1.1020035248410238,1.1337772151555114,1.1422416869865017,1.1221393192404534,1.106569123867267,0.9986215110353172,0.9501010673768278,0.7748484362502168,0.6816296307775147,0.5249549915463589,0.4692947954102493,0.04698727484799292,0.3210424682670805,-0.024278049019791585,0.04515844542471115,-0.2089964458737228,1
0.18892286792517154,-0.061771009613707406,0.015074156240572732,0.0366491035815244,0.03264874625254777,0.14866091563899886,0.15774182314090268,0.1885621009814713,0.18501074491548053,0.17007806508470935,0.1457145518851064,0.10133570069465492,0.0785311945631122,0.03346333271557711,-0.001377478902405473,-0.03588462626861855,-0.05464631418715982,-0.0893675728196257,-0.13862310171148096,-0.18784670965506223,-0.22073793430016053,-0.20874770339000293,-0.1986435186972031,-0.23217828170514565,-0.23557997068347447,-0.32751440969968115,-0.1591792889768584,-0.04166352247029437,0.08799726143145392,0.18146511052889736,-0.28140038394361966,-1.0716856699648005,-1.5228268410491026,-2.385646158061448,-2.7904579122740945,-2.698342449861367,-2.643510278606369,-2.3652586850533392,-2.024725105443478,-1.8729338443014534,-1.7020726021201753,-1.4889754282571026,-1.3152194680071112,-0.9560960014314475,-0.7685988258020622,-0.3699313271353688,-0.15375001750108908,0.1453363187621619,0.2870135328429342,0.4457491812249117,0.5151221349138879,0.609030854466738,0.634518828240445,0.6655776097700041,0.6889030898686599,0.7346015410151168,0.7536923760701058,0.8055151321698446,0.8494374535717739,0.9094398020962089,0.9425068930978355,0.9955040991812396,1.0350960126946802,1.0931535925025742,1.1200201898724913,1.1504869281538745,1.1721669737113132,1.2025656541218481,1.2109211129030726,1.2010283292073325,1.1944381590938633,1.10251064632115,1.0631680775734722,0.9110126616512559,0.844904678916869,0.7005650770654341,0.6572242589759298,0.23241726793561668,0.5508850403395584,0.20260852278610741,0.3144598266791476,0.046038981771438614,0
0.3072914658044894,0.10392701918425473,0.1928220418709401,0.2716523293386359,0.30556622889258733,0.44308317976199163,0.4524007841067572,0.46828205815510415,0.45279136401158127,0.4044880430295592,0.36554298043019884,0.32736642971758556,0.3015182912822212,0.25527808743817104,0.21046830344602085,0.11449014279374836,0.06874441250692342,0.027189059533611726,-0.005542259229095238,-0.12140747179707745,-0.15751096771801087,-0.2310065419906735,-0.2124020496853305,-0.12171915275428091,-0.08544370531009804,-0.15302637562653842,0.08807314896885998,-0.2406608219974231,-0.317933608102166,-0.9889501857309071,-2.3250196947700523,-2.836441280469473,-3.0868856909040496,-2.983876988447718,-2.4817101439048344,-2.2367186727481823,-1.7934500808172054,-1.5432893734568083,-1.4669169990062088,-1.1316286937080093,-1.0754777882774427,-0.7682406185570443,-0.5534876207875143,-0.2948719275383027,-0.16418907100974423,0.08484822977012385,0.24120335837751838,0.4334849119852322,0.531679470555396,0.606555174129376,0.6220777892211728,0.6765198699255066,0.6800368959150518,0.7261458022737486,0.7709986494319665,0.8869864263956799,0.951586897176675,1.06605541768716,1.1518149600584806,1.2596424176228709,1.3109435974734538,1.3314401588165836,1.3393095759891835,1.3383173163234972,1.3323803210855587,1.2105151748061544,1.1111642347136126,0.9828778584337741,0.9076462061724371,0.7588617628443615,0.6128640785288084,0.44258208110229447,0.3469050614714746,0.21857381517943963,0.2129310347194604,0.06447182369455362,0.04471667154624015,-0.3077707009101829,-0.0436019672253849,-0.34969675848090276,-0.30578015875838105,-0.5412877957264257,1
0.33234579650730467,0.12224181382696031,0.21621377299431543,0.2589134618491471,0.268521366138593,0.3536704956594292,0.3371920589655417,0.33273878554030034,0.30693702282223967,0.24500436035029338,0.1888779979129751,0.13215356940705192,0.09720976755973254,0.057423316946433545,0.01460317168302083,-0.05698346965465362,-0.09221094634418137,-0.12126533323495181,-0.15893175105722435,-0.24759760542658427,-0.28130703022696935,-0.3341488475433039,-0.2439324180544844,-0.14758987676625424,-0.08710540146647361,-0.08330409835267716,0.06997698270772901,-0.27243752372212526,-0.4055791966908444,-1.1214712070544124,-2.2265620142323943,-2.5606833227872094,-2.7485926099044526,-2.6793877305480747,-2.3171864145200267,-2.195508126244434,-1.9824722345792267,-1.823094704110023,-1.6942001735373609,-1.4258255537764448,-1.326496596978469,-1.005392636072731,-0.7713039755977711,-0.43996528536643353,-0.2587849943735492,0.03730017046990497,0.20244169066022266,0.3935084413873966,0.4803602222435259,0.5592769371843787,0.5891212169744193,0.6692482176804901,0.6934379725107149,0.7596606899742753,0.8133926801500238,0.8998424377425138,0.9462660364686286,1.035497734817298,1.1107537795013727,1.206713871692358,1.2562521720033573,1.3104313565959629,1.354675597749825,1.409033961250195,1.429503419901394,1.3805589696846994,1.3527443803792494,1.3030431627756442,1.2777991132293138,1.1243310235945856,0.9590494728292924,0.7575782998109304,0.6352256062177943,0.43960951807953563,0.35408456456392656,0.17881085356581394,0.1294809428416599,-0.24001728363457886,0.07462419095078587,-0.23177987213376383,-0.1375016525475914,-0.3595561155232616,0
0.5264775605508234,0.31825932294681536,0.3946422373331657,0.47897376898075805,0.49931735068498995,0.6474748184064012,0.6801224199651443,0.719469505828144,0.7192418432159258,0.6907132485486116,0.6512267343926794,0.5941650279427293,0.559157384198862,0.48909541985280214,0.4357344354154833,0.34943886202597696,0.3037804626353733,0.26258828573393345,0.23513476451320514,0.1619978491970926,0.13866484057290052,0.11452025689589362,0.07230992220092247,-0.0036447696529222657,-0.04201615860641539,-0.11625193750980856,0.01773925428042844,0.18582593366055278,0.3186188853264298,0.3595641265902785,0.21841752298930572,-0.5361265397597492,-1.0000717753646846,-2.0280850111050803,-2.9380914699034335,-2.977432890550967,-2.9547387526037867,-2.660483151214854,-2.2339561555878866,-2.103767923187064,-1.8450481857149406,-1.6807412778655788,-1.5757612592295338,-1.2391679593148694,-1.1184399215324703,-0.7344447662835023,-0.51152331830707,-0.1691133289925375,0.00386538628108468,0.23601801112912568,0.3507232284824724,0.4397643045645623,0.4702367645253531,0.47292143673160325,0.4735700944918122,0.5533559024205772,0.5830210033028536,0.6547741756253913,0.6895710206542418,0.757485548376323,0.7910522323325395,0.837960668103193,0.8875965381051429,0.9273333004499023,0.9485206792962444,0.9531281369244695,0.9487197335114246,0.9432976894201701,0.9381644395684887,0.8876462263736826,0.8539217445222249,0.7279731259919231,0.6648867922667918,0.5112982462234825,0.46939387080630723,0.29022730982387657,0.24827023472794707,-0.17649128401812675,0.009649100739103742,-0.3083910514143753,-0.3114449225129263,-0.5486157613424538,1
0.10784365930926754,-0.1127487640072502,-0.029864817249780632,0.013299532201152429,0.026603039105864923,0.15261881208395067,0.17618430157670417,0.19455330160327122,0.19236611436446083,0.16853742761895774,0.140295218063045,0.11427392354034538,0.0946211593393258,0.05354010347480198,0.014462538826002456,-0.0464101072504306,-0.07730536920534092,-0.10786455778031012,-0.1323912894135404,-0.19799154838575816,-0.22247160316066328,-0.24777678433434858,-0.24616959470285593,-0.23609160927892248,-0.23320035433195585,-0.3408423090271313,-0.12363772220195557,-0.14146888436420824,-0.02233659285448653,-0.20044133059527525,-1.2454606020991434,-2.194851789388178,-2.662857309385359,-3.051676593227487,-2.826921347000919,-2.4628567585452608,-2.103379827695667,-1.7862232985843853,-1.6038322701147507,-1.3280527432068254,-1.2368314061294186,-0.9215513620080635,-0.6945688767868319,-0.40557317387041536,-0.25418596869392474,0.03578633455506264,0.21401815380690437,0.4526615722313352,0.5706001407320187,0.683772851427193,0.7173512798832462,0.7766067986744787,0.7839094684447048,0.8169051890242471,0.8534799706437539,0.9489347482007418,1.0003774643314074,1.0913289790535927,1.155140460358382,1.239280165175309,1.2780243667133604,1.3011492868917287,1.3213928897768383,1.3376897384347899,1.3423279124472032,1.2653092893645663,1.2002444591284913,1.099055655382024,1.0454209337562048,0.9095720030046266,0.7738067894570122,0.6044047260951828,0.504357246820021,0.37456486429189795,0.3667204418240786,0.2329662480177248,0.2180248350973315,-0.1441074819941761,0.19766378721385536,-0.08682654488060848,0.045368340716663624,-0.17907748311036187,1
0.25892400178489794,-0.0166143111648438,0.04772778061974492,0.0327387874179621,-0.002074921508089746,0.12909337434705037,0.16915657355906433,0.22482670734888188,0.2480558223206728,0.26529464009372816,0.2556361441126782,0.22129974370562877,0.20138046970062362,0.13029342131753907,0.06247013932495804,0.04099938677742898,0.01680662053698967,-0.0024793538999006177,-0.030274971320999104,-0.07107596603557198,-0.09314659149783466,-0.10462036555620102,-0.14184440721795966,-0.21587149539348616,-0.2549433383628781,-0.34135695903279384,-0.21934455479389925,-0.16706316091848805,-0.0961832975581629,-0.05975246134691048,-0.18867484746405694,-0.7523101079516898,-1.1079005880636714,-1.969193571808784,-2.6674943541189418,-2.6985920957681513,-2.7285028524386776,-2.4779535602327236,-2.1139671931573876,-1.9889497779506726,-1.8083668001738396,-1.6245180985898635,-1.4510899303417233,-1.0886533102480378,-0.9047446816007927,-0.4950180800622732,-0.2625134213601541,0.08318593133170538,0.2494205934298961,0.4757094003082116,0.5991422867452982,0.7331614846505303,0.7857569686113166,0.8426422064226955,0.8822485747051658,0.941216503820911,0.9647979537878015,1.019539970949502,1.0810636839143157,1.1469897774717452,1.182344335672326,1.238126493922124,1.2636487977722766,1.3235002746449638,1.3425594898927002,1.3209393713985307,1.3400076208769107,1.3323480989962633,1.3282411377456924,1.2255939080323301,1.0940958627586994,0.9052954993589779,0.8002057148206134,0.565420816304055,0.4130244875646767,0.25493358210962924,0.18943390423857664,-0.16459621367074817,0.20452829679786788,-0.09837470077127364,0.03359553362399481,-0.19459919477909438,0
0.13079331541315042,-0.10442522617429972,-0.02784235414970482,0.019412092654597757,0.03316038484799577,0.17374897413621682,0.20235104721276542,0.22694222302458655,0.223669121262418,0.20871777068831676,0.185347721718486,0.1544816704426566,0.13743287265413784,0.08981434635489904,0.04786118609224843,-0.0077887712491318,-0.03915080178729369,-0.0684430900850117,-0.08768690477889862,-0.1295379782352768,-0.14629948748932975,-0.14207447895834946,-0.16903051521163803,-0.22543452967073563,-0.2508676957785383,-0.3917748922674562,-0.2137189393721428,-0.10816961363504163,0.027978952432881954,0.13900934590144232,-0.4602760426993271,-1.4788168876099306,-1.9918504435545596,-2.7687782807855603,-2.9603865395332476,-2.618863090564558,-2.384309016640943,-1.9978627993331166,-1.7115698370842374,-1.4718919992511168,-1.3155477117204946,-1.0420598679858237,-0.83622034331027,-0.5277039265307408,-0.37745172186410514,-0.06514649932316985,0.12250109624643102,0.36856854427273333,0.48871899357598636,0.6115598367648971,0.6605563843783031,0.7213669954043169,0.734314252480651,0.7555317454291384,0.7704951416440977,0.8490239869493195,0.8845276099555193,0.9677181182728276,1.0323206970409728,1.1094956123137436,1.1510636132099563,1.1881307603995381,1.220637729101263,1.254554037783386,1.264822043191856,1.2218468103023952,1.185010939417289,1.1207772584004232,1.0871563690603452,0.9669297310786646,0.8454629943706422,0.6794861089868149,0.584235505042372,0.4413799261446556,0.4117946276330642,0.2759363615098209,0.25243561733667974,-0.11343867808739816,0.2324844223834006,-0.05217033270877636,0.0861458464315632,-0.14130235337934494,1
0.2421396058132146,-0.020399653804503263,0.038160831509216564,0.05058410320822304,0.030605805563013178,0.18037588345430322,0.2363471582655734,0.3134829252055553,0.34454080331205006,0.3794713549544255,0.37862695553027237,0.34975807150871674,0.3334527909021645,0.2562227668224679,0.19549075360305324,0.1441299478302227,0.11033560126178799,0.0671745643620909,0.01819849433814369,-0.03580121020567617,-0.06450476780645431,-0.08201521478085994,-0.11817141038054757,-0.19265803975481077,-0.23001458346600856,-0.28031356599719714,-0.17564537888886633,-0.08449420766945792,-0.01088028497536442,-0.022148981998121545,0.009113069720918075,-0.5072474169434642,-0.7920563562386249,-1.6359168885338882,-2.58283743959767,-2.7747243102541423,-2.870219064281728,-2.6608365402035288,-2.2638315281883923,-2.117378970359935,-1.8765597327702537,-1.6887055544599363,-1.545372365902196,-1.1763827666111908,-1.0146367620082621,-0.6070175453378681,-0.3778579611020447,-0.026641403756151764,0.13775268441892052,0.3748392037624413,0.5164588999081161,0.6425071961165187,0.6963753020339638,0.7521664945144053,0.7803496804301133,0.8600574928343221,0.8901688847103912,0.9544079862656432,1.009901952557911,1.0767164121286257,1.110859781140924,1.1495395385003846,1.1676974386709134,1.2091913588758487,1.220490170000751,1.203351331046818,1.208967309955888,1.1908515695283626,1.1838867799842063,1.0932764580393268,0.9864099414743919,0.8326943139200296,0.7433033119710117,0.5718766775219564,0.4999602867657913,0.3595349159111976,0.32250782047746895,-0.05000573104657491,0.2873173841335799,-0.02301325672969057,0.10032687827278863,-0.13858124310949904,0
0.1941783810315627,-0.05075828245918501,0.018826373367872407,0.01805153751967481,-0.006604082470737184,0.09160673771458505,0.11011847858532064,0.16896685471554918,0.1841967607344941,0.21631013812118027,0.21947452797460443,0.1850465806970334,0.16879911916660006,0.10806138426777778,0.06271797838561355,0.043878897224558955,0.025963716717321006,0.011222562576193694,-0.007195523436870134,-0.04791009067828611,-0.06613123046331992,-0.08861893624029449,-0.1299695133190184,-0.20424925881154365,-0.23254748059744657,-0.2914892104443254,-0.22789184040578903,-0.16852580285968344,-0.13182062717788767,-0.16703093882919262,-0.007576767970029154,-0.3107839179708378,-0.4014535646969435,-1.025908922152766,-2.129234741804014,-2.5334355561693886,-2.7597913292823497,-2.7703988711925076,-2.418111569302212,-2.2904099336007793,-2.0694918262695605,-1.884832227200068,-1.755672993669549,-1.4596364631010594,-1.3465635806544967,-1.0117668880738186,-0.7617109777888871,-0.4111021230242855,-0.22160040218560084,0.10139201406566656,0.2850946622542381,0.48701122284332854,0.5853039533864859,0.6645778215787814,0.6887705878192207,0.7577580810007376,0.7731298244407867,0.8158141551035243,0.8517700919239459,0.910484460299628,0.9388064722262257,1.0038225176168254,1.057325038334227,1.1241840667761167,1.1595332044383113,1.1959670520597783,1.2229029118646295,1.2657808762041611,1.2789509776363701,1.2728661221568984,1.2569134776864672,1.1618751781621484,1.1179266574913527,0.9604639322070554,0.8980262562421331,0.7623426519113323,0.7217521547707548,0.2965515724154031,0.6035148543767903,0.2411593917883863,0.336408490027722,0.05050821567081698,0
0.16135671996241996,-0.11134454342421662,-0.05160358530640252,-0.07175473789792619,-0.11374283051906531,0.01436888396833069,0.060618122043024414,0.14798846773809515,0.18950828607087544,0.25075675614208137,0.2706305578528472,0.2723985567897955,0.26738154737239483,0.20843198785895822,0.15403899314112124,0.11536827001230421,0.08835321011881092,0.043735252957326054,0.00968102168737772,-0.042299532307602306,-0.06638930831870482,-0.09743574306638436,-0.15198894480763414,-0.23087705135144887,-0.26453166848592957,-0.31542630795755144,-0.26802490433478,-0.2594104642751063,-0.24637467173846517,-0.30253476197018614,-0.12242954442388765,-0.3148755210293146,-0.32780290279823276,-0.8157520892231567,-1.889170163614093,-2.492850027855665,-2.802252627376074,-2.883173529921263,-2.5327229812273764,-2.3085767927166962,-2.0150633721964475,-1.768219733187351,-1.6457815155441224,-1.302321296917274,-1.1839317697369651,-0.8147925033582979,-0.5591716575674326,-0.21470969333272194,-0.03620233004625106,0.23794922849970135,0.4104081743702963,0.5747089088287183,0.6523740816844139,0.7293860796645788,0.7658012565427157,0.854512583206315,0.8845020129686958,0.9441017359474486,0.9986233178814459,1.0540179076366343,1.0823769599088706,1.1287487623792956,1.1485855237444227,1.2194054600414788,1.244717266317636,1.2624183355586212,1.2898206628057025,1.2919563549298445,1.2919157008919484,1.2276844290032543,1.1554434082259633,1.0336020520872538,0.9670851198457342,0.7894052920862151,0.6967134834010551,0.545892122203874,0.49285998376198137,0.10091892152096449,0.4355124944826727,0.09132185830829087,0.20579911190839795,-0.06061884406562967,0
0.19356857046312115,-0.05627879966445448,0.02838278254264992,0.04727757479267325,0.04644973812469999,0.1508604496596888,0.14880907702155355,0.16927221171130213,0.15772465810267988,0.13339396927441527,0.09549296259643114,0.04357775620310633,0.01566981318100602,-0.034958617627651734,-0.07175714702609781,-0.10585534488517823,-0.1265295794309651,-0.15423154199439182,-0.19644759836877057,-0.2543395506148656,-0.2871211599281551,-0.282399268711778,-0.26968780505524137,-0.2795480655206646,-0.27406428752001233,-0.3551468086871523,-0.18791838121816795,-0.11661782385087349,-0.0063679879099183285,0.027618185489181712,-0.4935771202746224,-1.2419170756997104,-1.6648023353116237,-2.433868020397167,-2.7364045293432007,-2.6241977284743356,-2.561535815376314,-2.291911874445274,-1.9869322836774508,-1.8125954223970773,-1.642757607977206,-1.404809072459777,-1.2208510566850137,-0.8670994942205326,-0.6835251321070999,-0.31861268110554164,-0.11049893943597766,0.15409801678132595,0.28184806090195735,0.42218519743726546,0.4819315760934657,0.5806428926564422,0.6100143810428023,0.6582809628202071,0.6979686391784696,0.7427916733755637,0.7679360452437933,0.8150477512039274,0.8579642615942049,0.9276946696756454,0.9595758673347916,1.0342413744757977,1.091981852788102,1.1700406169588362,1.2124072438439413,1.2451042325302026,1.2722813062932374,1.3071492206031508,1.315077360274934,1.2913507603357033,1.252736350577898,1.143227923831759,1.0895874805265322,0.9236539594497941,0.8578992151335711,0.7192824972538219,0.6781836740690323,0.2641171786998484,0.6020359508204365,0.2524834987590907,0.3696243446939462,0.0955796912106095,0
0.17205746501871744,-0.035984303946719365,0.05636390283296322,0.10261103292050677,0.1212528667125099,0.21057129367535765,0.19900898415668422,0.20025088972915484,0.17683717531121346,0.14848173673123455,0.12178498289741668,0.0947133084918903,0.07914461882381119,0.0447226943666692,0.01315498451085517,-0.04919505941682445,-0.08134517600812785,-0.10399971391098717,-0.12499466364462108,-0.25048735466844363,-0.2898645546335885,-0.37981296861331515,-0.35274701588719637,-0.24926683010849615,-0.20604345701735838,-0.21849081999808107,-0.029234529091880294,-0.4573965322521971,-0.6618840843119393,-1.4646435348647522,-2.6064831831726405,-2.884067260008993,-3.023435644699602,-2.7923846125293483,-2.312950564912274,-2.1145043534544037,-1.736682890286236,-1.501566586075569,-1.4172097585821746,-1.0553949946977887,-0.963701016787212,-0.6401075230571251,-0.4331369127049953,-0.15207778140896266,-0.018427782396031493,0.22295571818259674,0.37485606765964263,0.5275303495618218,0.6092323178100898,0.6630079734339489,0.6750560234202254,0.7433445682909507,0.754628021223759,0.8182425563005182,0.8827132353012672,0.9875256689588738,1.0489810229118177,1.1474776259264985,1.2155875941715024,1.3100757090496273,1.3534270670748825,1.3585512826959203,1.3592255374429527,1.3632042126183848,1.3583949905057864,1.2594590227408062,1.1765862182011304,1.055484163270087,0.9886820504812519,0.8510645185106824,0.7111113367777264,0.534972146483959,0.4331759412972218,0.29865925842455,0.2891567534926125,0.15193522196525322,0.1365451089228955,-0.21604043550652108,0.13092431175748231,-0.13558820249728143,0.001694761798454179,-0.22167026690257785,1
0.23520824292243958,0.026033882575319467,0.1180779369233349,0.1752968389864833,0.19997895938678312,0.3170725261812706,0.312836676573518,0.32462755212747396,0.3054731763169585,0.2662706381442561,0.2459481363115259,0.20807091977423653,0.18844887195740512,0.14775146975421194,0.10419834724458354,0.03319320921933411,-0.0031162671602729137,-0.04214534810461856,-0.0840271379451849,-0.2030820362123933,-0.24583322018189335,-0.32188216917545276,-0.3026124563537209,-0.2221192681655637,-0.18642291490563423,-0.2353604388788355,-0.0006574507201122532,-0.32471590618732193,-0.41435986659435997,-1.0774761600958023,-2.3254944435903724,-2.7731612377822925,-3.000512921895825,-2.9138845123923582,-2.4461150493133683,-2.2409582113334476,-1.866640298094115,-1.630744490349418,-1.536301998336043,-1.189005393666399,-1.1015474159340854,-0.7692238439920871,-0.5423782273651057,-0.2268101418567312,-0.07282258395999719,0.2087219866626171,0.3745022269594358,0.5532315311787173,0.6466981757120749,0.7079406229628518,0.7246563587816439,0.7848116869449768,0.7931713617005016,0.8523811070564733,0.9105745014650424,1.0166351646565701,1.0758379837690484,1.168366574020581,1.2215507886783072,1.3053800171021166,1.339029815980254,1.3320123267573436,1.33674445676845,1.3218421921808456,1.3123345678515435,1.203106503396377,1.1061936010135156,0.9769414654778785,0.9057577508269077,0.7631804262330135,0.6191675623898547,0.45461627860158416,0.3607488153686731,0.23918812266195744,0.23900804033112877,0.11076382379429361,0.09387553417020911,-0.25452535462510184,0.05465854122847702,-0.24324491310250806,-0.1465400991654704,-0.37414188089731937,1
0.5604974617443261,0.16848261995305336,0.16033163592539523,0.09346989721431243,-0.007329531191416551,0.03821684373920675,0.010462482638047275,0.08589559824273607,0.08801382418763382,0.12796891377294628,0.17460572034224953,0.1728464544949233,0.1813142388771496,0.15241162706119127,0.11454434817760983,0.08268573609507257,0.06019863260014091,0.026640079451503595,0.0031450569577700076,-0.010812227104516127,-0.01928994914045035,-0.026336046760398805,-0.044315972587249064,-0.06905982689694667,-0.08414247495640126,-0.0833266839292861,-0.0830966121888963,-0.15058020710927877,-0.1732994903317504,-0.33165028048831147,-0.2048235347394538,-0.13776966805668422,-0.03928691752899027,0.0038370790250681335,-0.6100623822057756,-1.5676087694967684,-2.0433452570819366,-2.7473001879256334,-2.891611313129227,-2.5795793572439463,-2.372362074752619,-2.008245915897037,-1.744723807270553,-1.5160835407262248,-1.369164214314516,-1.1012184193681485,-0.8825180650894175,-0.5607418068532866,-0.39561684941914876,-0.06378202935496802,0.13702994596743423,0.3893641386501656,0.5169506631961482,0.646055540772295,0.694149267603386,0.7728557861112648,0.7910124817177078,0.8245755519816669,0.8567196457525412,0.9203149078039274,0.9505440458193846,1.0138110641573874,1.0614603068408144,1.1186033213665567,1.1471746780589172,1.162605445139171,1.1762305706547949,1.194583007925182,1.1981587564139105,1.1625458192169233,1.1346204100155788,1.0113633899350205,0.9529920211827729,0.783110541314791,0.6969098273470422,0.5409756938876384,0.49219205297639945,0.06701044250539923,0.34905069124932453,0.0041966414046825645,0.07769884077981715,-0.1756417651966089,1
0.260051774910238,0.05826018784505038,0.15049034734432354,0.22781703769190642,0.26444692811833903,0.39883713176200075,0.40185064996367714,0.4202012803879356,0.4035614321065495,0.3645362659954827,0.33881912390445024,0.31001287721535675,0.2899824821734356,0.24976479761741643,0.20594606872686683,0.10685922931013891,0.05910970666656823,0.008086479978786086,-0.03888911023965136,-0.18743535101975795,-0.24226469907767978,-0.33198665500927405,-0.27331354295353094,-0.12812833711385707,-0.05639805150894972,-0.05675189220915655,0.10351806967712207,-0.4255285847979948,-0.7125551265751326,-1.6231917229608754,-2.777212676157033,-2.968955751975762,-3.0500486342761715,-2.7620787211960485,-2.268472261899488,-2.038097724212614,-1.6665730445177651,-1.4492094552332624,-1.345838282504328,-1.0144688758888023,-0.9261052165344701,-0.6085208413169596,-0.41029717307394264,-0.12648982881613335,0.010443811894717213,0.25531482664278826,0.3943742218240729,0.5566651411053201,0.6368141251059569,0.6874964601574547,0.7059564047725004,0.7563026664440571,0.7627838235077604,0.817767355768666,0.8620332790760727,0.9879837044525033,1.0514021967242968,1.1544574725217274,1.226900558924413,1.3128236208703825,1.3536222064567838,1.3382209511966323,1.323445165838038,1.2986793282337743,1.2833795574978524,1.1455834489015615,1.0252749005620458,0.868753240969788,0.7717632464854347,0.6300483897769809,0.48484812688623435,0.3551247056520239,0.2819793583873107,0.19396878688063168,0.22501763075648284,0.06907566763052131,0.05060548422074618,-0.31101248400612036,-0.04395038738720558,-0.3554265686960818,-0.3126305147143853,-0.5517536507859901,1
0.2929863638624255,0.07011821784679029,0.13923038341118854,0.17351558984459103,0.16397303315680034,0.28725203653192466,0.3355267491169087,0.40804271164678596,0.4375674808130654,0.467838176289483,0.4492342862661829,0.40195875959037863,0.372304800925896,0.28108737868176803,0.2191092439155824,0.1676496638877154,0.1314266149812653,0.1152125801042132,0.09660989464499892,0.03402044360526446,0.012017876013850069,-0.020156331859169544,-0.04026472242564694,-0.1250250788877878,-0.15131408777855881,-0.19320852554202617,-0.16003001236246206,-0.037627630500786324,0.01586615712699313,-0.052357341283098435,0.15981849162483996,-0.18989446860094006,-0.29512157344508694,-0.9990634046543505,-2.2863598127180076,-2.8098875309782176,-3.05868142511684,-2.9832990988275503,-2.5215059298897984,-2.317958916525308,-1.9269665990723777,-1.6981082311432623,-1.6218114430890473,-1.2560752208233055,-1.169948587546834,-0.8013059027125422,-0.5682504570821862,-0.23156184603423213,-0.06719455941006913,0.20765052690828867,0.37270561962544946,0.4887232095502867,0.5546074445057343,0.5804784696587291,0.5807217916040628,0.6747792748215105,0.7019313538797647,0.7823086027746626,0.8325886134214997,0.9135624226798953,0.9565641559792439,1.0129094479391583,1.0646969705393872,1.1166961952776973,1.1382593981188123,1.1517610558156406,1.1789519820656622,1.1859218910071831,1.1968918561366593,1.127191562157364,1.053555957309726,0.9274344838331103,0.85391451713771,0.6907346295611347,0.6280220118436262,0.4298414067666769,0.3718919365854845,-0.06899658728244162,0.1878273168891269,-0.15568183715370765,-0.09818136823550105,-0.32946761036482286,1
0.2908645242252703,0.04045522495166409,0.10600097739899894,0.06803552654242395,0.010897330273024862,0.05852398737984288,0.055105735645334164,0.11430343536044774,0.13141547276347154,0.19655468483184535,0.21543050519751716,0.1885374074177122,0.17840220519970273,0.11736393156147074,0.0847569840406237,0.10966224993781992,0.1096941708860939,0.11069697048753113,0.09550259910911763,0.0017468591951654826,-0.031212423320781117,-0.12791151557841118,-0.22570585773106444,-0.30745359941459327,-0.3545047760294153,-0.4029631846374855,-0.35141476800828997,-0.34813052402832767,-0.3343837375400369,-0.3731207116935735,-0.2219858626930602,-0.4659585737741381,-0.5278788894642048,-1.0601280281319596,-2.0488692374089528,-2.442667812755545,-2.6743297283091287,-2.7014297099706717,-2.3852928443580286,-2.255913326170317,-2.057169888524273,-1.8685176112218507,-1.7299191123738993,-1.4341621912438285,-1.3155087139582164,-0.9804229259969439,-0.7261382429182639,-0.3904567980165581,-0.1988341409637826,0.09324283688413715,0.25237840054260374,0.4427790273303245,0.5186247061344034,0.5987839289297696,0.648963659616463,0.7188437347855654,0.7442799123035826,0.8023130996887389,0.8608820169510594,0.9310641365646788,0.9676636117479447,1.0407490319493888,1.0826169693029684,1.16321886939987,1.1991510160795968,1.2362991702039494,1.2705410123302627,1.3233051352630625,1.3424769772528222,1.3370865529688203,1.3074199463814367,1.2002291009363972,1.1517505158798897,0.9799516711283189,0.9055355087530756,0.7923594855066654,0.7542067249347468,0.35553064374894205,0.7054104361006068,0.3410719598859373,0.45436904182297155,0.15354391730185313,0
0.5245851903720151,0.30314957219543004,0.375626085251497,0.42799089518985056,0.4218431012368953,0.5373737461300436,0.5691031687143777,0.6283415224673874,0.6358471612860725,0.6476579121474444,0.6198430217009729,0.5464136984530299,0.510583337438554,0.41142874129199924,0.34161130345535895,0.27141503021373126,0.22710032206084918,0.20229051786745345,0.18288077447074613,0.12925237680637736,0.11351474702526332,0.09349910789339333,0.04142851273299897,-0.032417288547613055,-0.07395939131598084,-0.13566740258592347,-0.01112029436946216,0.11864438318468729,0.22247840966359433,0.21145604599638546,0.1736441770607513,-0.46485157937927823,-0.8346634442293599,-1.766117016005058,-2.7550401521016363,-2.90153684591105,-2.9498564661508584,-2.6899300377844604,-2.2554260799976067,-2.1301691823935816,-1.8478013675035712,-1.6701685177433987,-1.5790927823498642,-1.231217986919031,-1.1188929881992458,-0.7715250131075173,-0.5592282720794657,-0.21555559846198236,-0.05301593669701532,0.2168012991271695,0.3775886212883037,0.49959560498881217,0.5664338547002217,0.5937280723206015,0.5967039478945964,0.6757796652947761,0.7012025926078493,0.7724898997701999,0.8137763338113544,0.9012626187996844,0.9410972519764158,1.0028079735155515,1.0531882641225323,1.1128093681138083,1.1360701028928517,1.1288011609170283,1.144487295583474,1.1237067582571143,1.1205393569934756,1.0184715226053882,0.917482977638187,0.7561846191636477,0.6651502906605629,0.47983623686619836,0.3922328080205233,0.22182764391623522,0.17171747680549743,-0.24077164189331768,-0.03898366852038748,-0.3808257058684603,-0.41738031103952977,-0.6647498928425932,1
0.1512826493717654,-0.10978222380492042,-0.04748668640212372,-0.054761952339397624,-0.08716954450404302,0.01757483128271531,0.04350518121693625,0.11435041335979435,0.13965288426428657,0.18547329752443176,0.20037736895816494,0.17495143023487714,0.16287507299258408,0.10982275810225417,0.06478982861320759,0.0651183734676124,0.05248249620746037,0.04356059116488353,0.035860716387361435,-0.0014112066968081666,-0.014856551022624844,-0.04842474068394864,-0.10713941020065221,-0.18533037527980412,-0.22045094690671618,-0.26576604553286387,-0.22764430248615497,-0.21736184230865518,-0.20723718002639657,-0.2663481511273318,-0.07419729272292841,-0.1460290628520653,-0.06900261010287068,-0.3540383085871852,-1.3700180996808449,-2.1054785547594257,-2.4937999772078374,-2.85069048310943,-2.666414876484917,-2.4693064463722223,-2.249592300844771,-2.0139493009875835,-1.8567158945911224,-1.632994616061712,-1.5328846500245987,-1.2515359716364394,-1.0065768731395934,-0.6748375147792132,-0.48128665176607655,-0.11551233516112092,0.08810476877611251,0.36734982655891457,0.5003096103506763,0.6245173326359605,0.6697167931098704,0.7264306816800428,0.7334683473513905,0.7455067608249806,0.7605192430264367,0.799582051765185,0.8163068218146208,0.8701183132200327,0.9126963411021976,0.9809601924091638,1.0170179148948364,1.0831261987702447,1.1374201180920238,1.2024180950213363,1.2333886422316098,1.2573046598733342,1.2632136489962775,1.224265876127724,1.1991699879639484,1.1047065666495826,1.1057271335712855,0.999966707978146,0.9911453840367344,0.5353106289920717,0.844990504107983,0.47171566808170695,0.5688309372309845,0.2580841194760666,0
0.2577266650836023,-0.04961003174438616,0.016513008041073363,0.006407016502144812,-0.017618616471388297,0.13090955584743114,0.143158768036038,0.19871687736587518,0.2129183867965594,0.21336678577750234,0.21353060649317257,0.15061050261188313,0.12485059849580438,0.047414895098455645,-0.04574759700323483,-0.030193964386228348,-0.05182131026491277,-0.04287892763287715,-0.04453399868678076,-0.13399727448094723,-0.16072534698099616,-0.2096517287364037,-0.25451692267650117,-0.2809372290526255,-0.3035348513024303,-0.3507007626464258,-0.22190666260441816,-0.17895070274033031,-0.11760857781145262,-0.1039638781294343,-0.25477319368575735,-0.8210842427195075,-1.177883954603132,-2.016095683617987,-2.662742273515164,-2.6873701885316024,-2.7109663191232887,-2.4580185516093476,-2.107020622645029,-1.9602386918243582,-1.767645908970973,-1.5715330887178283,-1.3927506331082604,-1.048025622191311,-0.8769191006480597,-0.4842811980834014,-0.26627407043605444,0.06575347988185598,0.2268434487695501,0.4329217782751158,0.5380976891456157,0.6886142956290868,0.7401130239897427,0.8225214690743385,0.900394128093815,0.9487715297671144,0.981883791921959,1.0236080850083056,1.0698199815963392,1.1445387906981423,1.1747293826628535,1.2316004668462242,1.2540707064439545,1.3015242074634372,1.3208984162196131,1.299440311594985,1.3133897659907134,1.3238023190894808,1.3242440929679518,1.2454827667941686,1.1267955617141538,0.9558049794641619,0.8577528605971452,0.6572619016036114,0.5498250239440452,0.4138246192586763,0.3705645069629213,0.014489641517933192,0.3874434612153408,0.062004274164770834,0.19057613213294644,-0.07447614930879354,0
0.041538429205829175,-0.1788389794213714,-0.10742639759409656,-0.075115170556316,-0.07579424355969167,0.028534858758483495,0.04869233531145767,0.10611992810247273,0.120581623375692,0.16601958753859236,0.19421933621048026,0.16796405511411194,0.16290518709472934,0.09643703969868511,0.0428679668155425,-0.006062932055186822,-0.03953385316658142,-0.06652903775265884,-0.08523079860793104,-0.13613477345121794,-0.15354223019628677,-0.17758322136191396,-0.18898893754943202,-0.25129953200330135,-0.2670281275537718,-0.28416907449485507,-0.27195449352371526,-0.1886992398867946,-0.1603895747420765,-0.23390984257849823,0.017892535060347825,-0.17657560350413348,-0.1530290858957315,-0.6277218939858002,-1.877207035395866,-2.562207058713132,-2.902479191452431,-3.005372810985283,-2.582985563337597,-2.3309368899858303,-1.9505632566608515,-1.676408159707897,-1.5711994244660588,-1.2163229497159413,-1.1297084679847167,-0.7826152840750638,-0.5594110646794874,-0.2573578870728852,-0.10727161110906991,0.1463514651454787,0.3081024385752613,0.4586572899684569,0.5369298642644225,0.5970553794666316,0.6077892500352888,0.6762548658266283,0.6969887262946628,0.7531765215003574,0.7942045765451056,0.8780816863913259,0.9219594389220802,1.0040128387423835,1.0831093348730434,1.170411020415223,1.2189570610605358,1.2620584720379853,1.2871435191249887,1.3174810679081688,1.3265174065388976,1.2964289013804589,1.2581406273488867,1.1585752748490705,1.1013807652086598,0.9594915478487849,0.932782146092066,0.767296421714228,0.7311013789227729,0.2820404900146656,0.5890001582837954,0.2501469455736398,0.3720894850955574,0.11570916164858858,1
0.6179645040091515,0.2113337827416757,0.1956199431012564,0.1401904209875795,0.04162967493532932,0.09780120852586549,0.0876325796544748,0.16969922967972195,0.17649899394412216,0.20457858734845047,0.21898728180189408,0.1853853643461676,0.17408866120841537,0.12261613211662592,0.07415350753425543,0.0537891470995433,0.03580651100349996,0.02150472161267203,0.009451853370052275,-0.0026540156923431386,-0.00952394581474181,-0.01879728242935386,-0.04056556230607811,-0.06317402563265517,-0.08027160826664925,-0.0800933327819493,-0.08841596719183542,-0.17446430380272915,-0.2027032008074059,-0.35777245725319773,-0.25377400777657755,-0.2019696212791473,-0.12990928511472788,-0.06818410880656245,-0.4805551802249681,-1.2492834367959738,-1.6797256797707298,-2.473694899192596,-2.8276129926419404,-2.6429631430130174,-2.559014022820042,-2.252533394630788,-1.9306388632584817,-1.765392018995911,-1.5921796182896415,-1.3871688337051253,-1.1978702324854105,-0.8780093817162289,-0.7207666399481027,-0.3605815007013078,-0.1617173055056611,0.1464951094127116,0.2956749509019545,0.47284705489930445,0.5701354801359173,0.643271190887944,0.6689645428382818,0.6702004255903233,0.6554677033977967,0.7007535913448635,0.7072516123057682,0.7667525610294845,0.8199259346104384,0.8835368559949401,0.9219187848841841,0.9763967013700707,1.0151463234465083,1.0706454091361408,1.0925582367031623,1.130808868107053,1.160974766508005,1.1292465484877567,1.1193715321122824,1.0321713310943323,1.0380914624350694,0.9563684143152997,0.9506455303436141,0.5082669607015404,0.8236917030837034,0.44593769550434104,0.5474628737717708,0.237976933473675,1
-0.060652270719010914,-0.3133119968459326,-0.24185484614748276,-0.24012298413310873,-0.24541945241841745,-0.13932867512474445,-0.12500460129832902,-0.08561716253845475,-0.07881077317158258,-0.07473422716417844,-0.09105607052691056,-0.1364051980884824,-0.15861464956163474,-0.2034614738994236,-0.2307255774176582,-0.24283897500558993,-0.2509158783419707,-0.25049729232215157,-0.2618707864203742,-0.2980552892760784,-0.31765294467017213,-0.3171066748572571,-0.34221822235414834,-0.37695785058892284,-0.3930303491858922,-0.41890920400544474,-0.251813579726921,-0.0996271462794951,0.020352556064594296,0.08695079638190606,0.06028475893227636,-0.44606278876880623,-0.7604053808903792,-1.6152772852055683,-2.441128756280156,-2.520267638009585,-2.58200873714926,-2.3844471650845342,-2.040596818264394,-1.9762914656844224,-1.838702542110891,-1.7004449348992239,-1.5412685666323505,-1.2352359609977626,-1.0724981484406797,-0.6850582410473152,-0.464217376388099,-0.08845150183236683,0.09110925274714532,0.3422440007414309,0.48658330145184436,0.6090730142097414,0.6603723872141956,0.7008845876891954,0.7172684661023467,0.7976330670743437,0.8254943332381188,0.895605082429654,0.946724674244301,1.0219972816845555,1.0620969189601652,1.123479697926939,1.1734931987697905,1.2291711622261658,1.2572558750278588,1.2838854744138928,1.3032587797470043,1.3402687101425101,1.3519192539804692,1.3474424915555545,1.333717086079787,1.2451334432092835,1.2015758035843334,1.0645445931825321,1.0315798901281994,0.8929520300306564,0.8628834001796335,0.42112759016992385,0.7514714610368927,0.38825864996041304,0.509105638446286,0.21776766066501096,1
0.4267989790269411,0.2098871012746173,0.2883888438879083,0.37372136829080915,0.40311363540764944,0.5494220972573416,0.5699873187533626,0.5894172385985073,0.5771860948711875,0.5271075475677023,0.4749511272161939,0.4270040560625503,0.3959802068914797,0.353147413705166,0.3254815880643136,0.2665314262688341,0.23735688411050404,0.19551755515396252,0.15845311823357378,0.08385627124545891,0.05181757683209298,0.03890645667833326,0.0104941024452998,-0.0709639415755916,-0.10204922351503853,-0.2297092264702556,-0.08729963742531055,0.05426916588773878,0.18815616288455317,0.28128041007651916,-0.1667246784103753,-1.0415048650832865,-1.5445594357147847,-2.484809713153391,-2.98300522283324,-2.845866655657291,-2.7566180557687927,-2.4589562294648957,-2.0806072425123983,-1.9441627301056421,-1.7703944230737712,-1.58092868858715,-1.412960207057946,-1.111522411128682,-0.9621758880840652,-0.5916819388203933,-0.38968166102733903,-0.03384740725849156,0.13368336579603124,0.35275743608238486,0.45291844552263427,0.5087840198353746,0.5225443576696307,0.5105577404517305,0.4839968012185878,0.5583283429668029,0.5815119856443545,0.6470008224386348,0.694778652338222,0.7477376135119016,0.7803629306350572,0.8326392051131037,0.8786454223834852,0.9248226877540517,0.9499405592123935,0.9703705683897823,0.9916422667221312,1.0030169653844396,1.0094258486029943,0.9755803080609127,0.9568351828985513,0.8747534758222315,0.8280483102410585,0.7039264131468883,0.6607575465806335,0.4629310833449125,0.4119527266693268,-0.05580570711975241,0.17554226891896718,-0.16515994966290748,-0.11288066377464645,-0.3311886313024246,1
0.13378635602536804,-0.10207120680960458,-0.02003527316854559,0.007311945271609941,0.010597996097700955,0.10879104896275749,0.09827580677567482,0.1266791267780647,0.12003655812686276,0.11240052524588862,0.09911388223837747,0.07483589308886707,0.06069039588817304,0.033799406095518236,0.010656417455862764,-0.022223664971441796,-0.04044510589749706,-0.06925948339416976,-0.08199022007607937,-0.14705203890193985,-0.1726201161873533,-0.18988061611395324,-0.2321258831674129,-0.2787681102751023,-0.30388357260527243,-0.38476071559578173,-0.24532338843257406,-0.14757512085620306,-0.04327703606323752,0.01641844976033724,-0.31216103586194066,-1.068879637926905,-1.5137129586053497,-2.369450793927726,-2.8460407151676907,-2.6967701549457352,-2.629397643419641,-2.3295224306080673,-1.9760474661717904,-1.8378719951737246,-1.6615323955301804,-1.4684708866769043,-1.3016723380160435,-0.9791659633734007,-0.8284272653866083,-0.4532916789887764,-0.23782678384453249,0.09452539649450387,0.2629318876394109,0.46258898714454233,0.5541765117040356,0.6451858455023398,0.6681291776447722,0.6792093603881,0.686858643474018,0.7368775648552557,0.7605544765259467,0.8185653794755154,0.8612584432278751,0.9420033853099667,0.979147323460019,1.0510339012550602,1.1061628846293274,1.1637259908799962,1.1932287767517096,1.210607323958719,1.2388736247963479,1.2535943013480164,1.2620964158066883,1.2228980936082863,1.1694699547231835,1.0687876701747996,1.0087979695732656,0.8621209111133155,0.8205474896787166,0.6592331707300403,0.6206765800483538,0.19852324368908114,0.511041071791162,0.17165453833201383,0.2858490205129769,0.01752544415519708,1
-0.16919493820935116,-0.4208958313239677,-0.349987660707626,-0.328338632675397,-0.3121733826438202,-0.17186124081329268,-0.1409662799994038,-0.08852528138262272,-0.07780104732665194,-0.07905770880917373,-0.1006727079059786,-0.14655515621654303,-0.1672637208387755,-0.22200453343639026,-0.25140703934795994,-0.2925609713396753,-0.31612284714017136,-0.32231310197715146,-0.33070319197584297,-0.3694145691425561,-0.38489412106828524,-0.3789532109970679,-0.4103164460993156,-0.43164355437961177,-0.44178688740520045,-0.4909827903748081,-0.30702025748472295,-0.1539310032549821,-0.014140437673610508,0.0880011762647328,-0.16474256820717414,-0.8829846831021584,-1.3276329526229205,-2.2103331481600357,-2.7148693702597084,-2.550744502157815,-2.499217278328004,-2.194696777047385,-1.8406546887824575,-1.700241815280254,-1.5237111416585982,-1.3127258697789728,-1.146003208655518,-0.8446572607377973,-0.6980884624750594,-0.3778796432555893,-0.1930983079281745,0.1345931128218396,0.28346368248205067,0.4901849480684177,0.5939813319196432,0.6717154660692515,0.7036556873686024,0.7167194860202386,0.7222535545714734,0.8080167106350515,0.8425925181541558,0.9294915781506532,0.9825080572594302,1.069386037384426,1.112630189206044,1.1759776121967747,1.2303230266332221,1.294072472887592,1.3249023872408472,1.3469952971386974,1.3760177630811938,1.3803788873538707,1.3840332336491983,1.3401542765543581,1.2854041285850784,1.1880925154898136,1.1318616571180513,0.9952291574286534,0.9742748617329156,0.8088099160855577,0.7711326571865129,0.3331311722912531,0.6656056158849992,0.3208280558598062,0.45745935098511836,0.18211858654544955,1
0.29349318420153025,0.07691135700871854,0.17170964713893966,0.22138647231980713,0.2419227842777687,0.3370999098129772,0.2985294666443039,0.301602008486185,0.2741090377916464,0.242044746391457,0.22241336320296057,0.21048125250994332,0.2025139645053713,0.17804234167906685,0.14831068863104946,0.07915365305445476,0.041268606850607625,0.0010527291407171884,-0.024562627285064313,-0.13686955754356234,-0.1713971824992342,-0.23593079997346678,-0.24422000772997166,-0.19458985940742934,-0.1815784592935259,-0.2546400893542753,-0.010364430405616078,-0.1381677764870446,-0.059153491855241214,-0.4015378841829502,-1.6087985372700366,-2.3668062487625843,-2.767833526116008,-3.0607993781526868,-2.732433984975348,-2.461368519617242,-2.1368917792712345,-1.8756477271867844,-1.7244029617134409,-1.463830002395298,-1.3747106296476304,-1.0717412304832585,-0.845261500197342,-0.5242504412967222,-0.35916252420822303,-0.03167467478871089,0.15123898392365476,0.38344581415555723,0.49797486401135416,0.5858803373015462,0.6127297696332406,0.6423156704268749,0.6365141886485901,0.6455990109837728,0.6491600035624501,0.7410839026429059,0.7821267135977052,0.8854629539681511,0.969381018993289,1.0454122006665827,1.0939621561451744,1.1373878960027284,1.1641990834246982,1.223599149906228,1.2407810520262288,1.2286932514251205,1.2257553196198288,1.1717926554216476,1.1507703018550615,1.0420623079439437,0.9538165452995102,0.8053904597869632,0.7238622499080734,0.567267714188624,0.5054371385229501,0.3215375441063486,0.2708579193240439,-0.1521118103443868,0.11403903354361233,-0.21219847835482852,-0.14258370842562584,-0.3565492224240572,1
0.0929666905674651,-0.1590630485425777,-0.08074710993952294,-0.05367423096991075,-0.048889100139028585,0.06427578088958796,0.06058349082555736,0.07626691522280993,0.0637466761148957,0.040626574192870635,0.020090864516951967,-0.029890414236604105,-0.05209836000464918,-0.09186282732338213,-0.12278037371387995,-0.15603055845654978,-0.1739872964247482,-0.20862242872507863,-0.26145280268259796,-0.30453674748080317,-0.33554734644692985,-0.3241232606571032,-0.2758898043920581,-0.294472915684878,-0.28448948854168066,-0.3623160729848749,-0.18076146370232493,-0.11439901680481057,0.014726639501816406,-0.051754456958150286,-0.7868511336828163,-1.6368817443666224,-2.0783735289857734,-2.671723051627435,-2.7476011783765752,-2.500873855087015,-2.340328499736618,-2.0512797960004256,-1.8102638380384803,-1.627688962975249,-1.5008063555669118,-1.231512803979033,-1.0096604066287576,-0.6752878711767956,-0.4871875100814407,-0.1434389489265513,0.049278656880225924,0.30951388654280976,0.4302545722481099,0.5478971191247055,0.596092932762069,0.6706861660579264,0.687917154164424,0.7353763768633144,0.7711200092636119,0.8353151442297317,0.8715589718666621,0.9387941254443462,1.0074076014772189,1.0849258175144456,1.1239136421388523,1.1853566493099166,1.2144700598408917,1.2799323962252842,1.304824110776515,1.3072919614473193,1.3248641423311227,1.3266616530881734,1.3257654574083304,1.2676238592554512,1.189079354617114,1.0731731868702141,1.0049728763187744,0.8372641289205731,0.763282513039286,0.5861763589256341,0.5283904083190905,0.11656620899564274,0.469989828887762,0.1481209697875343,0.2934865590990583,0.043238069130907775,0
0.3594412610535258,0.01714299505795225,0.03669307017065648,-0.02604484339265412,-0.1060080233830547,-0.05132924583585918,-0.06989940806475659,-0.009522138968613094,-0.0021749003272120166,0.04479225794262476,0.07000017056638086,0.06419326824970994,0.0681388179127822,0.05400506521192483,0.03893115024209237,0.057965370785048265,0.05807046900153523,0.041262885171200026,0.025840851180568336,0.0038961026652728475,-0.00835371180537692,-0.03901348148151129,-0.09960516298492905,-0.16794731095747295,-0.20819601303870172,-0.23500177992228544,-0.21196659976831,-0.2640088876726878,-0.27286424054952363,-0.38409820534858596,-0.24906898045740178,-0.1990566841786361,-0.09916007655522208,-0.15129842844544328,-0.803282140665825,-1.629914244553273,-2.0647645898000526,-2.6444189339959747,-2.741190111885615,-2.4893036406165283,-2.3268077948701826,-2.0604896671447666,-1.8197166547018782,-1.6529879707579944,-1.5429551069229959,-1.3017313616562483,-1.080049410124115,-0.7460520963848829,-0.5515919380574701,-0.16762900489779753,0.04400146162029017,0.33923289166792614,0.48343908804685753,0.6250328860646874,0.6911857388112708,0.7669925704235823,0.7825585498224683,0.8077158707546204,0.8356765134554749,0.8816932706616072,0.9022958336442883,0.9633594031283224,0.9940953614828842,1.0792396727473772,1.1167196842773706,1.166949404373625,1.2187092219998803,1.2533067116725292,1.266656293153524,1.276815887794271,1.2640225137798993,1.209363912681141,1.1853262340667499,1.0502382866763824,1.0110905561695844,0.8792967904128872,0.8426057683590997,0.41323829768990805,0.7422758188058154,0.3712751997735495,0.47812003418493987,0.1752013772826828,0
0.11380173441870767,-0.14905251870744962,-0.07253107945123105,-0.068625581544012,-0.08121538422788177,0.02427823042025068,0.016967730983466822,0.06041876668682278,0.057857562299368226,0.0614604134800274,0.06739710757694439,0.024290577202130237,0.012569566365151273,-0.02979435025076072,-0.0782792592687187,-0.08421264081439972,-0.09985902486601361,-0.11815544990641058,-0.1377025136089003,-0.20339612629776838,-0.23008776073422155,-0.25045543372016965,-0.2747015019214061,-0.29419466138105577,-0.3081432123537198,-0.3855674723922533,-0.22972789721358566,-0.17711976532989837,-0.08825154419412229,-0.03811397325043231,-0.4616362966932286,-1.1588628336946094,-1.5537999479580584,-2.333437565027973,-2.6830607475867323,-2.5703043267110885,-2.5268810712669616,-2.256485870537354,-1.9584635407881503,-1.83587467734894,-1.6987409284293342,-1.5307337502788734,-1.3544893111981082,-1.0290757211343617,-0.8519328278160927,-0.45865801199106215,-0.23874737194711315,0.09776055448796939,0.2639786538299802,0.4652917278120796,0.5695289821187117,0.6752153270205739,0.7092846153415948,0.7370986023650019,0.756745042604571,0.8042145040981907,0.8241199256162091,0.8710410093097636,0.9062076555129579,0.969940539011148,0.9965532744999805,1.0606393964163345,1.1129081423688447,1.1703399511341601,1.2057189017574785,1.231038236559172,1.2533256835568807,1.2951707341928298,1.3056591748290032,1.2960148324759615,1.2665644451419809,1.1630975095682246,1.1104975084921165,0.9486742612171852,0.8917092210351214,0.7514353241143183,0.7125321201169399,0.29158696153573516,0.6116896285451432,0.25728218093593824,0.36546287691849244,0.0845732880175376,0
0.11548993098497107,-0.12266654240777086,-0.05685156988725737,-0.03742707058049888,-0.04953384306595865,0.06014141580606491,0.0979683417927717,0.14264170890220385,0.1570877448423076,0.19624691870792077,0.19638544357778898,0.17685735175965078,0.1667871960022751,0.0962349740732904,0.04319259683666843,0.013999986217051228,-0.01445753916920012,-0.014117852097001561,-0.008302216690708521,-0.052674442778688046,-0.061157585353008415,-0.10357721305788914,-0.1554595950798756,-0.1895020818499873,-0.2162385862986369,-0.20312299139131085,-0.16101986289997683,-0.1636286475688209,-0.15081238683681875,-0.26864103886467205,-0.09807536659594973,-0.09581289410177618,0.008194589605487577,-0.1346191306902469,-1.0436547108354368,-2.0009247259539915,-2.4644934599968558,-2.9546774515846073,-2.8785832373312608,-2.5502661396452373,-2.272572673332842,-1.9455192951220308,-1.7383628054744094,-1.508070930997924,-1.3998540980927956,-1.1256283082850551,-0.8985627081419025,-0.5774027350061743,-0.41148758353174486,-0.06976720715633888,0.13848987763943654,0.3859567279924292,0.5158219866477438,0.6319332314302528,0.655557744563211,0.72963301530217,0.7380336452366123,0.7563954178786645,0.7769759975667796,0.8256891714789987,0.8512048502266794,0.9057505234423928,0.9494216932324306,0.9975000618714276,1.0222827633728926,1.0625730229150818,1.098090197267247,1.1388963113791846,1.160025268867365,1.1727870230744841,1.171827587780136,1.1274758392816153,1.1000400853811527,1.0129564259385049,1.0311348036984924,0.9237804386788042,0.914749821727483,0.4782992130927042,0.8054061191200788,0.43984711834546175,0.5580934529700698,0.2509859244594068,1
0.3961127089409189,0.12403149491745324,0.1870786803097957,0.24469388395717573,0.24592314160674533,0.4039758021520683,0.42905422413659977,0.4807264097256123,0.48283590258088793,0.46842389557620834,0.44295579710991717,0.3790190411402037,0.35183654683878274,0.27509527463690375,0.20764691321603124,0.16359178862364132,0.13083999227147558,0.106661680800066,0.07987127210857636,0.030023398827523806,0.00724177941361148,-0.004108526825959304,-0.04041228152615872,-0.10473841283661045,-0.13587007049336108,-0.2572967554455303,-0.11325136837205463,-0.04156143566402193,0.05913500251237025,0.13260076382390906,-0.25698055737300507,-1.0413803432709159,-1.4825142970713259,-2.354470082104033,-2.822908492319552,-2.7511025826756326,-2.705072387051418,-2.4251895878704346,-2.079455980387385,-1.9263778683754378,-1.7472041552937476,-1.5381704278036459,-1.369466258759033,-1.0258167730002015,-0.8465428552436229,-0.46401681646781157,-0.2474569725695659,0.10122217052956728,0.2618227852574009,0.48360622131376374,0.59118614095852,0.699266255839909,0.7377415384458033,0.7801665866890701,0.8141006626914589,0.8955743660454658,0.9308545424137478,1.000055243438453,1.0547903343566603,1.1158361365204286,1.146412791274642,1.1718429459722302,1.1932947266354077,1.2258935433486755,1.2340511524788056,1.1918799661166233,1.1601062758021357,1.1054404473188626,1.0771804704426842,0.9523566136275079,0.8328572312126354,0.6577548694557294,0.5636151747394251,0.37938041036594683,0.27925282757907866,0.12876874432592444,0.07295014801253075,-0.2957753506026606,0.013969872114905966,-0.3217409340363915,-0.25577057274880843,-0.5011875561687731,0
0.3929612681514172,0.07368884693815403,0.09635693618697871,0.04432308023120157,-0.03890326386765963,0.004380638568790117,-0.0074433624975256425,0.033410934177844354,0.03832133967365081,0.11342621156495625,0.17142446659162403,0.2083946463722981,0.23409612913021505,0.22798085840757665,0.20101217423138706,0.20185386338634714,0.1875228633164383,0.1352282192360832,0.10536948467701279,0.05415985169695148,0.03560745678831978,-0.015145646403219361,-0.10678346151329521,-0.19045971029820663,-0.24707602917742832,-0.27755240397149805,-0.23644093286380752,-0.2911916831151302,-0.2935396796593963,-0.4093877271891557,-0.27328493455649294,-0.24893888753613425,-0.16404482446046842,-0.3140796053096153,-1.1214826504132276,-1.9823118017000478,-2.4079387997417765,-2.836651363974564,-2.7565359195551915,-2.46384751250584,-2.2273884204805157,-1.9600101257890756,-1.7665985404983608,-1.5512384424295824,-1.4467277520754713,-1.1549029798330182,-0.9108373667468221,-0.5790126349068601,-0.38821570653490767,-0.04122596456612371,0.14575610934606686,0.42773612988570164,0.5562504699187798,0.6902973727979855,0.755950632589979,0.8165179216706591,0.8313623671821446,0.8656216754877022,0.90895285706452,0.9698592309353558,1.0017190475819788,1.0663240354782957,1.0949116537858146,1.1699249788065984,1.200519099740056,1.2112568851419923,1.2413149750572643,1.266506626065862,1.2736758903635845,1.2590994603611918,1.2094259477315603,1.0903496684518288,1.0307562694345265,0.8465998017266259,0.7672569722404177,0.6317974168295777,0.5827439535631171,0.18940409127745284,0.5217764480649265,0.17471111969975794,0.2949537181555755,0.022172351257232492,0
0.16808330695860718,-0.09799917791752222,-0.03921163227362712,-0.034969157563402575,-0.06288523139308211,0.06086897251389445,0.10053677356474111,0.17388147618565597,0.20154308585220804,0.24918630571520595,0.2585490812131894,0.2703806108050415,0.2678916802627356,0.2333285206665323,0.2083323101808574,0.17239624866785164,0.15485357960415058,0.10550981639300971,0.06592151657182654,0.015010916626067681,-0.014360571760292375,-0.046542910440891205,-0.10046281261402612,-0.18854174313257488,-0.22543874564503597,-0.28055568337844505,-0.23677309141046976,-0.21193377539697167,-0.19348075702541934,-0.2429802101446512,-0.0811617811260632,-0.2961005829058294,-0.3207842090112365,-0.8197330229562496,-1.8530461901037008,-2.4310006308761505,-2.740355763043053,-2.862848411925909,-2.5526686427143863,-2.361975495066952,-2.1217549258279185,-1.905517302822627,-1.774684026353853,-1.4553745647949512,-1.3295801304676331,-0.938859442216053,-0.6669385857865109,-0.3081290587257115,-0.11124878057939469,0.18087607869093603,0.3583481191456528,0.5482301810944321,0.629449721426333,0.7258082231887002,0.7679881426405046,0.8558764508924739,0.8910394834034108,0.938883865468739,0.9798565105655399,1.042626646218146,1.0647005842316446,1.1156322640489051,1.146155917983343,1.1926093296705815,1.2121931325776885,1.218155423661429,1.2465346523821026,1.2602582510117415,1.273147990152978,1.2091133633512925,1.1157421805217353,0.9923297716741075,0.9128661846382968,0.7460394792919303,0.6817148536865858,0.5230948434568461,0.4816665719945874,0.08255172834052615,0.42625451606015474,0.0921111489255182,0.21410909839538306,-0.03856508250056834,0
0.20957150548413495,-0.012183924457232822,0.07846223326919954,0.11809720994870787,0.1338405614092295,0.24625861270464355,0.23199024996719686,0.25953802832763984,0.24723370733210714,0.22931250400444014,0.22396122805322705,0.18459577258791882,0.1663728259567563,0.12311452050713001,0.07770576702331056,0.04363256386901071,0.020539564638916374,-0.0070503734645299704,-0.024097966688962916,-0.1126858255337666,-0.14685328582778112,-0.1834497496008325,-0.24118510851577213,-0.2860686720581782,-0.3141675384878795,-0.38123284852946426,-0.21611180592860535,-0.0992425891951001,0.026963504908543712,0.10772320290068649,-0.19342986419279384,-0.9674503730748079,-1.4367444755027847,-2.3834991731490014,-2.9519817500884464,-2.868001706476831,-2.805253761153243,-2.477187231618382,-2.0881035459594184,-1.866206203311691,-1.603307230743848,-1.3528699253552467,-1.214459187934171,-0.885572839611033,-0.7622116247370521,-0.4321359199496868,-0.2300474078373469,0.07277940105336711,0.21643631620916892,0.40175458597783376,0.47909633337648927,0.5414382464965897,0.5583476159921759,0.559157384198862,0.5802968816227931,0.6341252369254065,0.6670017056604536,0.7424914357771755,0.7826522046801401,0.8841246832688157,0.9259561825587994,0.9986600570860631,1.0571317057984544,1.113815781407503,1.1425690272768207,1.1606456193715573,1.1886047563673046,1.196050769263742,1.2022413252417437,1.1605594930394219,1.1072361512297846,1.009571299716356,0.9515585899206584,0.8054055168380359,0.7594381467594218,0.5938036587169861,0.550433629948401,0.13618193285102365,0.4726546257865962,0.15419980244657694,0.29380787656894825,0.0384237276209447,1
0.10161877325482038,-0.13688341003054916,-0.06625349371802969,-0.02760686187092887,-0.01875602610941485,0.11436607269290988,0.15572718970738464,0.20586054467677428,0.21338756450798257,0.20878251600792908,0.17009523012293215,0.13426035199313446,0.10892053960198211,0.055549015228912424,0.030129701608096582,-0.020594190904361657,-0.04348422108599692,-0.06664949416123989,-0.08811061019608246,-0.12862823120946842,-0.14807019669547117,-0.16745614995148372,-0.18893623787067781,-0.26467230134294795,-0.29116849525647837,-0.32903607528108125,-0.27026629695745186,-0.1433474020560297,-0.07983916975984329,-0.11216726069482519,0.047917800604281524,-0.3838831906592688,-0.600090097280372,-1.3732341352194481,-2.4693639643073197,-2.73082054666766,-2.8692930179981335,-2.7170934472736468,-2.292701014491991,-2.180608044929235,-1.920550036757776,-1.7263644437566725,-1.6151893520273042,-1.283254703714512,-1.158902132597909,-0.8243671315648733,-0.6101367640380744,-0.23941981984801686,-0.07283733987004837,0.22878129124259772,0.4046590911297443,0.5278742526083207,0.6034513136212638,0.6282502767378872,0.6267433670665383,0.7093075020592252,0.730356958317742,0.7863170909112185,0.8168639327043081,0.8764994914646138,0.9041433338109002,0.9610903055316768,1.0207373076507977,1.0766342006297691,1.1125235852844497,1.1533592112164897,1.179599134120764,1.2255342821100825,1.2410382264585493,1.2446263217291573,1.2335166271657272,1.168824910655232,1.1289598622353338,1.011703679289262,1.0075575697059023,0.8546950746653152,0.8290309333940584,0.37167270592186696,0.6645052465926113,0.30885288200072125,0.4169748554840922,0.14101012684797354,1
0.1067944839905266,-0.12290685294289005,-0.05553227107227343,-0.02012953030826026,-0.018844862710743374,0.08670115047512184,0.10606692728269707,0.15503727562723668,0.16214540829760438,0.18870905779994018,0.18810225864171315,0.15276787688956972,0.14001606033615843,0.07603172408505543,0.03648919769913306,-0.0019174247538700246,-0.027949259212320502,-0.05273798353421455,-0.07714937815622847,-0.14718544437444336,-0.17634071350740044,-0.21349067447788173,-0.23375957320879337,-0.2907730970953111,-0.3051257793187645,-0.30653782956835585,-0.2676650408141441,-0.1693027466950312,-0.1266961104158284,-0.19611513868108688,0.05618141137396293,-0.20689869751828383,-0.231340206242443,-0.8016077965865485,-2.0936260958665827,-2.6485994112984077,-2.933533135904333,-2.9612028575571503,-2.512349887703042,-2.3247027438449734,-1.9629506172930498,-1.7221743675841807,-1.6343955240935095,-1.265991945230251,-1.1746442794943448,-0.8101221072565892,-0.5729307908376029,-0.26712389039859374,-0.10826567762088501,0.14767046281944118,0.3096388600667126,0.4734294616347938,0.5564019438525705,0.6171595540588086,0.6258724672324973,0.6929739141966564,0.7081466034215254,0.7458398227947072,0.7749354660054166,0.8350362876438666,0.8636091500413343,0.9366454842562817,1.0040155490115765,1.0741356335747767,1.117232226295883,1.161648720114016,1.1958917668044151,1.2466177673040235,1.2660431700338464,1.267192625312731,1.2427402755117996,1.1621188012485035,1.1153398561170746,0.9824646929523411,0.9766996492376521,0.8254952366611832,0.7966128012936622,0.3607735089324322,0.6802874452449004,0.3346299511550228,0.4630334712922064,0.18173463174309745,1
0.4559620778264559,0.14529415901915854,0.16987961315157207,0.09078703185419101,-0.00859372119947466,-0.0038600854832608906,-0.029655825380892512,0.011081628578153866,0.011655001082999659,0.06302604565055958,0.08261526909605266,0.06961260207177133,0.07182207374616922,0.060728640797897526,0.04054315812992826,0.06854294916357162,0.07128363359981194,0.05770398037842739,0.05358166093576244,0.0422132862349045,0.035677020364275336,0.009649401880125195,-0.05254284415231325,-0.11340013203665222,-0.1558206631645973,-0.18858149374740663,-0.18645393243084385,-0.27334275363261185,-0.2972289583132124,-0.437670891923986,-0.31643874407167516,-0.2855227033862846,-0.21294410352394522,-0.16465553845197434,-0.6174647296541025,-1.3072443503359814,-1.7067920842083808,-2.4337619434723603,-2.7241826833449183,-2.5680865736586007,-2.4990668583877884,-2.187793420271605,-1.8773532393617813,-1.7118443271252914,-1.5456718506480307,-1.3526115463588404,-1.1714410424491533,-0.8080570327019778,-0.6237013602083863,-0.21960835432869175,0.006062812314624464,0.28745169302914775,0.4264574851086138,0.5732601193745097,0.6652038937623814,0.7364770472967237,0.7684892413002018,0.7747231615852925,0.773197882311635,0.8162378605207081,0.8138543293359106,0.8893482754269328,0.93861042942126,1.0459931016969648,1.1027413203435827,1.1728451432916245,1.2397107968359862,1.2773931751323957,1.2939279251972948,1.3051424168361905,1.3056781467133547,1.2593822317803358,1.2445326668714856,1.1122814679032018,1.0482977339341417,0.9190302402064106,0.8759749038052433,0.42798396894635715,0.7341127891372992,0.3688573385123064,0.46131636518788355,0.1683495156215713,0
0.08575857907797513,-0.1545444275156811,-0.08298880370321626,-0.07165897505310426,-0.08225070705963589,0.030555816153452042,0.055130128068071826,0.11498853118425245,0.1341392933025105,0.18654054130445985,0.2062246241717105,0.1703090402481635,0.1575707750407176,0.07341270062148197,-0.003055436673939484,-0.017914939236497677,-0.04732015541726042,-0.04231820305093237,-0.03244198211137217,-0.08886075248052094,-0.10088471118508124,-0.13676897644239716,-0.1688197164966212,-0.19887509614270016,-0.21537280586196061,-0.19707397169339202,-0.15172936124714198,-0.1379211419904749,-0.1186225196306836,-0.2427164106098587,-0.07281595885752523,-0.11234312705135352,-0.03010904261817871,-0.2319135787472888,-1.1983181797548212,-2.094266547533957,-2.5386083307801357,-2.9696190150755113,-2.8355832544140993,-2.5409600539445423,-2.2591028612990325,-1.9561518317369693,-1.7661999803564683,-1.4902253140666417,-1.3700355658600891,-1.051297820530415,-0.8084718544590288,-0.47643948588477514,-0.30447079759710505,0.019358188411757737,0.21009518972044106,0.4339107253895662,0.5470021280089483,0.644386918372426,0.6679641523650162,0.7278207486350681,0.7369432135979324,0.7602924838372829,0.7827648314221634,0.8367416492483528,0.8636606451560027,0.924573342988289,0.979843260360596,1.0413693824535812,1.075214922995663,1.1284708092164948,1.1689378385382767,1.2230763690929862,1.247723858275819,1.2547067162812624,1.2530567646247235,1.1923750419558914,1.158623457412503,1.0479116711446395,1.0374030540600288,0.9046248583042029,0.8828297768765694,0.42943245725954426,0.7340950218170335,0.3689157598704682,0.471737651376273,0.18090257910082386,1
0.4072772111702534,-0.045493132840107364,-0.07464388485774265,-0.14679396104655495,-0.24833931576242207,-0.17328654126782794,-0.18874320647592668,-0.08670337820283436,-0.07099164654956525,-0.036973251061169776,0.011879953426024768,-0.0044180997960126,-0.003991382968614234,-0.05760924069723217,-0.11494408205363982,-0.14646029679478545,-0.17388791988766883,-0.19599498341352728,-0.21365630203968067,-0.24795505981904853,-0.26036899614639,-0.2814217649561428,-0.2956832014500961,-0.32224654981141043,-0.33799953778461855,-0.32487039153132713,-0.3128726320956332,-0.324559613997188,-0.3193185556598266,-0.44185554755809164,-0.28411637481610086,-0.2884955675500649,-0.2059841322361322,-0.3268738827470514,-1.0905983801056003,-1.9535766995772725,-2.3723394138907548,-2.772365096206827,-2.673710695296905,-2.3500852429759167,-2.086531062830648,-1.7566414631945406,-1.552269097575504,-1.2840397783574389,-1.1703664207140996,-0.856766291780918,-0.6343253143042134,-0.3367558253660192,-0.1810553773392627,0.08973695311238572,0.2642225780573568,0.4813473625118476,0.5901556363831091,0.7069691420276456,0.74821823458214,0.8338407577886997,0.8596934133393859,0.9080479282950549,0.95075454339338,1.0293505431463856,1.0678228143420654,1.1384445998470056,1.1938187120127353,1.257747036033848,1.289248193723921,1.308691664915031,1.3260208249945222,1.3513124548222422,1.3567116121958662,1.3136647077432997,1.266172660673071,1.1343445648399282,1.069083992939909,0.896821993297344,0.8266907665163501,0.6771073960583607,0.6341107821563767,0.22010481613250477,0.5574944834784006,0.21695457990708888,0.3423659628551192,0.07618109003169593,1
0.09232014079440631,-0.13549846247288855,-0.048793939576249556,-0.0064405628960884104,0.0128770313480544,0.13112697966491993,0.12809509186093493,0.14541401314569669,0.13315305645725317,0.11230355783698087,0.09446426486714898,0.08067833004606939,0.06934639340880722,0.04908321635730317,0.030944589212147378,-0.01979887746670528,-0.043124056424339585,-0.08108529130661424,-0.11193086499298488,-0.19130501314542414,-0.22246226778899825,-0.2552782071787334,-0.26842692759841924,-0.2619891348418051,-0.2676105342892612,-0.35569699333334626,-0.15278666737346214,-0.12825632204797444,0.0011713787031695216,-0.07758482807324896,-0.9124974066275797,-1.8582849898834013,-2.3292007367119005,-2.8909764513920635,-2.894105344247584,-2.540365940351844,-2.27723772418142,-1.9482261011933577,-1.714578838170592,-1.5326940277580192,-1.436875772988138,-1.1969463318315938,-0.9819656714498457,-0.690344169396873,-0.5290801409987793,-0.18057144371778833,0.015687881642293178,0.3072450900871857,0.4510019840621098,0.5796717128622575,0.6162678754942874,0.6505533830687114,0.6383300690079494,0.6264205438915411,0.6312086861326378,0.6892662659405318,0.7217220406686096,0.801679800120624,0.8530125997784594,0.9233311362747969,0.958832952434868,1.0128555436963183,1.0587373897248398,1.1182208722693119,1.1484099585289158,1.1707772078973093,1.1975486447044474,1.2086038327429947,1.2134094411633356,1.1735323471025794,1.1241145032001612,1.0307050754608795,0.9732666415930922,0.8310296063534395,0.7851953406063075,0.610715437340744,0.563028250888614,0.1317774442712576,0.44896687303913296,0.12574167477828269,0.2622645591358719,0.01545058251738851,1
-0.031909564785443933,-0.3181064630484798,-0.2524733797049237,-0.27823749979530277,-0.30235287279322876,-0.17640937366029164,-0.16516205765005765,-0.08000961557798547,-0.05044810720708881,-0.023657096233556277,-0.017936320249020813,-0.09083533415818579,-0.12249188061532834,-0.19591698788897105,-0.24901025795821852,-0.24809358468891674,-0.25586633559363037,-0.25216711928610636,-0.264649715766339,-0.29798301543092975,-0.31494899943854904,-0.3164480794433402,-0.33513809579877574,-0.38402382351628717,-0.4014954232989254,-0.439406066489596,-0.3375156041631442,-0.25754579907027164,-0.203484360617054,-0.19936956969992536,-0.11878302779511785,-0.4880129376212423,-0.6771987615284232,-1.361980796388785,-2.211894413785757,-2.3607105522063403,-2.4809615826107585,-2.353374681638499,-2.047439871550628,-1.998385279005337,-1.8772497974209124,-1.733696023064958,-1.5735799442406417,-1.3074941468132764,-1.1627656213326354,-0.8424592324222147,-0.6279893072128502,-0.2644609003458882,-0.08755530615252383,0.19638032418042428,0.36045550401377824,0.529778668427987,0.6096183805995921,0.676796919665243,0.7073338238046247,0.7788888453350467,0.8024401811997919,0.8510916212026132,0.8901610550438335,0.9546004153783514,0.9840899510451209,1.057734891264424,1.1200981853970475,1.2020431744496278,1.2467117233027167,1.312861263498064,1.3657527690829383,1.4427491077299877,1.4761089078044662,1.4925870433573323,1.4777368761664391,1.4037576694133236,1.3647562934429516,1.2141767484859969,1.171227413724381,1.0276391587214704,0.9905792389164034,0.5377992583933562,0.862549735927864,0.4814446310617768,0.5878272140052374,0.2760751875207106,0
-0.02386187212814406,-0.30774660962846667,-0.2395694869356788,-0.2370651982012788,-0.24380774567160302,-0.09395635970452076,-0.07385338967642952,0.004140629174692377,0.027362516761968436,0.031759777957219626,0.027389920594920625,-0.06550154458746249,-0.10358263359627529,-0.1936144636389443,-0.2651213026059338,-0.28472979907679985,-0.306940455114038,-0.31344449889537174,-0.33475474327846655,-0.38940431014658117,-0.4126427604900371,-0.42677500748578723,-0.41200373924251465,-0.4136332133095948,-0.40945488163693966,-0.4594135748138868,-0.29843563038617305,-0.2874569321670748,-0.20193077408737992,-0.3366790344055488,-0.9895815278823825,-1.6840482579926608,-2.0458354674735837,-2.493404127335138,-2.5188944349517612,-2.345950953177649,-2.2357847591554023,-2.0057921435689856,-1.7983781030627668,-1.6397499620254479,-1.5318274944687893,-1.2913763264925784,-1.0748651168692973,-0.7284246561236429,-0.5298754544364357,-0.15028930488255554,0.06112976063847242,0.3572998472499762,0.4992667589933859,0.6521232312135439,0.7207339969772235,0.8272927474182339,0.8583226194097335,0.9160040740818332,0.9589332323950117,1.0238947712607285,1.0560099554935434,1.1136040792694217,1.1749251243267977,1.232961021981147,1.2629766510123943,1.3054444612807075,1.3261994016202436,1.3747343000477628,1.3939208979475737,1.3632707647841258,1.3470507070866446,1.3109008354484075,1.2859916547179324,1.2038205087582412,1.1039913567236326,0.9589654544843071,0.8811683818612153,0.7216759660923273,0.6579873503242908,0.5451142749454618,0.5184325781627166,0.15561094927310393,0.5745863444329871,0.2521263455076479,0.41363429813311825,0.13577780160023423,0
0.21746712192560125,0.00556623077024909,0.10769459450364849,0.1554362874806614,0.17349179970389628,0.26204352162612565,0.2227202259038208,0.1961875939266946,0.16389232736305104,0.10470065046836652,0.07525056427540733,0.07440375572308255,0.06539512206632736,0.07188049510433103,0.05371446412622305,-0.008111594424129011,-0.04217154737348494,-0.08510251253279222,-0.10285718487559592,-0.22418690241885741,-0.2561668743330401,-0.32142955422020947,-0.32609754119374657,-0.22235415816229676,-0.19218073123580837,-0.23701039053537443,0.006710867792790507,-0.25455908241950453,-0.2729738558813324,-0.7939884770322649,-2.011272006736359,-2.545491172323829,-2.838009321768177,-2.9452518317197094,-2.5409948733751477,-2.337948431673567,-2.032438606852221,-1.781349180581664,-1.6479098297132388,-1.3599764017499965,-1.262736159076816,-0.9757054013253779,-0.7692111960691861,-0.44513587670477506,-0.2947008794381176,0.018938397827852782,0.21486104752595026,0.4283384119286069,0.5412744257809194,0.6213893808461322,0.6304296343101399,0.6721611547810014,0.6726029286594724,0.6903235720668519,0.6994038772867128,0.7842961335162499,0.820843812443826,0.9205759970695269,1.0041272723305354,1.0853799381747962,1.136380278144948,1.1795295705448083,1.2094647949233277,1.2703265999229885,1.285930221949556,1.2875907135418458,1.302730277254355,1.2622114516768832,1.2536801265391304,1.1396061007667484,1.0303768317474962,0.894394194382393,0.8106706664571135,0.646370233139713,0.5933528506078716,0.3820497243801029,0.3223346643901337,-0.11271051909752572,0.15786529095969826,-0.17445647413617138,-0.10671630706551127,-0.3306408557844023,1
0.23903664872816677,-0.026687177191412562,0.049524387953731264,0.057779566774812,0.043767475046621485,0.14525079471206936,0.1322884805846627,0.1774406619182045,0.17371253607262105,0.17255043287083538,0.16688536797526865,0.1016491884979871,0.07864080989492095,0.030978618147571524,-0.015612716127492378,0.0037494469878254204,-0.0021453885071096596,-0.006367686768896876,-0.011563272812018967,-0.07870025441670947,-0.1030899668851788,-0.1428243201017665,-0.2086944014292058,-0.27811312855344283,-0.31972569832083053,-0.3884704718390566,-0.24429830439554934,-0.1794496934128773,-0.10245787188114974,-0.07391301559867713,-0.22840227443715122,-0.7923865573686477,-1.1580399658534901,-2.0002181738324083,-2.6735200730303257,-2.6715038962490727,-2.6892820575915497,-2.450307835755053,-2.09380587705639,-1.994084909933738,-1.828097710469926,-1.6626786888283398,-1.4999702375208486,-1.181044580193788,-1.0210885578223738,-0.6453493342470402,-0.4226692507993022,-0.06667057403274157,0.1105789232071217,0.35285590919639986,0.4943135914725332,0.6217266587901591,0.6707822300437698,0.7113865796713341,0.7301714554485272,0.7933586714158452,0.81592106016614,0.8706552476612828,0.9244296987210561,0.9833873890420719,1.0136866929155275,1.0807104454961518,1.1218580535264167,1.2074724459253972,1.2484761085474076,1.2758435034360005,1.3084877924435077,1.3359744391765958,1.3420294816949436,1.3103479405330205,1.263973126652381,1.152801196903738,1.096679652722763,0.9157496099187057,0.8220528936449583,0.6637370358468857,0.6067557340496634,0.18369656549786129,0.48607106057435345,0.13094147679570511,0.22286808614535403,-0.041026006927879166,0
0.2364164207005075,-0.024070562856010728,0.04689422227236406,0.05759376276457573,0.045280106397378006,0.16150729047314627,0.17690794345125482,0.23108200864649575,0.238517180466161,0.25625047179644156,0.24225915879873128,0.21322886318967704,0.19702145341509691,0.14314702353620135,0.10555830009746359,0.09375959487694985,0.07647801507884822,0.06819242101460077,0.05450465816651473,0.0030408621643474004,-0.015572965512660632,-0.05130394999005716,-0.10625797043086038,-0.21299589977963507,-0.2600419569970924,-0.32849462372450944,-0.2480258279590899,-0.15799339563437798,-0.09987950245547239,-0.10321433812703873,0.07132880475302983,-0.27110286671504724,-0.39847648455886286,-1.1060445053779482,-2.2470210835183533,-2.602160190881805,-2.8045450257592544,-2.776020835279379,-2.399686180619378,-2.292238311312529,-2.07907661798561,-1.9100605421280274,-1.7878203999916593,-1.4511728946931335,-1.3195742683183376,-0.9464191358480889,-0.688944616499672,-0.33610415619559575,-0.1506937372743664,0.14355808103048417,0.3148501054429502,0.4881968150447875,0.5662128171904754,0.6305922504617243,0.6473531574337343,0.706461117124455,0.7231626993152389,0.7612323449652365,0.8009218281696278,0.858284976782052,0.8853822481744018,0.9558646053864095,1.0122231475512677,1.0804755554994188,1.1194678972391472,1.155111249679301,1.1830146755860795,1.2385739894800025,1.252808323282025,1.2618988672966154,1.2572010673619545,1.1698798076533805,1.1341256353173321,0.9748738312245848,0.9093855967123474,0.7765315134191155,0.7332286390983143,0.30690600529703005,0.5946387227694743,0.22254947894465715,0.29252200440734555,-0.005719029008687928,0
0.38515870428557974,0.05647532501090069,0.07221596620222925,0.031180984913987686,-0.045671107183785864,0.030286294939251945,0.04618202375662861,0.09922500327529349,0.11511139672100512,0.17188189980321056,0.18932730031698242,0.21409313792124607,0.22345470885514374,0.21191649061818651,0.2115536156873361,0.20776887532971955,0.20318942381648952,0.15503155394782908,0.10859590958085619,0.0605419333645969,0.032296110116426746,-0.01652125858921494,-0.08967744693070046,-0.17985623379183835,-0.229318947706453,-0.26333433178463395,-0.23300099897575421,-0.2812290347024131,-0.28754486534533896,-0.3952187409887884,-0.2679797331815621,-0.2330741762439672,-0.14609621729984923,-0.26831309629231015,-1.0113651659512009,-1.878745866015489,-2.3075011169880675,-2.792363043303687,-2.7764726973820686,-2.489268783543295,-2.270770494889959,-1.984448171391488,-1.768229068559016,-1.5397112158399082,-1.4177727417217802,-1.1096198021551444,-0.8742884832551603,-0.5567956549081714,-0.37665972097768474,-0.05549974784195655,0.11953786859533722,0.39620244896531176,0.5194814523404361,0.6534762578229305,0.7317063712348713,0.77690974654206,0.7925284256197003,0.8145364137495008,0.8335134174983807,0.9061290577063588,0.9352834234162515,1.00783281259951,1.065314309633365,1.1373448328366607,1.1747814800595648,1.2049774925626622,1.2329291010328731,1.2608430668754025,1.2682493291570083,1.2378325802851862,1.1825150826314896,1.0800075823520814,1.023151254078762,0.8662480488123236,0.8139136541171368,0.6856411303242851,0.650460631634104,0.25112806302153245,0.5797168840154754,0.22369592281332729,0.33168810451645214,0.043494038999142504,0
0.17450845179232033,-0.06375613122712309,0.027056858625194025,0.06607449621072448,0.08093791360656155,0.204696032346817,0.2043253277494088,0.22001447382606898,0.20683082104789463,0.15553897656897675,0.12148052932472808,0.05473744017609761,0.020946105017877414,-0.040301160489242704,-0.11015413296641441,-0.17024682379728517,-0.20645782706287719,-0.23408119181970477,-0.2696748559913189,-0.36734844059436966,-0.40186944044756956,-0.45663103177566455,-0.3944782352170364,-0.2973021355814254,-0.24986820872833704,-0.22917771256739172,-0.06336464789923468,-0.4316712593535854,-0.5727570324682247,-1.2681774761934435,-2.2398332990478114,-2.5339212966369917,-2.709396960332616,-2.591465882714841,-2.2455844902755135,-2.1266306248210025,-1.91270945383798,-1.7343613941518576,-1.6054987845274695,-1.2818175081896293,-1.150444587010412,-0.7912721850187623,-0.55579405987082,-0.20147936369622244,-0.02893880860881382,0.2468449342734118,0.4106668545077241,0.5822127408012747,0.6640402848554885,0.7581224616366953,0.814297006637446,0.9273640168340904,0.9730052511864713,1.064447324632603,1.128186230951222,1.2161251308947953,1.2583432952563243,1.3067505098907475,1.3492363886203478,1.4057009324247574,1.4280925742158885,1.415974659512635,1.4088388218682937,1.3918788606811034,1.3804490532118692,1.2641902493288484,1.1658201255431777,1.0536077535654158,0.9864511977943309,0.851620424836284,0.703489758665782,0.5134032219634364,0.41064637691826533,0.2657222603441909,0.2392125150846951,0.1277234838404624,0.11134924193999751,-0.21311665732923757,0.17317650505443538,-0.1054792197493839,0.03789763425646697,-0.20119749570014278,0
-0.0443945703938482,-0.34622881847785436,-0.29166808821106827,-0.3354783851530172,-0.38255636331874854,-0.2493484393253098,-0.21636536666866846,-0.11341609251078921,-0.060179178174308845,-0.00045929992799642773,0.037313420674848885,0.008579447830904028,-0.007637297315341131,-0.08995540009350123,-0.1748211559131505,-0.19741636903478366,-0.22431428507093187,-0.24672038163109278,-0.26775749110773006,-0.3267946826584094,-0.35107176838485543,-0.350782070722218,-0.37501398529544616,-0.4027017942308646,-0.4193256820381137,-0.44038477480931704,-0.27639632359014144,-0.14273066524409472,-0.03313882243501354,0.025251217060564102,-0.05401542374721657,-0.6224338576490922,-0.9847074098796611,-1.8739438712874055,-2.5984853669970187,-2.6209667864551704,-2.649963241341939,-2.369375132246086,-1.992653210232497,-1.8564480296525403,-1.6462469289927775,-1.441587274839275,-1.2979955567146177,-0.9396896880121979,-0.7833562415583479,-0.42949461205052586,-0.207965339016269,0.09921295763443538,0.2503026354817308,0.45123416378964976,0.5601514507106771,0.6788073371244607,0.7252971868752951,0.7827383310122755,0.8216623137401342,0.9024596543599586,0.9380213975832987,1.0083772755662963,1.0806463024585824,1.1544261538554963,1.1914387945201952,1.2465816303814492,1.264663040732529,1.3388861717130212,1.3610703273403715,1.373325261208386,1.4150022751543645,1.4082946600425288,1.415109782499023,1.3380095501995726,1.2215610274730366,1.0979122229235685,1.0213097767325792,0.8548646170603931,0.7997199743530103,0.663198294559507,0.6270270419087467,0.24922003350960864,0.6270583605749778,0.28690391751112543,0.421520880343941,0.13316690894424,0
0.6679512033010937,0.30386960037772326,0.3051798649620636,0.24912728207500123,0.15043072142207592,0.19069387827233442,0.16308557056657946,0.23525100494748585,0.23619869574199726,0.28002706114523335,0.31925098033045884,0.3165651035601229,0.3210831223049766,0.2889037950345923,0.25275783822963405,0.2051167263537863,0.17893552594869533,0.12291365944582111,0.07828937832288574,0.05723540494904711,0.04177783631788401,0.03970598609028997,0.03224461500175835,0.010092982604724908,-0.0015135946441020582,0.009711135789522983,-0.007726133916669655,-0.07917244353834718,-0.10909381542987973,-0.30776467808975383,-0.16054104867586716,-0.11611973660139085,-0.008062508437632234,0.018764037176431714,-0.6700844554671157,-1.6596886596263367,-2.150733500466538,-2.8338792855868373,-2.9621364888302226,-2.6352377088912995,-2.4133749974610392,-2.0628902880825315,-1.8002483393764983,-1.5956215095943342,-1.4630953688734643,-1.2090574708618647,-1.0000832187234998,-0.6791620504177835,-0.5175762528382677,-0.17192839526107662,0.027467916119476854,0.28782992615209224,0.42385954151654204,0.5483912915409093,0.6112105131800121,0.6816955806612128,0.6964331211100827,0.7285209015099454,0.7515584907920925,0.8152064525222329,0.8457526920332796,0.909369335097189,0.9614393279755404,1.027504548684881,1.0604316091115322,1.0872807403022051,1.105816572454657,1.135880685190358,1.14332760150986,1.1219146680384497,1.10735751106143,0.988147224027152,0.9323340482521445,0.759163506147857,0.6693322360254754,0.5184367941370169,0.4684350377940021,0.04136105714419358,0.3063013141259532,-0.03251094340528482,0.037195072253418004,-0.20731095957665246,1
0.18876537117095182,-0.06681451944099592,0.012432246059368877,0.03566256559524561,0.03768141500306399,0.15386403020765727,0.14930565856592892,0.18968746497863975,0.1828497569455365,0.16762376575987048,0.14818029456876047,0.0958675820271182,0.07187658027105215,0.026401274621491666,-0.009918741693866197,-0.04438824643239769,-0.06554069292025133,-0.09603092020130788,-0.14045343683987,-0.2052653086179248,-0.2374789659647547,-0.24634726790551298,-0.2455456305064061,-0.2555248416753031,-0.25701067147515033,-0.31684046619429296,-0.13894803287362834,-0.0352989069818932,0.09252702467614426,0.1642955551907761,-0.3012910495515868,-1.0786093537595285,-1.5236396206660032,-2.3798652291578772,-2.7904629940288315,-2.712452374778902,-2.661327475353752,-2.38065459506036,-2.0378339246778214,-1.8776152320504451,-1.700021831764083,-1.4850081964404858,-1.3106720880126659,-0.9524917951161918,-0.7677892081658868,-0.36533139803268,-0.14522802773500132,0.156935668626474,0.3021588182348509,0.4598504106954522,0.5280856536053804,0.6218498254679332,0.6459676075940308,0.6754011310308101,0.6953619624967757,0.7361813268136572,0.7534526678170295,0.8005318505468466,0.8421989268391172,0.899996923086519,0.9305422591745014,0.9843992228741527,1.0276897504130744,1.0789951462379577,1.1053001156028657,1.132903303911256,1.1490041097642418,1.1877796299685244,1.1975146157690233,1.195783958318735,1.1964250875534077,1.1071711047691508,1.0702870513206122,0.918086464245178,0.8493934869826418,0.7094984254668262,0.6649855665218283,0.24256361237141988,0.5660008139113728,0.2157563397827289,0.3296346238911667,0.06158598928597314,0
0.3056014623920973,0.08980260185506239,0.17515680841150782,0.255370537731757,0.29004361380079047,0.4348138473129026,0.43756717967204395,0.45953029778964805,0.4450240336452538,0.4026899299904656,0.37314347867064157,0.33938225761456664,0.3178801864008065,0.27273402788769374,0.22432470526612036,0.14158982331426984,0.09831555739050657,0.05530629556562161,0.025278319752494838,-0.12752214023767294,-0.1767857999371074,-0.26460484575414256,-0.2564541628675059,-0.11492721815643847,-0.06427620177117177,-0.09935491479610192,0.1590834063914741,-0.18870466042518075,-0.2606586938090274,-0.9581381892684284,-2.315646379336318,-2.824370833119726,-3.077262851902071,-2.9815368027486957,-2.468802788013843,-2.2323708739657047,-1.7940511582960248,-1.5466053878145338,-1.477160160280409,-1.1563209023325278,-1.104066310008026,-0.8009942217553387,-0.5871190500633432,-0.3118469457765656,-0.1775491924264898,0.08889466167538274,0.2478245460161972,0.4444657181914806,0.5484668779372939,0.6169068967418099,0.6354544733940983,0.6800332822227944,0.6752228555461102,0.7138866524314338,0.7561885339969265,0.8760435639581345,0.9468020674868143,1.0649613723562226,1.151555075356967,1.2582896921545057,1.3073154504469926,1.3340362955625267,1.335460993735019,1.3381504841976124,1.3310360275657942,1.2094325728340323,1.1134369460025155,0.9725014422575811,0.8929499220435062,0.74537395763452,0.6014047592394718,0.44280221518897633,0.3536045457757311,0.2336495369954008,0.23871111528397648,0.09354217105946105,0.07778014885560935,-0.27807096881043947,-0.0189165342738491,-0.3421173401119617,-0.3105589656278127,-0.5554034799659959,1
0.33315827498318384,0.12329911995328047,0.2174897075022102,0.2634224463633572,0.2754997070287146,0.36344222066454535,0.3469604714194219,0.33181849857874113,0.30259005217757107,0.24007648867524267,0.1868663758896716,0.13861906713763972,0.10731515681661818,0.07153568863476778,0.02530150761114669,-0.04012408956862856,-0.07435719860531975,-0.10710809153442113,-0.14124001718790424,-0.2480023389594166,-0.2878911775200095,-0.34422532726213007,-0.25952188645304375,-0.14506089446809511,-0.07935644070245473,-0.06631071051210569,0.08777652506272915,-0.2701419257155919,-0.410870244437767,-1.1380500742789543,-2.2321630866609024,-2.5640478584920166,-2.7499553106691534,-2.6849508592078797,-2.333648213172479,-2.1993849404693595,-1.992276934526192,-1.828509821957784,-1.6866594517896765,-1.4358570129125638,-1.336689317131576,-1.0269698419713436,-0.8032743109992673,-0.4533368501419943,-0.2712245276877141,0.039615944924875635,0.21156776931534438,0.40278569283528753,0.493882357529813,0.5723145365671485,0.6038265353339938,0.6808704542624326,0.704646742470203,0.7666914294021296,0.8151657984843368,0.9021823034792007,0.9464114875819902,1.0356296345846943,1.1127039687562998,1.204393278981044,1.2537665540122873,1.3056420097907804,1.3496615997426389,1.4005294376633515,1.418678604744258,1.3722790972998595,1.3408140765323608,1.2963307294074653,1.2774823128747457,1.1236462289118023,0.9667162220944547,0.7598272209591386,0.6328191883153664,0.4312112972732649,0.3389853537482921,0.17019008954468973,0.11908013424272923,-0.24891027913909625,0.06488980743232986,-0.25308439483745104,-0.16016221327087976,-0.3827295194060838,0
0.5150932253758285,0.3100914750219559,0.39036001200810944,0.4849438897310563,0.5183678328431043,0.6708867259782139,0.694374822228454,0.7306650255826881,0.7196194740568274,0.6894337003484594,0.6542348320559697,0.5925945775158539,0.5602110766329247,0.4901849480684177,0.43453770099623057,0.34970838324017706,0.3047898873392825,0.26091394165465687,0.23288524108295405,0.15620178795719397,0.13047591277653936,0.11300491527594403,0.0809312885040896,0.02472512369608637,-0.0022188669163440995,-0.06445959665323642,0.06628740291289148,0.23728551368841977,0.36981737608869736,0.4022005758306051,0.24938024053302144,-0.5333114734912101,-1.0020517775807356,-2.030027220122939,-2.9309092565417885,-2.966954594602954,-2.944993678579069,-2.6594753075013076,-2.236100881942672,-2.113240690443133,-1.8560815410294325,-1.6978674688966109,-1.6005832596342984,-1.252127563173083,-1.1338039858764724,-0.7326466532444087,-0.4969541156891921,-0.13693641085032482,0.05118427726397812,0.2785144297944768,0.37820565924126015,0.44097037435548003,0.4499148649746658,0.4466315244177679,0.45741628781905064,0.5591643104423554,0.6053759058893675,0.6926827108289118,0.7355947041038675,0.7886358767764037,0.8151814578174523,0.8416881916667336,0.865073297687637,0.912864980074211,0.9296322110076716,0.9490130448663194,0.9890997330780067,0.9742709468996367,0.9787579481192807,0.9092326170734495,0.829532333194777,0.7156766346629482,0.6412294547624953,0.5027696313549228,0.4956901070815931,0.2984671304528632,0.26504619875102975,-0.1784080466196727,-0.01426932603079223,-0.31826606778984967,-0.3373307035759723,-0.5661036227402505,1
0.09779910053871532,-0.13369974715175204,-0.04774837794976605,-0.004594568434583836,0.015332836378000534,0.14524055591733998,0.1525239526621931,0.18447742416648794,0.17707447443611812,0.16571513396590376,0.15958089135891385,0.1317105909644951,0.11960713103027132,0.07203437816629332,0.021469789254183524,-0.028872858725115694,-0.060101182649752616,-0.0870069283524586,-0.10760166166858198,-0.20351598042430652,-0.23729105396736827,-0.286454433706659,-0.29807697142962297,-0.26277571518983933,-0.25854679182558016,-0.3444373305412327,-0.1161588849341797,-0.16904496998066776,-0.06152919337348095,-0.28281665016751134,-1.321302064928922,-2.2335539817537367,-2.687746163096886,-3.051350909212786,-2.8281598647368984,-2.4582569047278273,-2.1043998676205824,-1.7893605857458788,-1.6082533214506967,-1.3288426361060957,-1.2332902888581572,-0.9145677511500665,-0.6866871128323524,-0.392392833643477,-0.24133477560343408,0.057470596086801606,0.23874002482203593,0.4749429964086147,0.5956433292170402,0.7011694670954896,0.7322249360738127,0.7909697196926615,0.7946090089369164,0.8244008901892244,0.860785952965216,0.9476997688717645,0.9963117594007755,1.0842160281268818,1.1453973437503038,1.2235404274070447,1.2609972510783862,1.278604966602721,1.2991325454710605,1.3192297938197441,1.3249915249831972,1.2541869468782352,1.1919691038589733,1.0856069985049714,1.0319656517766802,0.8978479807574331,0.7597992148441435,0.6055406300281021,0.5125043160144003,0.3789826030766079,0.36699327558951467,0.2307040766645727,0.2090448098376143,-0.14550387291065192,0.2115466894438427,-0.08510221139177077,0.04548488229196579,-0.19316275210676537,1
0.24987230496207502,-0.02516189791775503,0.04857760058228422,0.04304202632594212,0.02100753778625375,0.15767888466741908,0.19292774236946997,0.24590477200443672,0.26087720245003965,0.26560692333297453,0.24878006647726636,0.212936756398868,0.19275247829498454,0.13072585982434504,0.06420681959567531,0.06747811451171515,0.05111923080334435,0.04633560567756945,0.03544213036754229,-0.024264196532804764,-0.04861897664278558,-0.08815337222112873,-0.14847402680523913,-0.25246073178202266,-0.30784839529371766,-0.3963185079991334,-0.27238090921009217,-0.21624611482417322,-0.1423144883524472,-0.10161317131597514,-0.22330486036702268,-0.7675567272973254,-1.119622351753204,-1.978487837724387,-2.6763000940124932,-2.7065429339444265,-2.7338909428797633,-2.4781504311754983,-2.115583492304779,-1.9824572528134095,-1.8024532939355744,-1.6188218655985764,-1.4348549661636802,-1.0876342490314421,-0.9035827289695177,-0.4952159297133676,-0.27061020000395075,0.09149561667766903,0.2616975105924766,0.489925665648947,0.6138572416175592,0.7347530149489074,0.7793800063410359,0.8320929353001887,0.8712364498326863,0.9333076371745008,0.9630965070165942,1.018024930470574,1.0832565928325337,1.1499493914305816,1.1824093821329598,1.2382358081129112,1.2477864956082811,1.3111339185990118,1.3288367946861257,1.3096056279151398,1.3494670626427805,1.3401027814396897,1.3419746740290392,1.2402727259820168,1.0942949169738796,0.9120127509835001,0.8056572707319702,0.5660360474108828,0.41757502953984726,0.25199384345820874,0.1861385180408206,-0.16584293749956203,0.20519532416038544,-0.10150957880459544,0.027224895315164588,-0.21011608819148364,0
0.11606842288718155,-0.12123009973544185,-0.040474617717599415,0.003151983201263418,0.019806587392700692,0.1570850345731145,0.17446689433135987,0.2065811751411104,0.19915744668026036,0.20425787216060343,0.19806852074668768,0.1843822636037089,0.1792706959055721,0.12809689870706364,0.08733836487651558,0.03890103613994711,0.00826505660450749,-0.014830050612737013,-0.03347790722516919,-0.08772334284249439,-0.10658229931096486,-0.13198414675253645,-0.1823710624619892,-0.2650652903759436,-0.30849163251554046,-0.44567943624849704,-0.25901596953700334,-0.15840806682091824,-0.021214240267532606,0.0820409931681425,-0.5025688900341763,-1.4941952561524516,-2.0009788560525976,-2.7672633155918875,-2.9643225844328303,-2.6286622946878815,-2.3987006966266744,-2.013079982143905,-1.7218411550439434,-1.4836888976255018,-1.3215538188228564,-1.0522884239204835,-0.8550543050739599,-0.5324429827853407,-0.38426925344877105,-0.055413320368799646,0.13811345136262076,0.3872398898848388,0.5134923597057863,0.6253734765599503,0.6763409921587638,0.722294509750391,0.7256404876397511,0.7421177197695528,0.751812352673177,0.8358361181968448,0.8753205243656268,0.9637566081356184,1.0327404876248778,1.1055512672147572,1.1458508621286114,1.178867361438634,1.2074619059896463,1.2442806118365297,1.255221366286925,1.2153840228410004,1.181066895459324,1.1231671135466712,1.0921456735037722,0.970661771757527,0.8450194136460425,0.6672691188875035,0.5689601267291877,0.4134096469311146,0.37634701685685457,0.240567047399189,0.2134128603537846,-0.14408549869961007,0.21896198595609206,-0.06354774164027788,0.08010586096428796,-0.15059646872443722,1
0.23663836163331808,-0.03363871653062489,0.025527062236214704,0.0409439768294817,0.02694393074214929,0.18239503400314305,0.23936097760827124,0.3229206848178805,0.3534347022396318,0.39006760407627894,0.37513492424550776,0.3485562176920993,0.32961836227600827,0.25353719119315343,0.20645951416844355,0.16101522604409269,0.13266038974615668,0.09726909234095871,0.05394272902048414,0.003139937560405313,-0.02385494588465065,-0.051565942678720944,-0.10847707861794476,-0.21034104053450875,-0.26322230732465357,-0.32086340909987854,-0.208623332148143,-0.11237896283290638,-0.03289339250252965,-0.03923482013227897,0.007476368269323073,-0.5025384747910095,-0.7842549969368733,-1.6271033942590343,-2.5864379945780405,-2.7735371747049484,-2.870073406133914,-2.661807418856692,-2.263483409167593,-2.1130755145928664,-1.8728821986162743,-1.6802312955457488,-1.528982765809637,-1.1804282950933853,-1.0193562440964676,-0.6265775581042803,-0.408550254008496,-0.02984855563462219,0.14060117734084088,0.39403122220063835,0.540800429813153,0.6530531546877896,0.6990837643809087,0.745526334991375,0.7713765814138895,0.854541191603353,0.8892889506457067,0.9545925857117936,1.0135683444940966,1.0793571177457437,1.11238475927356,1.1498403783808158,1.1560225024102166,1.202792413311002,1.2129125584779388,1.2004537521384009,1.2217904969313835,1.1920419799861648,1.18564965952379,1.0893947502728025,0.9662536694855035,0.8287517756671718,0.7391614183619524,0.5745842364458369,0.515929192851381,0.36530959613857306,0.32706980581145473,-0.04853736742597192,0.2819576762337661,-0.023511042838151756,0.1037111010718732,-0.1353487953852266,0

1 0.19866297312303516 0.1941783810315627 -0.04526607250993209 -0.05075828245918501 0.024205354293059145 0.018826373367872407 0.019981550326164665 0.01805153751967481 -0.007430112292581727 -0.006604082470737184 0.08764281844920419 0.09160673771458505 0.10668998805608254 0.11011847858532064 0.16564255897973368 0.16896685471554918 0.18188761138199538 0.1841967607344941 0.21522030876454323 0.21631013812118027 0.21832386813163396 0.21947452797460443 0.18367157079308072 0.1850465806970334 0.16696998860229684 0.16879911916660006 0.10489850011946089 0.10806138426777778 0.0599444695780349 0.06271797838561355 0.038791420808138355 0.043878897224558955 0.020524808728865196 0.025963716717321006 0.004171646699901997 0.011222562576193694 -0.018093515862219082 -0.007195523436870134 -0.05597223810461571 -0.04791009067828611 -0.07444693862971263 -0.06613123046331992 -0.09228111220217983 -0.08861893624029449 -0.12837707959757694 -0.1299695133190184 -0.19826137074097971 -0.20424925881154365 -0.22342019737823904 -0.23254748059744657 -0.2816422001838461 -0.2914892104443254 -0.21912020473291705 -0.22789184040578903 -0.15982523646787428 -0.16852580285968344 -0.12388315213443946 -0.13182062717788767 -0.16022183919312738 -0.16703093882919262 -0.0011516231363160063 -0.007576767970029154 -0.30729489809628774 -0.3107839179708378 -0.3986631919921635 -0.4014535646969435 -1.0251578764452631 -1.025908922152766 -2.12961636276345 -2.129234741804014 -2.5343375488138946 -2.5334355561693886 -2.7606653158118606 -2.7597913292823497 -2.770891650831487 -2.7703988711925076 -2.4182438454958852 -2.418111569302212 -2.2905660752204025 -2.2904099336007793 -2.069735675211682 -2.0694918262695605 -1.8850001133195278 -1.884832227200068 -1.756644022893223 -1.755672993669549 -1.4593538422524261 -1.4596364631010594 -1.3459492529707333 -1.3465635806544967 -1.0108973433743742 -1.0117668880738186 -0.7602688134371505 -0.7617109777888871 -0.4105721148265289 -0.4111021230242855 -0.22134473345838757 -0.22160040218560084 0.1015748066656883 0.10139201406566656 0.2855828118500128 0.2850946622542381 0.48761049347601926 0.48701122284332854 0.5861013748112924 0.5853039533864859 0.6651072274944951 0.6645778215787814 0.6885618970913541 0.6887705878192207 0.7580432615480532 0.7577580810007376 0.7729006561234613 0.7731298244407867 0.8162140703800134 0.8158141551035243 0.853307717979483 0.8517700919239459 0.9107124240528677 0.910484460299628 0.9393262416292529 0.9388064722262257 1.003030516730405 1.0038225176168254 1.0546277182050758 1.057325038334227 1.123435129055764 1.1241840667761167 1.1586604977581416 1.1595332044383113 1.1965774649102627 1.1959670520597783 1.2251352702566578 1.2229029118646295 1.266083522930721 1.2657808762041611 1.2790066887253388 1.2789509776363701 1.2708523921464447 1.2728661221568984 1.2551111486730733 1.2569134776864672 1.1595967451938378 1.1618751781621484 1.116463112127093 1.1179266574913527 0.9613095361952944 0.9604639322070554 0.8992955656475559 0.8980262562421331 0.765675078454727 0.7623426519113323 0.7258229790987514 0.7217521547707548 0.2994937201949952 0.2965515724154031 0.6060959340716607 0.6035148543767903 0.24273014335628318 0.2411593917883863 0.33518405063449563 0.336408490027722 0.05018238108560524 0.05050821567081698 0
2 0.1636116639310572 0.16135671996241996 -0.10539309341724845 -0.11134454342421662 -0.044509003982000195 -0.05160358530640252 -0.06596469947845662 -0.07175473789792619 -0.10937959825923826 -0.11374283051906531 0.01351665487761977 0.01436888396833069 0.05848815159829002 0.060618122043024414 0.14352344981301712 0.14798846773809515 0.18451356108906225 0.18950828607087544 0.24590326629932946 0.25075675614208137 0.2698701767736793 0.2706305578528472 0.2661881255043781 0.2723985567897955 0.2604980659040308 0.26738154737239483 0.19680342731556522 0.20843198785895822 0.13637586766883913 0.15403899314112124 0.09782289067941008 0.11536827001230421 0.06982008823555219 0.08835321011881092 0.023468462213564578 0.043735252957326054 -0.015438656617092763 0.00968102168737772 -0.06033336237729259 -0.042299532307602306 -0.0839916033046535 -0.06638930831870482 -0.10182246432588471 -0.09743574306638436 -0.1427409040388241 -0.15198894480763414 -0.2183405506283762 -0.23087705135144887 -0.24628312486794357 -0.26453166848592957 -0.3002861419629994 -0.31542630795755144 -0.2624510851687134 -0.26802490433478 -0.24943396337540236 -0.2594104642751063 -0.23817159031409574 -0.24637467173846517 -0.2908363367098161 -0.30253476197018614 -0.0991058711713606 -0.12242954442388765 -0.29298015964153734 -0.3148755210293146 -0.30161236702147676 -0.32780290279823276 -0.7914993959194483 -0.8157520892231567 -1.8842353656955488 -1.889170163614093 -2.493136488252322 -2.492850027855665 -2.8045023390194634 -2.802252627376074 -2.8919321036023296 -2.883173529921263 -2.535375581914842 -2.5327229812273764 -2.312969160370349 -2.3085767927166962 -2.017965769361208 -2.0150633721964475 -1.7704570604062333 -1.768219733187351 -1.6489690932561984 -1.6457815155441224 -1.3023378596734538 -1.302321296917274 -1.1835161951273605 -1.1839317697369651 -0.8148829962352444 -0.8147925033582979 -0.5584398848853027 -0.5591716575674326 -0.22255893405688454 -0.21470969333272194 -0.047119294355951524 -0.03620233004625106 0.2258042111045171 0.23794922849970135 0.39445914359212253 0.4104081743702963 0.5733778655138977 0.5747089088287183 0.6563452283343096 0.6523740816844139 0.73834412162973 0.7293860796645788 0.7800699204211838 0.7658012565427157 0.8581389233866474 0.854512583206315 0.8830432858607793 0.8845020129686958 0.9382069004525135 0.9441017359474486 0.9858067560084223 0.9986233178814459 1.0477225545831672 1.0540179076366343 1.078216997838524 1.0823769599088706 1.1292835888333954 1.1287487623792956 1.1627120490607652 1.1485855237444227 1.226678316850581 1.2194054600414788 1.2535343742847473 1.244717266317636 1.2658676048183395 1.2624183355586212 1.2805247406144815 1.2898206628057025 1.2895496358863952 1.2919563549298445 1.2891936871990382 1.2919157008919484 1.229752063256548 1.2276844290032543 1.1641635487841668 1.1554434082259633 1.031544957769711 1.0336020520872538 0.962344557886027 0.9670851198457342 0.7805634905553447 0.7894052920862151 0.6869125477168581 0.6967134834010551 0.5461899506740906 0.545892122203874 0.4984627124661074 0.49285998376198137 0.10966315336088428 0.10091892152096449 0.44251914262881087 0.4355124944826727 0.09724319421311378 0.09132185830829087 0.20522875081376668 0.20579911190839795 -0.06297587484053935 -0.06061884406562967 1 0
3 0.19657064530598234 0.19356857046312115 -0.054464726151223886 -0.05627879966445448 0.027940105241114566 0.02838278254264992 0.0435798641902565 0.04727757479267325 0.03754379355626014 0.04644973812469999 0.14180453686256556 0.1508604496596888 0.14390379092311179 0.14880907702155355 0.16418654214101025 0.16927221171130213 0.15581542402667026 0.15772465810267988 0.13036479173962334 0.13339396927441527 0.08926717311891963 0.09549296259643114 0.034930491772094285 0.04357775620310633 0.00416170904619406 0.01566981318100602 -0.04637457260989919 -0.034958617627651734 -0.07843404575374535 -0.07175714702609781 -0.111812516571554 -0.10585534488517823 -0.12927387755946285 -0.1265295794309651 -0.15745977374436393 -0.15423154199439182 -0.20760908918789056 -0.19644759836877057 -0.25175214695854464 -0.2543395506148656 -0.2839570712157524 -0.2871211599281551 -0.2688777357075338 -0.282399268711778 -0.2435873104438997 -0.26968780505524137 -0.27354542154004946 -0.2795480655206646 -0.27037621343028206 -0.27406428752001233 -0.36316860321660727 -0.3551468086871523 -0.2082457013072414 -0.18791838121816795 -0.1172273332782936 -0.11661782385087349 -0.004043179224304085 -0.0063679879099183285 0.05074220224448567 0.027618185489181712 -0.4511912203641444 -0.4935771202746224 -1.2120265707628768 -1.2419170756997104 -1.6380659814334848 -1.6648023353116237 -2.4221290163841562 -2.433868020397167 -2.7370638399670435 -2.7364045293432007 -2.623953089037033 -2.6241977284743356 -2.5635987819437753 -2.561535815376314 -2.2935086747115268 -2.291911874445274 -1.9872185182183415 -1.9869322836774508 -1.816190293340668 -1.8125954223970773 -1.6467617295689507 -1.642757607977206 -1.4077406803036183 -1.404809072459777 -1.2231210577047236 -1.2208510566850137 -0.869163966493101 -0.8670994942205326 -0.684536213086627 -0.6835251321070999 -0.3207676462550566 -0.31861268110554164 -0.11390062841430648 -0.11049893943597766 0.14885364589272854 0.15409801678132595 0.27468903539896417 0.28184806090195735 0.41441997505808814 0.42218519743726546 0.47130430944640267 0.4819315760934657 0.5732884266305263 0.5806428926564422 0.603971083024291 0.6100143810428023 0.6547431581001817 0.6582809628202071 0.6993153418264058 0.6979686391784696 0.7463162278906452 0.7427916733755637 0.7723074083111996 0.7679360452437933 0.8218264355968259 0.8150477512039274 0.8655801180267417 0.8579642615942049 0.9352174735325534 0.9276946696756454 0.967921990744351 0.9595758673347916 1.0403009341094673 1.0342413744757977 1.0961683152683364 1.091981852788102 1.172669879217139 1.1700406169588362 1.2129607410413712 1.2124072438439413 1.2465105611003864 1.2451042325302026 1.276203065815615 1.2722813062932374 1.3135653312062203 1.3071492206031508 1.323874291793608 1.315077360274934 1.2969101247327401 1.2913507603357033 1.2600332986687164 1.252736350577898 1.1495958518713962 1.143227923831759 1.0950525877838544 1.0895874805265322 0.9300378479635683 0.9236539594497941 0.8559610715195021 0.8578992151335711 0.7165692166505337 0.7192824972538219 0.6753794488772655 0.6781836740690323 0.2581591035904083 0.2641171786998484 0.5971189202221581 0.6020359508204365 0.24643929731751513 0.2524834987590907 0.36237347117941 0.3696243446939462 0.08910877294163555 0.0955796912106095 0
4 0.16918186940486635 0.17205746501871744 -0.0378254801518807 -0.035984303946719365 0.055688142380823535 0.05636390283296322 0.10366412307252659 0.10261103292050677 0.12366139260208797 0.1212528667125099 0.21765142023073025 0.21057129367535765 0.2058686754843535 0.19900898415668422 0.20712864951811127 0.20025088972915484 0.18515860515701377 0.17683717531121346 0.14642494355471314 0.14848173673123455 0.11381408120058722 0.12178498289741668 0.08264568433921937 0.0947133084918903 0.06172120160460537 0.07914461882381119 0.03305709347763752 0.0447226943666692 0.007461010077228989 0.01315498451085517 -0.06326737934930549 -0.04919505941682445 -0.09473119555271836 -0.08134517600812785 -0.1253244130631117 -0.10399971391098717 -0.15845685166639356 -0.12499466364462108 -0.25986458493545683 -0.25048735466844363 -0.2952266716615739 -0.2898645546335885 -0.3673830718118367 -0.37981296861331515 -0.3198663311778489 -0.35274701588719637 -0.2290373808513948 -0.24926683010849615 -0.18459589232848117 -0.20604345701735838 -0.21320368708443738 -0.21849081999808107 -0.040961562749288305 -0.029234529091880294 -0.4690100357445175 -0.4573965322521971 -0.6803277673118266 -0.6618840843119393 -1.481006785117934 -1.4646435348647522 -2.6123171505386145 -2.6064831831726405 -2.889855830365983 -2.884067260008993 -3.0260730754081115 -3.023435644699602 -2.7867069373535083 -2.7923846125293483 -2.3088194370947317 -2.312950564912274 -2.105588094805979 -2.1145043534544037 -1.7263066246805536 -1.736682890286236 -1.49763624403408 -1.501566586075569 -1.4122452982730174 -1.4172097585821746 -1.0511169853470328 -1.0553949946977887 -0.9614076773383395 -0.963701016787212 -0.6341220441147328 -0.6401075230571251 -0.427233946402481 -0.4331369127049953 -0.15654520846221232 -0.15207778140896266 -0.02494236611311607 -0.018427782396031493 0.20621980591536726 0.22295571818259674 0.3560184922036953 0.37485606765964263 0.5157647698536678 0.5275303495618218 0.5972691895918629 0.6092323178100898 0.6604187629314993 0.6630079734339489 0.6762223425963114 0.6750560234202254 0.7447545105533919 0.7433445682909507 0.7589445766252609 0.754628021223759 0.8212018691183331 0.8182425563005182 0.8828071912999604 0.8827132353012672 0.9901615563196486 0.9875256689588738 1.0508755010777762 1.0489810229118177 1.1498780210084973 1.1474776259264985 1.2198830697015026 1.2155875941715024 1.3146307681401197 1.3100757090496273 1.358784666987546 1.3534270670748825 1.3651426573734753 1.3585512826959203 1.3652646194871636 1.3592255374429527 1.369193004112013 1.3632042126183848 1.363819142584191 1.3583949905057864 1.264526623849811 1.2594590227408062 1.1802044275738837 1.1765862182011304 1.0580824080031803 1.055484163270087 0.9903091154201604 0.9886820504812519 0.8536594506925397 0.8510645185106824 0.7177804058388162 0.7111113367777264 0.5436124846714776 0.534972146483959 0.44516797905350813 0.4331759412972218 0.31545810916526307 0.29865925842455 0.30873212445111875 0.2891567534926125 0.18029066054523213 0.15193522196525322 0.16767586315658178 0.1365451089228955 -0.18535055172824144 -0.21604043550652108 0.1575701727586747 0.13092431175748231 -0.12130839640101954 -0.13558820249728143 0.009079944208558286 0.001694761798454179 -0.21604675946797158 -0.22167026690257785 1
5 0.23230765260380792 0.23520824292243958 0.022521975983138987 0.026033882575319467 0.10963424382282483 0.1180779369233349 0.173804986366207 0.1752968389864833 0.19829859248707749 0.19997895938678312 0.3237858629725139 0.3170725261812706 0.33594985225204965 0.312836676573518 0.3450777377533001 0.32462755212747396 0.3309382633730351 0.3054731763169585 0.2830845459360418 0.2662706381442561 0.24422018913043075 0.2459481363115259 0.20474481719229232 0.20807091977423653 0.1773370694068248 0.18844887195740512 0.13534144826014938 0.14775146975421194 0.0959997829355359 0.10419834724458354 0.014200244996317222 0.03319320921933411 -0.023424916506016306 -0.0031162671602729137 -0.06144758415666729 -0.04214534810461856 -0.10258856708446018 -0.0840271379451849 -0.2028474473566817 -0.2030820362123933 -0.2376436901034893 -0.24583322018189335 -0.3027181568522508 -0.32188216917545276 -0.275607635254957 -0.3026124563537209 -0.20379694499732182 -0.2221192681655637 -0.1700146440697452 -0.18642291490563423 -0.23358942853167264 -0.2353604388788355 -0.009283635279622617 -0.0006574507201122532 -0.33296235191878054 -0.32471590618732193 -0.42731314649112306 -0.41435986659435997 -1.0911175472265846 -1.0774761600958023 -2.3340585930994635 -2.3254944435903724 -2.7824306595636257 -2.7731612377822925 -3.0076883784058013 -3.000512921895825 -2.909510401413131 -2.9138845123923582 -2.442376007105757 -2.4461150493133683 -2.2307357535044723 -2.2409582113334476 -1.8544102083603704 -1.866640298094115 -1.6224876552527192 -1.630744490349418 -1.5253738918085489 -1.536301998336043 -1.1799890809135967 -1.189005393666399 -1.0946892303115234 -1.1015474159340854 -0.7630129609951375 -0.7692238439920871 -0.5371401804379587 -0.5423782273651057 -0.23196928983625753 -0.2268101418567312 -0.07998763228341943 -0.07282258395999719 0.19350051259227286 0.2087219866626171 0.35876399489627886 0.3745022269594358 0.5413590464079476 0.5532315311787173 0.634967227221388 0.6466981757120749 0.7035758849979175 0.7079406229628518 0.7179264592342207 0.7246563587816439 0.7840323339814574 0.7848116869449768 0.7954007086823154 0.7931713617005016 0.8567000715861468 0.8523811070564733 0.9171884617192063 0.9105745014650424 1.0232391872570261 1.0166351646565701 1.082396534075265 1.0758379837690484 1.172615974974299 1.168366574020581 1.227127318113567 1.2215507886783072 1.3123363746976722 1.3053800171021166 1.3463345937376303 1.339029815980254 1.3427748057230389 1.3320123267573436 1.3477135184748619 1.33674445676845 1.332553477172894 1.3218421921808456 1.3244500734266254 1.3123345678515435 1.212586723892727 1.203106503396377 1.1146905960748228 1.1061936010135156 0.986924290339033 0.9769414654778785 0.9153560186036671 0.9057577508269077 0.7723465566439884 0.7631804262330135 0.6298273522672346 0.6191675623898547 0.45660260477908565 0.45461627860158416 0.3593033384657005 0.3607488153686731 0.2311091113384265 0.23918812266195744 0.22414281608916298 0.23900804033112877 0.09658911591451869 0.11076382379429361 0.08206418102679436 0.09387553417020911 -0.26106704103411715 -0.25452535462510184 0.05450345360242892 0.05465854122847702 -0.23615605345751334 -0.24324491310250806 -0.13810634371866826 -0.1465400991654704 -0.3672108191475658 -0.37414188089731937 1
6 0.5619143302502607 0.5604974617443261 0.16991424436903912 0.16848261995305336 0.16201892906859428 0.16033163592539523 0.0952815615993714 0.09346989721431243 -0.005679880675899087 -0.007329531191416551 0.03926632019896914 0.03821684373920675 0.011194255320177147 0.010462482638047275 0.08324977322825333 0.08589559824273607 0.08369817220919629 0.08801382418763382 0.11943427608395751 0.12796891377294628 0.164099211244789 0.17460572034224953 0.16387516232482824 0.1728464544949233 0.17244111868004808 0.1813142388771496 0.14707058990470756 0.15241162706119127 0.11166634343558712 0.11454434817760983 0.08161246949461542 0.08268573609507257 0.061048753703701664 0.06019863260014091 0.02571166168236516 0.026640079451503595 7.221397486745047e-05 0.0031450569577700076 -0.01631317014339118 -0.010812227104516127 -0.027459001629395633 -0.01928994914045035 -0.0340931383319969 -0.026336046760398805 -0.04693379148673671 -0.044315972587249064 -0.07290539774089666 -0.06905982689694667 -0.08540817066956663 -0.08414247495640126 -0.08684642018802435 -0.0833266839292861 -0.09678166476778927 -0.0830966121888963 -0.15743598360366917 -0.15058020710927877 -0.18254482083136736 -0.1732994903317504 -0.33431176483590974 -0.33165028048831147 -0.19813850520422704 -0.2048235347394538 -0.1384689175084972 -0.13776966805668422 -0.03735720586352187 -0.03928691752899027 -0.0006911785145149469 0.0038370790250681335 -0.615891568958034 -0.6100623822057756 -1.5720460824478728 -1.5676087694967684 -2.0480239345617353 -2.0433452570819366 -2.7478304972644114 -2.7473001879256334 -2.894997606272834 -2.891611313129227 -2.576956418947094 -2.5795793572439463 -2.3688649240704898 -2.372362074752619 -2.002903824746978 -2.008245915897037 -1.7352033844478392 -1.744723807270553 -1.5113318365487238 -1.5160835407262248 -1.3640068731811184 -1.369164214314516 -1.0973463481143106 -1.1012184193681485 -0.8818710636048266 -0.8825180650894175 -0.5613690836009724 -0.5607418068532866 -0.39789106641315897 -0.39561684941914876 -0.07011171248488068 -0.06378202935496802 0.12870460128835504 0.13702994596743423 0.38421402490128287 0.3893641386501656 0.5122628009151953 0.5169506631961482 0.646090774271805 0.646055540772295 0.696580379069573 0.694149267603386 0.773915802506778 0.7728557861112648 0.7919710135889915 0.7910124817177078 0.8246457178396653 0.8245755519816669 0.8558996387511257 0.8567196457525412 0.9197758653755272 0.9203149078039274 0.9509520919034529 0.9505440458193846 1.0123860648438736 1.0138110641573874 1.0598904586959819 1.0614603068408144 1.1162321369636388 1.1186033213665567 1.143879291861161 1.1471746780589172 1.160154458365568 1.162605445139171 1.1746486768691042 1.1762305706547949 1.1947055723209132 1.194583007925182 1.1993675364740213 1.1981587564139105 1.1649742204139173 1.1625458192169233 1.1344065998903474 1.1346204100155788 1.0154619192369907 1.0113633899350205 0.9582881883270602 0.9529920211827729 0.7849303365074292 0.783110541314791 0.6977789203349545 0.6969098273470422 0.5333363484554283 0.5409756938876384 0.4792017327339977 0.49219205297639945 0.056253082937068655 0.06701044250539923 0.3420253723598563 0.34905069124932453 0.0025984860038334983 0.0041966414046825645 0.0871621973789658 0.07769884077981715 -0.16145591509904023 -0.1756417651966089 1
7 0.2637479798075475 0.260051774910238 0.06401017450866675 0.05826018784505038 0.15490718270596915 0.15049034734432354 0.23302436823486516 0.22781703769190642 0.26831839709013394 0.26444692811833903 0.40225749148365963 0.39883713176200075 0.4129868449369951 0.40185064996367714 0.42538361622611376 0.4202012803879356 0.4087461770728993 0.4035614321065495 0.36291070676168147 0.3645362659954827 0.326715362829205 0.33881912390445024 0.2959375458726612 0.31001287721535675 0.2731161758439171 0.2899824821734356 0.23415334592429105 0.24976479761741643 0.1958298383932089 0.20594606872686683 0.09189763994130828 0.10685922931013891 0.04415745266940263 0.05910970666656823 -0.0029982198798634858 0.008086479978786086 -0.0509178872005549 -0.03888911023965136 -0.17842460937585258 -0.18743535101975795 -0.2261903936345817 -0.24226469907767978 -0.3134764198436457 -0.33198665500927405 -0.2533503023593937 -0.27331354295353094 -0.13105422327829075 -0.12812833711385707 -0.0679434971304218 -0.05639805150894972 -0.07519888776027983 -0.05675189220915655 0.0841354289723455 0.10351806967712207 -0.4363844174803404 -0.4255285847979948 -0.7165410291350796 -0.7125551265751326 -1.6167531773517076 -1.6231917229608754 -2.7714297521941953 -2.777212676157033 -2.9622773851856348 -2.968955751975762 -3.046630429594947 -3.0500486342761715 -2.7573253983855572 -2.7620787211960485 -2.2652452347136016 -2.268472261899488 -2.038720709700744 -2.038097724212614 -1.6665849395881125 -1.6665730445177651 -1.450905180325062 -1.4492094552332624 -1.3488234934499879 -1.345838282504328 -1.01659538321179 -1.0144688758888023 -0.9262479573786386 -0.9261052165344701 -0.6103078121382595 -0.6085208413169596 -0.4104844827892862 -0.41029717307394264 -0.1290802438826688 -0.12648982881613335 0.005614112192660057 0.010443811894717213 0.2499780054606049 0.25531482664278826 0.3921298177911865 0.3943742218240729 0.5565169797227654 0.5566651411053201 0.6375531251726017 0.6368141251059569 0.6920551329402045 0.6874964601574547 0.7069417381946934 0.7059564047725004 0.7634987322926889 0.7563026664440571 0.7741618347213048 0.7627838235077604 0.8294266326962472 0.817767355768666 0.8744411925829851 0.8620332790760727 0.9950496773798676 0.9879837044525033 1.0540139928033554 1.0514021967242968 1.1557987546312773 1.1544574725217274 1.2241348797833922 1.226900558924413 1.3133021339534707 1.3128236208703825 1.3549448178230037 1.3536222064567838 1.340693017841737 1.3382209511966323 1.3330575872428057 1.323445165838038 1.2987832218861755 1.2986793282337743 1.2806138783568315 1.2833795574978524 1.1409552125428561 1.1455834489015615 1.0192987569913186 1.0252749005620458 0.8693308294489341 0.868753240969788 0.7804574889157934 0.7717632464854347 0.6353189599344446 0.6300483897769809 0.4895501427951956 0.48484812688623435 0.3330185455492298 0.3551247056520239 0.24538078662710916 0.2819793583873107 0.14369630475933093 0.19396878688063168 0.1645066550468144 0.22501763075648284 0.028076823264854056 0.06907566763052131 0.017002362200933874 0.05060548422074618 -0.3287514970158085 -0.31101248400612036 -0.05314663190032576 -0.04395038738720558 -0.3534116341215423 -0.3554265686960818 -0.30130731116674525 -0.3126305147143853 -0.5364249705120088 -0.5517536507859901 0 1
8 0.29119999532316854 0.2929863638624255 0.06574685477938402 0.07011821784679029 0.13350960742665308 0.13923038341118854 0.16835915213425778 0.17351558984459103 0.15666223257899503 0.16397303315680034 0.2803833109736118 0.28725203653192466 0.3279699163245766 0.3355267491169087 0.39492741788048136 0.40804271164678596 0.42100111094091375 0.4375674808130654 0.4509345284733044 0.467838176289483 0.4438173615722931 0.4492342862661829 0.40042866206037786 0.40195875959037863 0.37619192923080647 0.372304800925896 0.2859285217426404 0.28108737868176803 0.21428014649556815 0.2191092439155824 0.1530304718602764 0.1676496638877154 0.11062921375770429 0.1314266149812653 0.08755036815561823 0.1152125801042132 0.07033052226691439 0.09660989464499892 0.015029587369397744 0.03402044360526446 -0.003934768456581141 0.012017876013850069 -0.026111997840438054 -0.020156331859169544 -0.04789593705027784 -0.04026472242564694 -0.12311494138871382 -0.1250250788877878 -0.14715894396455553 -0.15131408777855881 -0.18803341708836285 -0.19320852554202617 -0.14448661854018496 -0.16003001236246206 -0.020879672592698743 -0.037627630500786324 0.03599592870599366 0.01586615712699313 -0.03229863898516072 -0.052357341283098435 0.17611052202644828 0.15981849162483996 -0.16945753318005785 -0.18989446860094006 -0.2728040123452331 -0.29512157344508694 -0.9746723370512846 -0.9990634046543505 -2.2815015046189124 -2.2863598127180076 -2.8123225572776835 -2.8098875309782176 -3.0638876922555665 -3.05868142511684 -2.995273839796417 -2.9832990988275503 -2.517850604886151 -2.5215059298897984 -2.3223419488072956 -2.317958916525308 -1.9259004092859247 -1.9269665990723777 -1.6962803051430448 -1.6981082311432623 -1.625572995588012 -1.6218114430890473 -1.247407328232324 -1.2560752208233055 -1.1629871105539138 -1.169948587546834 -0.7927750292863216 -0.8013059027125422 -0.5566384592949731 -0.5682504570821862 -0.24302779042604072 -0.23156184603423213 -0.08478721788333132 -0.06719455941006913 0.17730394389446502 0.20765052690828867 0.3419979685269041 0.37270561962544946 0.481160655078547 0.4887232095502867 0.5564218191599863 0.5546074445057343 0.5998912244656509 0.5804784696587291 0.5944938739381556 0.5807217916040628 0.6794511766283264 0.6747792748215105 0.6983640373396369 0.7019313538797647 0.7676713422859365 0.7823086027746626 0.8202005752220032 0.8325886134214997 0.8995304556442889 0.9135624226798953 0.9456541179130369 0.9565641559792439 1.0105069448700092 1.0129094479391583 1.0742720504574947 1.0646969705393872 1.130131601949806 1.1166961952776973 1.1578167006160314 1.1382593981188123 1.163189658720789 1.1517610558156406 1.160936822739302 1.1789519820656622 1.165627395289448 1.1859218910071831 1.162866233263749 1.1968918561366593 1.1048387675580003 1.127191562157364 1.0595317997394318 1.053555957309726 0.9179967242207852 0.9274344838331103 0.8490580158847436 0.85391451713771 0.6729652013082799 0.6907346295611347 0.5944851408485334 0.6280220118436262 0.41711759632826073 0.4298414067666769 0.3624065966917698 0.3718919365854845 -0.059939168780211105 -0.06899658728244162 0.20675553579253148 0.1878273168891269 -0.12478025123734682 -0.15568183715370765 -0.05549191817539878 -0.09818136823550105 -0.288745815738892 -0.32946761036482286 1
9 0.2861173371630912 0.2908645242252703 0.034232145743345654 0.04045522495166409 0.10125198349069109 0.10600097739899894 0.06529996150354833 0.06803552654242395 0.010578120790285082 0.010897330273024862 0.06119751736829926 0.05852398737984288 0.05566435224012878 0.055105735645334164 0.10960864683600136 0.11430343536044774 0.12286397117728143 0.13141547276347154 0.17453163965097218 0.19655468483184535 0.18600993082466033 0.21543050519751716 0.15907286645572327 0.1885374074177122 0.1471829155057094 0.17840220519970273 0.0940357411936219 0.11736393156147074 0.07289293121845475 0.0847569840406237 0.08216415984591663 0.10966224993781992 0.08109239895056675 0.1096941708860939 0.07103037400077028 0.11069697048753113 0.04397285322325217 0.09550259910911763 -0.02534077568449789 0.0017468591951654826 -0.05434908799898608 -0.031212423320781117 -0.12492449778662262 -0.12791151557841118 -0.21069066526041524 -0.22570585773106444 -0.29048460399675946 -0.30745359941459327 -0.33321139554352186 -0.3545047760294153 -0.3891772498164059 -0.4029631846374855 -0.33774718160864126 -0.35141476800828997 -0.3332047704410499 -0.34813052402832767 -0.31920502549473895 -0.3343837375400369 -0.35553166691256877 -0.3731207116935735 -0.1985646197495825 -0.2219858626930602 -0.44279570982706673 -0.4659585737741381 -0.5036788958392506 -0.5278788894642048 -1.039808989420976 -1.0601280281319596 -2.038501328466616 -2.0488692374089528 -2.4358738454558075 -2.442667812755545 -2.6671191700488395 -2.6743297283091287 -2.6976696255341865 -2.7014297099706717 -2.3858152487449935 -2.3852928443580286 -2.2555230474065144 -2.255913326170317 -2.0601047336340947 -2.057169888524273 -1.8714724069243438 -1.8685176112218507 -1.7294720685275529 -1.7299191123738993 -1.437209738380929 -1.4341621912438285 -1.3170358000780027 -1.3155087139582164 -0.9833879604941664 -0.9804229259969439 -0.7303477426866394 -0.7261382429182639 -0.3951437568744467 -0.3904567980165581 -0.20433177145142167 -0.1988341409637826 0.08813126918600034 0.09324283688413715 0.2488535448865008 0.25237840054260374 0.4384648810569942 0.4427790273303245 0.5152302445405894 0.5186247061344034 0.5961052795439485 0.5987839289297696 0.6440616860692572 0.648963659616463 0.7175536466496624 0.7188437347855654 0.7435418156600022 0.7442799123035826 0.8039657616144709 0.8023130996887389 0.862771978001696 0.8608820169510594 0.9331079806772777 0.9310641365646788 0.9693740927497956 0.9676636117479447 1.0410727585474504 1.0407490319493888 1.0824811547022932 1.0826169693029684 1.1655554225853209 1.16321886939987 1.2028625791690004 1.1991510160795968 1.2417582546408426 1.2362991702039494 1.2805473261910905 1.2705410123302627 1.3308646783245877 1.3233051352630625 1.349771516215469 1.3424769772528222 1.3382938273238238 1.3370865529688203 1.3041956294647434 1.3074199463814367 1.1975082918075728 1.2002291009363972 1.1471391434183857 1.1517505158798897 0.9797273210673367 0.9799516711283189 0.9064202610741035 0.9055355087530756 0.7948601605488079 0.7923594855066654 0.7605198453084796 0.7542067249347468 0.35903231154639315 0.35553064374894205 0.7075870834036664 0.7054104361006068 0.33819034145165716 0.3410719598859373 0.44558355366311275 0.45436904182297155 0.14177291705531303 0.15354391730185313 0
10 0.5314930642631168 0.5245851903720151 0.3081325526774066 0.30314957219543004 0.3789841087817152 0.375626085251497 0.42448350571299187 0.42799089518985056 0.4122764532673884 0.4218431012368953 0.5269280675189165 0.5373737461300436 0.5613391508992862 0.5691031687143777 0.6206904325353406 0.6283415224673874 0.6340373037471423 0.6358471612860725 0.6436027471525634 0.6476579121474444 0.6163696611595384 0.6198430217009729 0.5422522306775761 0.5464136984530299 0.5033969081026086 0.510583337438554 0.4050544892909116 0.41142874129199924 0.3317176163365545 0.34161130345535895 0.2712620505748333 0.27141503021373126 0.23055531299997511 0.22710032206084918 0.21003947863147232 0.20229051786745345 0.19436870215712077 0.18288077447074613 0.13179310360437313 0.12925237680637736 0.11224754560699068 0.11351474702526332 0.08275590195307103 0.09349910789339333 0.028021714457928226 0.04142851273299897 -0.05377541435311883 -0.032417288547613055 -0.09808169055740024 -0.07395939131598084 -0.1635096968653471 -0.13566740258592347 -0.042803642377513995 -0.01112029436946216 0.08501566417805151 0.11864438318468729 0.18754243748283272 0.22247840966359433 0.18638033428104706 0.21145604599638546 0.15490447243677608 0.1736441770607513 -0.4707750232712513 -0.46485157937927823 -0.8362585882199944 -0.8346634442293599 -1.7718819091492364 -1.766117016005058 -2.7680287784257924 -2.7550401521016363 -2.9116403530365518 -2.90153684591105 -2.9593523648016378 -2.9498564661508584 -2.695115535603364 -2.6899300377844604 -2.254792404003215 -2.2554260799976067 -2.131014711096565 -2.1301691823935816 -1.8465358223609165 -1.8478013675035712 -1.6680251465232097 -1.6701685177433987 -1.577782969477056 -1.5790927823498642 -1.2240386343970897 -1.231217986919031 -1.1102982728764772 -1.1188929881992458 -0.7627359112554011 -0.7715250131075173 -0.5475894727413433 -0.5592282720794657 -0.21998779201572205 -0.21555559846198236 -0.062018848674362914 -0.05301593669701532 0.2019565524746625 0.2168012991271695 0.36624403672814054 0.3775886212883037 0.5023016582075854 0.49959560498881217 0.577907628758588 0.5664338547002217 0.6140728585889192 0.5937280723206015 0.6041565858935058 0.5967039478945964 0.6813712517811084 0.6757796652947761 0.6978114435652714 0.7012025926078493 0.7621152904401356 0.7724898997701999 0.8138666761177902 0.8137763338113544 0.8918754508789632 0.9012626187996844 0.9348317118840725 0.9410972519764158 0.9999143094404133 1.0028079735155515 1.0538808884718733 1.0531882641225323 1.1122646040060005 1.1128093681138083 1.1372782806709196 1.1360701028928517 1.1250802624559597 1.1288011609170283 1.1242768182107241 1.144487295583474 1.1141370988773929 1.1237067582571143 1.1082750877537961 1.1205393569934756 1.012929925528617 1.0184715226053882 0.9220732702281893 0.917482977638187 0.7506785567274079 0.7561846191636477 0.6587715215441534 0.6651502906605629 0.45721542675774174 0.47983623686619836 0.3614854063071462 0.3922328080205233 0.17602168542511976 0.22182764391623522 0.11653940744473346 0.17171747680549743 -0.28168255308072077 -0.24077164189331768 -0.07238623061991234 -0.03898366852038748 -0.39945278375041227 -0.3808257058684603 -0.41870894522617874 -0.41738031103952977 -0.6615091637402308 -0.6647498928425932 1
11 0.14925928284862522 0.1512826493717654 -0.1060417511774574 -0.10978222380492042 -0.0391754953510528 -0.04748668640212372 -0.0554021781510059 -0.054761952339397624 -0.09140840552201013 -0.08716954450404302 0.0045959543991287415 0.01757483128271531 0.02473174879855833 0.04350518121693625 0.0928350919410903 0.11435041335979435 0.11725702649885505 0.13965288426428657 0.16659506803058832 0.18547329752443176 0.184140146222461 0.20037736895816494 0.1670172677426649 0.17495143023487714 0.1590358261100846 0.16287507299258408 0.10833180890504224 0.10982275810225417 0.06704055660754449 0.06478982861320759 0.057248655153991024 0.0651183734676124 0.04322572234902822 0.05248249620746037 0.02542557771198517 0.04356059116488353 0.00448784477242725 0.035860716387361435 -0.029398048666529068 -0.0014112066968081666 -0.04648960848009409 -0.014856551022624844 -0.06907217367882623 -0.04842474068394864 -0.1117833058924731 -0.10713941020065221 -0.17394182413050885 -0.18533037527980412 -0.19859292700559905 -0.22045094690671618 -0.23625844140480723 -0.26576604553286387 -0.1986618882995117 -0.22764430248615497 -0.1969547198488968 -0.21736184230865518 -0.1896475329633489 -0.20723718002639657 -0.25707541679476265 -0.2663481511273318 -0.06701056224596158 -0.07419729272292841 -0.12984785234635154 -0.1460290628520653 -0.05002048695662609 -0.06900261010287068 -0.32607977387348086 -0.3540383085871852 -1.3529962540137461 -1.3700180996808449 -2.0982639687379745 -2.1054785547594257 -2.4890130395308265 -2.4937999772078374 -2.8552805122010385 -2.85069048310943 -2.669020612100919 -2.666414876484917 -2.468674125512427 -2.4693064463722223 -2.247465718236528 -2.249592300844771 -2.0092365192871053 -2.0139493009875835 -1.849499200582521 -1.8567158945911224 -1.6275129460482098 -1.632994616061712 -1.5308459253093645 -1.5328846500245987 -1.252650193415814 -1.2515359716364394 -1.0071735840736018 -1.0065768731395934 -0.6771465135612011 -0.6748375147792132 -0.48152937142936736 -0.48128665176607655 -0.11808739203556229 -0.11551233516112092 0.08533336795568403 0.08810476877611251 0.35910006827622 0.36734982655891457 0.48983140850923235 0.5003096103506763 0.6136527668639928 0.6245173326359605 0.6558694255204145 0.6697167931098704 0.7193809703678369 0.7264306816800428 0.729343618780554 0.7334683473513905 0.7456193875670039 0.7455067608249806 0.7640657808360842 0.7605192430264367 0.8031852040868657 0.799582051765185 0.8198708258035126 0.8163068218146208 0.8750208890492814 0.8701183132200327 0.918071106053084 0.9126963411021976 0.9892370533837891 0.9809601924091638 1.026658944696642 1.0170179148948364 1.0889541809584173 1.0831261987702447 1.139148065273119 1.1374201180920238 1.1963031254397194 1.2024180950213363 1.2220551998892404 1.2333886422316098 1.2485878318663666 1.2573046598733342 1.261196004152545 1.2632136489962775 1.225184657384176 1.224265876127724 1.2070195298291324 1.1991699879639484 1.1091607434978883 1.1047065666495826 1.1027069902671371 1.1057271335712855 0.9981210146576629 0.999966707978146 0.9834409921438905 0.9911453840367344 0.530611624493325 0.5353106289920717 0.8464953057921818 0.844990504107983 0.46776469788024855 0.47171566808170695 0.5668232300409599 0.5688309372309845 0.25517509720883425 0.2580841194760666 0
12 0.2632059259689328 0.2577266650836023 -0.03821726462079056 -0.04961003174438616 0.02382802459317901 0.016513008041073363 0.015168413380287403 0.006407016502144812 -0.010786328976671202 -0.017618616471388297 0.13515142827561277 0.13090955584743114 0.1618039143792771 0.143158768036038 0.21579609039756065 0.19871687736587518 0.23379378354467661 0.2129183867965594 0.22500919880788217 0.21336678577750234 0.1991679866160112 0.21353060649317257 0.13385862987051667 0.15061050261188313 0.0983414555183515 0.12485059849580438 0.021821220826218735 0.047414895098455645 -0.05307676718334875 -0.04574759700323483 -0.05583401437576896 -0.030193964386228348 -0.07476313670223789 -0.05182131026491277 -0.07288371558735207 -0.04287892763287715 -0.08362872837380309 -0.04453399868678076 -0.13787205600397812 -0.13399727448094723 -0.15725138415751871 -0.16072534698099616 -0.1783577560690901 -0.2096517287364037 -0.21010464483266844 -0.25451692267650117 -0.25601780952742104 -0.2809372290526255 -0.28282929809041235 -0.3035348513024303 -0.34991990397779915 -0.3507007626464258 -0.22819539055541327 -0.22190666260441816 -0.1682228549921021 -0.17895070274033031 -0.0990360064543836 -0.11760857781145262 -0.06705001171977187 -0.1039638781294343 -0.21227978643062073 -0.25477319368575735 -0.7958561536473141 -0.8210842427195075 -1.1602974695208097 -1.177883954603132 -2.0084958629448426 -2.016095683617987 -2.663086778843706 -2.662742273515164 -2.6849812744510464 -2.6873701885316024 -2.7075329726950796 -2.7109663191232887 -2.4511313811634707 -2.4580185516093476 -2.0955832866502586 -2.107020622645029 -1.9592475614375022 -1.9602386918243582 -1.7675152137676626 -1.767645908970973 -1.573325028365982 -1.5715330887178283 -1.4046545871157718 -1.3927506331082604 -1.0460412534304488 -1.048025622191311 -0.8725944144389786 -0.8769191006480597 -0.48046845161078977 -0.4842811980834014 -0.25742052440534735 -0.26627407043605444 0.0556953697653384 0.06575347988185598 0.20967449571347174 0.2268434487695501 0.4089997378129624 0.4329217782751158 0.5186629510441279 0.5380976891456157 0.6744630767489852 0.6886142956290868 0.7320310012559972 0.7401130239897427 0.8199717080456992 0.8225214690743385 0.8896090635515108 0.900394128093815 0.9488712074452152 0.9487715297671144 0.9808734637949854 0.981883791921959 1.0290921641499793 1.0236080850083056 1.0807053260987871 1.0698199815963392 1.1528840106846374 1.1445387906981423 1.185569857153105 1.1747293826628535 1.2390850257934076 1.2316004668462242 1.266509336335055 1.2540707064439545 1.317165170976665 1.3015242074634372 1.336646585936478 1.3208984162196131 1.3158166614826001 1.299440311594985 1.3198347861318425 1.3133897659907134 1.319694153274824 1.3238023190894808 1.315763961803846 1.3242440929679518 1.232357535374156 1.2454827667941686 1.1156810488943805 1.1267955617141538 0.9482875961456401 0.9558049794641619 0.8528391425501027 0.8577528605971452 0.655040083147334 0.6572619016036114 0.5532456848067255 0.5498250239440452 0.4156781422457172 0.4138246192586763 0.371608864025319 0.3705645069629213 0.014326121943284418 0.014489641517933192 0.3828447366767378 0.3874434612153408 0.05766995144300324 0.062004274164770834 0.18465509736914498 0.19057613213294644 -0.07844819938175362 -0.07447614930879354 0
13 0.056161234925525605 0.041538429205829175 -0.16534906622437973 -0.1788389794213714 -0.09230460120185313 -0.10742639759409656 -0.06991657310297938 -0.075115170556316 -0.0762459550918706 -0.07579424355969167 0.029427139605047614 0.028534858758483495 0.051590516501917705 0.04869233531145767 0.10496053516988013 0.10611992810247273 0.11959508538941321 0.120581623375692 0.15465874136327074 0.16601958753859236 0.1749237252609035 0.19421933621048026 0.1561590259321477 0.16796405511411194 0.15026900869355586 0.16290518709472934 0.09151940681836379 0.09643703969868511 0.042484614295233314 0.0428679668155425 -0.012226987623300547 -0.006062932055186822 -0.045396767713242525 -0.03953385316658142 -0.07666152970147522 -0.06652903775265884 -0.09520338467435607 -0.08523079860793104 -0.13689485338936436 -0.13613477345121794 -0.15212867424158816 -0.15354223019628677 -0.1663383144798516 -0.17758322136191396 -0.18364579240579815 -0.18898893754943202 -0.2395568390127778 -0.25129953200330135 -0.2561554309742249 -0.2670281275537718 -0.2725585824127492 -0.28416907449485507 -0.24325786216643053 -0.27195449352371526 -0.1599661704659141 -0.1886992398867946 -0.1253054411787602 -0.1603895747420765 -0.19714865466671228 -0.23390984257849823 0.04786479978450586 0.017892535060347825 -0.14583542917527126 -0.17657560350413348 -0.12559604226446197 -0.1530290858957315 -0.6047222484723562 -0.6277218939858002 -1.8626772822517985 -1.877207035395866 -2.555553648985158 -2.562207058713132 -2.8973336136401837 -2.902479191452431 -3.0078396453051397 -3.005372810985283 -2.5830344611109552 -2.582985563337597 -2.33418951415854 -2.3309368899858303 -1.9549395132698564 -1.9505632566608515 -1.6870566567969725 -1.676408159707897 -1.5846596752724373 -1.5711994244660588 -1.2242021539717385 -1.2163229497159413 -1.1394625762400779 -1.1297084679847167 -0.783289087110564 -0.7826152840750638 -0.555234539852961 -0.5594110646794874 -0.26186657044607387 -0.2573578870728852 -0.1107223860738955 -0.10727161110906991 0.13482348570325087 0.1463514651454787 0.2958953861296578 0.3081024385752613 0.4488479223356592 0.4586572899684569 0.5267037174579343 0.5369298642644225 0.5902968715221704 0.5970553794666316 0.5986128808295845 0.6077892500352888 0.672789636092773 0.6762548658266283 0.6943224236907213 0.6969887262946628 0.7533340182545771 0.7531765215003574 0.7978703661992483 0.7942045765451056 0.8832164419481146 0.8780816863913259 0.9277856142641241 0.9219594389220802 1.011077607105662 1.0040128387423835 1.090195484248845 1.0831093348730434 1.1743354902067935 1.170411020415223 1.221927214955123 1.2189570610605358 1.2641911527519127 1.2620584720379853 1.2885694218615669 1.2871435191249887 1.319440592534761 1.3174810679081688 1.328415799538135 1.3265174065388976 1.2969161475531692 1.2964289013804589 1.2624391142891014 1.2581406273488867 1.1604766792585224 1.1585752748490705 1.103884451661017 1.1013807652086598 0.9628772763529767 0.9594915478487849 0.9306696418265759 0.932782146092066 0.7672458300226239 0.767296421714228 0.7314615435844303 0.7311013789227729 0.28066276984151983 0.2820404900146656 0.5877326557245013 0.5890001582837954 0.2454536627543007 0.2501469455736398 0.3643140239216507 0.3720894850955574 0.10757745064630342 0.11570916164858858 0 1
14 0.6211123311063957 0.6179645040091515 0.21651792542598258 0.2113337827416757 0.20484268802426442 0.1956199431012564 0.13964776486692188 0.1401904209875795 0.03595045641175432 0.04162967493532932 0.08570437369411366 0.09780120852586549 0.06617748644006127 0.0876325796544748 0.13933969760197584 0.16969922967972195 0.14210537674299673 0.17649899394412216 0.16889578543448636 0.20457858734845047 0.19469604244743977 0.21898728180189408 0.16432115217759957 0.1853853643461676 0.15651587804256906 0.17408866120841537 0.09915001916095179 0.12261613211662592 0.04150470141142648 0.07415350753425543 0.021398418832099253 0.0537891470995433 2.5235975520841408e-05 0.03580651100349996 -0.008073048373383076 0.02150472161267203 -0.01566541580624659 0.009451853370052275 -0.02557867709144546 -0.0026540156923431386 -0.028399766180413625 -0.00952394581474181 -0.03617522735432033 -0.01879728242935386 -0.051281364413448216 -0.04056556230607811 -0.07610893592710966 -0.06317402563265517 -0.09057966543097251 -0.08027160826664925 -0.09561203304046728 -0.0800933327819493 -0.11501816274491716 -0.08841596719183542 -0.1885047027869362 -0.17446430380272915 -0.2195038583942477 -0.2027032008074059 -0.3558081143702623 -0.35777245725319773 -0.24453741036658272 -0.25377400777657755 -0.19251379320553497 -0.2019696212791473 -0.11501695818083135 -0.12990928511472788 -0.06442948255109116 -0.06818410880656245 -0.48350606109418237 -0.4805551802249681 -1.264719473844103 -1.2492834367959738 -1.699597072353324 -1.6797256797707298 -2.492500478415014 -2.473694899192596 -2.8358777326904523 -2.8276129926419404 -2.6414286789382055 -2.6429631430130174 -2.5531812976607817 -2.559014022820042 -2.2401577784984266 -2.252533394630788 -1.926176405032086 -1.9306388632584817 -1.7643904239585595 -1.765392018995911 -1.5946879724278311 -1.5921796182896415 -1.3900200368962388 -1.3871688337051253 -1.2010252869671696 -1.1978702324854105 -0.872043476940231 -0.8780093817162289 -0.7093244856969889 -0.7207666399481027 -0.34502515781510823 -0.3605815007013078 -0.1364642217286871 -0.1617173055056611 0.16113357446552357 0.1464951094127116 0.3090528396389658 0.2956749509019545 0.47978474175152996 0.47284705489930445 0.5615354948452733 0.5701354801359173 0.6379732168975281 0.643271190887944 0.658843795389302 0.6689645428382818 0.6592286536147185 0.6702004255903233 0.6575705711506004 0.6554677033977967 0.6962461125357606 0.7007535913448635 0.7066725181215148 0.7072516123057682 0.7649752267208711 0.7667525610294845 0.8131183406794804 0.8199259346104384 0.874403851096325 0.8835368559949401 0.9102477634567663 0.9219187848841841 0.9663750293171489 0.9763967013700707 1.0087925490348795 1.0151463234465083 1.0731090438326447 1.0706454091361408 1.1002755776599287 1.0925582367031623 1.1398584569427257 1.130808868107053 1.162837022584668 1.160974766508005 1.1303782364463757 1.1292465484877567 1.115505784819895 1.1193715321122824 1.026941716115786 1.0321713310943323 1.0339339094928945 1.0380914624350694 0.9519061066594148 0.9563684143152997 0.9474296453755215 0.9506455303436141 0.5085958066969667 0.5082669607015404 0.8292248682118739 0.8236917030837034 0.4511582762522437 0.44593769550434104 0.5545857623521897 0.5474628737717708 0.24178907766424373 0.237976933473675 1
15 -0.055568407994847746 -0.060652270719010914 -0.3078863390624207 -0.3133119968459326 -0.23701671449682493 -0.24185484614748276 -0.24059848580598242 -0.24012298413310873 -0.25000342104696927 -0.24541945241841745 -0.144950375713222 -0.13932867512474445 -0.1274841964689699 -0.12500460129832902 -0.08648595438534556 -0.08561716253845475 -0.0768370949169821 -0.07881077317158258 -0.06899568385937727 -0.07473422716417844 -0.08610591441627236 -0.09105607052691056 -0.12613779496205524 -0.1364051980884824 -0.1477573111741819 -0.15861464956163474 -0.19266436371626128 -0.2034614738994236 -0.2181689002461482 -0.2307255774176582 -0.23047803949802415 -0.24283897500558993 -0.23847273133554836 -0.2509158783419707 -0.23968121025463773 -0.25049729232215157 -0.25283715805883844 -0.2618707864203742 -0.2906255379947993 -0.2980552892760784 -0.3097226970112388 -0.31765294467017213 -0.30784719072963185 -0.3171066748572571 -0.33025840668715745 -0.34221822235414834 -0.3671587217508545 -0.37695785058892284 -0.38434122615289823 -0.3930303491858922 -0.41148005500620854 -0.41890920400544474 -0.2486690651809127 -0.251813579726921 -0.09198840312932788 -0.0996271462794951 0.02778441533302356 0.020352556064594296 0.09447028768757804 0.08695079638190606 0.06863931429043646 0.06028475893227636 -0.44584145011803855 -0.44606278876880623 -0.761287422942214 -0.7604053808903792 -1.6178265945226755 -1.6152772852055683 -2.4410204960829436 -2.441128756280156 -2.518159500288906 -2.520267638009585 -2.5799215663721995 -2.58200873714926 -2.382255686586168 -2.3844471650845342 -2.0406280616453696 -2.040596818264394 -1.9756580908310521 -1.9762914656844224 -1.8386438196117076 -1.838702542110891 -1.7001821893580065 -1.7004449348992239 -1.5411313968970788 -1.5412685666323505 -1.235574594076386 -1.2352359609977626 -1.0726579037525603 -1.0724981484406797 -0.6862156765632683 -0.6850582410473152 -0.46623652693693884 -0.464217376388099 -0.0903369457676817 -0.08845150183236683 0.08863116328161169 0.09110925274714532 0.34050220107334894 0.3422440007414309 0.4867775374106813 0.48658330145184436 0.6080924990438916 0.6090730142097414 0.6599065220540083 0.6603723872141956 0.70042323964433 0.7008845876891954 0.715013220992688 0.7172684661023467 0.7979685381722419 0.7976330670743437 0.8265441108389027 0.8254943332381188 0.8975302769798006 0.895605082429654 0.950172437798912 0.946724674244301 1.0243880402538679 1.0219972816845555 1.0641296208549704 1.0620969189601652 1.1244081156960775 1.123479697926939 1.1726051338975267 1.1734931987697905 1.2304257157215375 1.2291711622261658 1.2582634928856393 1.2572558750278588 1.287166405842619 1.2838854744138928 1.3080830589106753 1.3032587797470043 1.341613907085339 1.3402687101425101 1.3528109325449904 1.3519192539804692 1.3443196591630908 1.3474424915555545 1.3298606741590646 1.333717086079787 1.24237137776052 1.2451334432092835 1.1992347332835607 1.2015758035843334 1.0647599090128708 1.0645445931825321 1.0323423791945174 1.0315798901281994 0.8930282187090839 0.8929520300306564 0.8626156858115621 0.8628834001796335 0.42017538226009066 0.42112759016992385 0.7499537102887714 0.7514714610368927 0.387194116449578 0.38825864996041304 0.5083949456356578 0.509105638446286 0.21780078617737075 0.21776766066501096 1
16 0.4369832672314473 0.4267989790269411 0.2183274818238914 0.2098871012746173 0.29404035743750967 0.2883888438879083 0.37352562662686495 0.37372136829080915 0.3945019056171688 0.40311363540764944 0.538083234376586 0.5494220972573416 0.5651314197824391 0.5699873187533626 0.5831053227888603 0.5894172385985073 0.5751564043865969 0.5771860948711875 0.518334406189723 0.5271075475677023 0.4614425432758722 0.4749511272161939 0.4113477343572285 0.4270040560625503 0.37709715914129305 0.3959802068914797 0.3372971571820287 0.353147413705166 0.3127210384212802 0.3254815880643136 0.24746829618781874 0.2665314262688341 0.2194326693726225 0.23735688411050404 0.17410612738765963 0.19551755515396252 0.13169131793912214 0.15845311823357378 0.0630519437784045 0.08385627124545891 0.029338604144740543 0.05181757683209298 0.01289088383504122 0.03890645667833326 -0.02056347452017349 0.0104941024452998 -0.09141894545776097 -0.0709639415755916 -0.12062299943619337 -0.10204922351503853 -0.23559081176024677 -0.2297092264702556 -0.08147888262165282 -0.08729963742531055 0.04685417051651086 0.05426916588773878 0.18204932411051544 0.18815616288455317 0.26506908546866015 0.28128041007651916 -0.1919250625085951 -0.1667246784103753 -1.053283393855363 -1.0415048650832865 -1.5538704149570783 -1.5445594357147847 -2.4849913011893268 -2.484809713153391 -2.979894530188204 -2.98300522283324 -2.8473977318956116 -2.845866655657291 -2.757622022291688 -2.7566180557687927 -2.4604419839794875 -2.4589562294648957 -2.081447576532762 -2.0806072425123983 -1.946898370429773 -1.9441627301056421 -1.7700824409755462 -1.7703944230737712 -1.5856070649259273 -1.58092868858715 -1.4250287346336812 -1.412960207057946 -1.1038515964597302 -1.111522411128682 -0.9533646523668722 -0.9621758880840652 -0.5631509350249075 -0.5916819388203933 -0.3456316558323138 -0.38968166102733903 -0.01140969089107813 -0.03384740725849156 0.15485930128355818 0.13368336579603124 0.3531805392175258 0.35275743608238486 0.43562783149388906 0.45291844552263427 0.5044123556269469 0.5087840198353746 0.5159912279018002 0.5225443576696307 0.5104047608128326 0.5105577404517305 0.4994326876962063 0.4839968012185878 0.5605594967947454 0.5583283429668029 0.5828228525107377 0.5815119856443545 0.6435720307683752 0.6470008224386348 0.6794942397943942 0.694778652338222 0.7400883304259835 0.7477376135119016 0.7722568166195956 0.7803629306350572 0.8279546553833868 0.8326392051131037 0.8839882663860976 0.8786454223834852 0.9246928959738057 0.9248226877540517 0.9502561550028759 0.9499405592123935 0.9659654775279733 0.9703705683897823 0.9755791034968269 0.9916422667221312 0.9921427630997854 1.0030169653844396 0.9961352907622043 1.0094258486029943 0.9691289639583331 0.9755803080609127 0.957571472696003 0.9568351828985513 0.864577619566326 0.8747534758222315 0.8185954935776607 0.8280483102410585 0.6851294917288371 0.7039264131468883 0.6398764281531086 0.6607575465806335 0.46129799558557494 0.4629310833449125 0.4153514042374411 0.4119527266693268 -0.03261543933972888 -0.05580570711975241 0.2084175330899285 0.17554226891896718 -0.12400661995323503 -0.16515994966290748 -0.0654913057927331 -0.11288066377464645 -0.2951929438671712 -0.3311886313024246 0 1
17 0.13788097049405934 0.13378635602536804 -0.09347061923691768 -0.10207120680960458 -0.012403757402893236 -0.02003527316854559 0.01767932721715937 0.007311945271609941 0.02028871416804634 0.010597996097700955 0.12271249724349076 0.10879104896275749 0.12537458387313194 0.09827580677567482 0.14368787281073025 0.1266791267780647 0.136252700991065 0.12003655812686276 0.1095562482982686 0.11240052524588862 0.07442272760743407 0.09911388223837747 0.043131164068292094 0.07483589308886707 0.019846940289575343 0.06069039588817304 -0.003453846245321303 0.033799406095518236 -0.016227947234320087 0.010656417455862764 -0.05922968053366873 -0.022223664971441796 -0.07537625982191543 -0.04044510589749706 -0.10273010336454291 -0.06925948339416976 -0.12133820936214335 -0.08199022007607937 -0.16239186139371498 -0.14705203890193985 -0.18182930976439593 -0.1726201161873533 -0.18359851326543009 -0.18988061611395324 -0.21185517759037253 -0.2321258831674129 -0.26002900793316996 -0.2787681102751023 -0.2820454280115712 -0.30388357260527243 -0.3684244174640199 -0.38476071559578173 -0.23218641251272487 -0.24532338843257406 -0.12552497298339915 -0.14757512085620306 -0.018561489009556457 -0.04327703606323752 0.04736761595808758 0.01641844976033724 -0.2885515797800551 -0.31216103586194066 -1.057791324375998 -1.068879637926905 -1.5065193018848895 -1.5137129586053497 -2.365565623039455 -2.369450793927726 -2.8386604262991852 -2.8460407151676907 -2.685385518629719 -2.6967701549457352 -2.6180064196437804 -2.629397643419641 -2.321609799698889 -2.3295224306080673 -1.9682908263117245 -1.9760474661717904 -1.8338449868643494 -1.8378719951737246 -1.6609305651988073 -1.6615323955301804 -1.4671890799190912 -1.4684708866769043 -1.3005837132234923 -1.3016723380160435 -0.9785350729334574 -0.9791659633734007 -0.826231194487665 -0.8284272653866083 -0.45394816641554314 -0.4532916789887764 -0.2423484162816436 -0.23782678384453249 0.0840965817805781 0.09452539649450387 0.247797142183245 0.2629318876394109 0.44774032565875643 0.46258898714454233 0.5442370511499703 0.5541765117040356 0.634808224762061 0.6451858455023398 0.6610029765131173 0.6681291776447722 0.6722749860871104 0.6792093603881 0.6773796275417538 0.686858643474018 0.735067406175304 0.7368775648552557 0.7586904136031549 0.7605544765259467 0.8212885977325115 0.8185653794755154 0.8678431928029582 0.8612584432278751 0.9474444012855727 0.9420033853099667 0.987915646581655 0.979147323460019 1.0623477694310353 1.0510339012550602 1.1262592295549467 1.1061628846293274 1.183670259589782 1.1637259908799962 1.2147958944261035 1.1932287767517096 1.2258339174264279 1.210607323958719 1.2316965308320675 1.2388736247963479 1.2460227126456331 1.2535943013480164 1.247580214008586 1.2620964158066883 1.2130962545010249 1.2228980936082863 1.1768677850561886 1.1694699547231835 1.0646159636046164 1.0687876701747996 1.006621322270206 1.0087979695732656 0.8576206596887275 0.8621209111133155 0.8109582561326008 0.8205474896787166 0.6563783538466694 0.6592331707300403 0.6177747851656363 0.6206765800483538 0.190887210808107 0.19852324368908114 0.5022197478497503 0.511041071791162 0.1626543366238593 0.17165453833201383 0.2754635701061403 0.2858490205129769 0.016491627028550226 0.01752544415519708 1
18 -0.16312483863993066 -0.16919493820935116 -0.41441346969617854 -0.4208958313239677 -0.3439627322914234 -0.349987660707626 -0.32216825314583275 -0.328338632675397 -0.3079625277408482 -0.3121733826438202 -0.16904587340373212 -0.17186124081329268 -0.1367497034170242 -0.1409662799994038 -0.1024009562280952 -0.08852528138262272 -0.09409127088213154 -0.07780104732665194 -0.0989610223400419 -0.07905770880917373 -0.12140084669460549 -0.1006727079059786 -0.1409707971147256 -0.14655515621654303 -0.15538310526042665 -0.1672637208387755 -0.1888994986660606 -0.22200453343639026 -0.20984445899013338 -0.25140703934795994 -0.25347136105001766 -0.2925609713396753 -0.2747129452802213 -0.31612284714017136 -0.2984645399242325 -0.32231310197715146 -0.3144090535870845 -0.33070319197584297 -0.35516638285354674 -0.3694145691425561 -0.3749140064763239 -0.38489412106828524 -0.36585869596124354 -0.3789532109970679 -0.3904598094267726 -0.4103164460993156 -0.4259134430234113 -0.43164355437961177 -0.4394557547581357 -0.44178688740520045 -0.4928308928234628 -0.4909827903748081 -0.3204899942332773 -0.30702025748472295 -0.15659971498709524 -0.1539310032549821 -0.017201837297697867 -0.014140437673610508 0.09291941142709703 0.0880011762647328 -0.14818101659136573 -0.16474256820717414 -0.869031916155194 -0.8829846831021584 -1.312005540455658 -1.3276329526229205 -2.201668718690801 -2.2103331481600357 -2.71349364514583 -2.7148693702597084 -2.544938992618368 -2.550744502157815 -2.494009044361981 -2.499217278328004 -2.189181981521523 -2.194696777047385 -1.8328438435385301 -1.8406546887824575 -1.6970263820236937 -1.700241815280254 -1.5207927840197009 -1.5237111416585982 -1.3079640773772532 -1.3127258697789728 -1.140989662359864 -1.146003208655518 -0.8337174097104665 -0.8446572607377973 -0.6849535945423604 -0.6980884624750594 -0.3602348873856158 -0.3778796432555893 -0.1769116768840746 -0.1930983079281745 0.1393875790243868 0.1345931128218396 0.28392533166793754 0.28346368248205067 0.4800985306958836 0.4901849480684177 0.582391919709039 0.5939813319196432 0.6629402167041221 0.6717154660692515 0.6949852350789385 0.7036556873686024 0.7139065277388497 0.7167194860202386 0.7220674494202157 0.7222535545714734 0.8099289561212757 0.8080167106350515 0.8448257799692485 0.8425925181541558 0.9309548223738915 0.9294915781506532 0.9843257444649183 0.9825080572594302 1.0701178100665558 1.069386037384426 1.1141991339278121 1.112630189206044 1.1798219784766388 1.1759776121967747 1.2445745254734675 1.2303230266332221 1.3020936651350041 1.294072472887592 1.3335300775054648 1.3249023872408472 1.3508378565724328 1.3469952971386974 1.3593197945826674 1.3760177630811938 1.3721252142378972 1.3803788873538707 1.3734348765401947 1.3840332336491983 1.3349156273451683 1.3401542765543581 1.2933717177306718 1.2854041285850784 1.1820992068808636 1.1880925154898136 1.1220269936394516 1.1318616571180513 0.9835051351814599 0.9952291574286534 0.9620117970573219 0.9742748617329156 0.807168095236598 0.8088099160855577 0.7753793478710378 0.7711326571865129 0.3398008436343858 0.3331311722912531 0.6701188163735097 0.6656056158849992 0.32271500550022836 0.3208280558598062 0.45505233080064755 0.45745935098511836 0.17671882688978258 0.18211858654544955 1
19 0.2928123043520259 0.29349318420153025 0.09461212510868222 0.07691135700871854 0.19911829834747152 0.17170964713893966 0.25306229180232265 0.22138647231980713 0.27914351338829135 0.2419227842777687 0.37000679379119106 0.3370999098129772 0.3379452126601947 0.2985294666443039 0.32531415365638594 0.301602008486185 0.29156678508729783 0.2741090377916464 0.24361429339526808 0.242044746391457 0.20907642964486683 0.22241336320296057 0.1841389416583752 0.21048125250994332 0.16696547148697505 0.2025139645053713 0.14551128169562588 0.17804234167906685 0.11744102366296261 0.14831068863104946 0.04231537304117694 0.07915365305445476 0.006989423237634183 0.041268606850607625 -0.03363600626143182 0.0010527291407171884 -0.06310084836444219 -0.024562627285064313 -0.14827437030801605 -0.13686955754356234 -0.17687403425639303 -0.1713971824992342 -0.22425104545642682 -0.23593079997346678 -0.21732148941178053 -0.24422000772997166 -0.18443688986915419 -0.19458985940742934 -0.17255506972671952 -0.1815784592935259 -0.26317593160734987 -0.2546400893542753 -0.03180025059465663 -0.010364430405616078 -0.14866404678977574 -0.1381677764870446 -0.0721627839819945 -0.059153491855241214 -0.4131787915082228 -0.4015378841829502 -1.6214905773306896 -1.6087985372700366 -2.384832324450972 -2.3668062487625843 -2.78237765874385 -2.767833526116008 -3.0658492401733968 -3.0607993781526868 -2.7344993983136083 -2.732433984975348 -2.457456848319083 -2.461368519617242 -2.1288599718028163 -2.1368917792712345 -1.866451633244175 -1.8756477271867844 -1.7188378756369964 -1.7244029617134409 -1.4555066151328582 -1.463830002395298 -1.3679930768820867 -1.3747106296476304 -1.0657790899700288 -1.0717412304832585 -0.8360518549087672 -0.845261500197342 -0.523100684876816 -0.5242504412967222 -0.3588074789439304 -0.35916252420822303 -0.036797384704641445 -0.03167467478871089 0.1454329850300482 0.15123898392365476 0.37207834287776365 0.38344581415555723 0.4830247180013387 0.49797486401135416 0.5709551859963113 0.5858803373015462 0.5920582453566468 0.6127297696332406 0.6360206185144293 0.6423156704268749 0.6359844815918549 0.6365141886485901 0.6550283386474973 0.6455990109837728 0.6668812492518725 0.6491600035624501 0.748443789207208 0.7410839026429059 0.7867025514186778 0.7821267135977052 0.8815556492148033 0.8854629539681511 0.9583285412239348 0.969381018993289 1.045734421559537 1.0454122006665827 1.0968199844387598 1.0939621561451744 1.1506630956514243 1.1373878960027284 1.1917173499650389 1.1641990834246982 1.2396749610544333 1.223599149906228 1.256253376567443 1.2407810520262288 1.2344477552040587 1.2286932514251205 1.2159962425376136 1.2257553196198288 1.1768003294673832 1.1717926554216476 1.157971487101058 1.1507703018550615 1.0559693014556473 1.0420623079439437 0.9688859431540209 0.9538165452995102 0.8054452674528676 0.8053904597869632 0.7164785732030765 0.7238622499080734 0.5478673061635817 0.567267714188624 0.4876640965778378 0.5054371385229501 0.30618386912758666 0.3215375441063486 0.2603011196760008 0.2708579193240439 -0.14832074602531975 -0.1521118103443868 0.12330152908145209 0.11403903354361233 -0.18495515356707415 -0.21219847835482852 -0.10469775879871435 -0.14258370842562584 -0.32229081754156397 -0.3565492224240572 0 1
20 0.0788814215710616 0.0929666905674651 -0.17467359681263872 -0.1590630485425777 -0.0937533906560617 -0.08074710993952294 -0.07565270727960893 -0.05367423096991075 -0.07325201105658863 -0.048889100139028585 0.046036873784288446 0.06427578088958796 0.047361894278679983 0.06058349082555736 0.06789820623664156 0.07626691522280993 0.059454814277152934 0.0637466761148957 0.03377260454460895 0.040626574192870635 0.006783743919982042 0.020090864516951967 -0.04059808553639499 -0.029890414236604105 -0.06513445368231174 -0.05209836000464918 -0.10358684957057562 -0.09186282732338213 -0.13179623475515 -0.12278037371387995 -0.16514308576570613 -0.15603055845654978 -0.18012906755727442 -0.1739872964247482 -0.21038621168772664 -0.20862242872507863 -0.2683100848820956 -0.26145280268259796 -0.307553879374737 -0.30453674748080317 -0.34042824012263395 -0.33554734644692985 -0.3294661046597156 -0.3241232606571032 -0.27521705535013297 -0.2758898043920581 -0.2897031430460899 -0.294472915684878 -0.2757570012015975 -0.28448948854168066 -0.3514933658148891 -0.3623160729848749 -0.16717247510927535 -0.18076146370232493 -0.10077298786612232 -0.11439901680481057 0.031323424617134776 0.014726639501816406 -0.033476100379040474 -0.051754456958150286 -0.7775491886711663 -0.7868511336828163 -1.6275171620225102 -1.6368817443666224 -2.0723046339804387 -2.0783735289857734 -2.6666981749008487 -2.671723051627435 -2.7389203367216712 -2.7476011783765752 -2.4986441316789243 -2.500873855087015 -2.3364289493645725 -2.340328499736618 -2.048696006036362 -2.0512797960004256 -1.8108078492937345 -1.8102638380384803 -1.6291382041409896 -1.627688962975249 -1.5040558177588963 -1.5008063555669118 -1.2376461431629586 -1.231512803979033 -1.0189215470320008 -1.0096604066287576 -0.6797702047106071 -0.6752878711767956 -0.4913101306651271 -0.4871875100814407 -0.1483306836790277 -0.1434389489265513 0.049440670749767435 0.049278656880225924 0.2929658862729667 0.30951388654280976 0.410610239995691 0.4302545722481099 0.5259421318146806 0.5478971191247055 0.5645020350476031 0.596092932762069 0.6528339240241721 0.6706861660579264 0.6746883302330318 0.687917154164424 0.7279911944532103 0.7353763768633144 0.7767938072488008 0.7711200092636119 0.8388333747833627 0.8353151442297317 0.8736708738501093 0.8715589718666621 0.942853205272506 0.9387941254443462 1.0058898507290976 1.0074076014772189 1.0886382840269135 1.0849258175144456 1.1311687316276888 1.1239136421388523 1.1929758182936894 1.1853566493099166 1.231635700345734 1.2144700598408917 1.2948343596718672 1.2799323962252842 1.3201356260122736 1.304824110776515 1.3202798725615494 1.3072919614473193 1.3248415567545138 1.3248641423311227 1.3261873559793855 1.3266616530881734 1.3222857729054454 1.3257654574083304 1.2623135384831556 1.2676238592554512 1.1935681626828867 1.189079354617114 1.0580694589392579 1.0731731868702141 0.9860615213125712 1.0049728763187744 0.818177208698863 0.8372641289205731 0.7475015189510827 0.763282513039286 0.6021558049469746 0.5861763589256341 0.5616960030097076 0.5283904083190905 0.15818570500652385 0.11656620899564274 0.5001990915958032 0.469989828887762 0.1630051659138516 0.1481209697875343 0.28680152956383154 0.2934865590990583 0.02598961484516593 0.043238069130907775 0
21 0.3427252240937122 0.3594412610535258 -0.0012687669936610763 0.01714299505795225 0.023005608463591898 0.03669307017065648 -0.04883549703721002 -0.02604484339265412 -0.13318027888974626 -0.1060080233830547 -0.08856894683073335 -0.05132924583585918 -0.12179985854803022 -0.06989940806475659 -0.058154607087082866 -0.009522138968613094 -0.05304424395303187 -0.0021749003272120166 0.0058402690997709766 0.04479225794262476 0.05652109844616149 0.07000017056638086 0.06266377300175208 0.06419326824970994 0.0763102795298991 0.0681388179127822 0.0616618768233792 0.05400506521192483 0.033823497377234446 0.03893115024209237 0.044043019081250634 0.057965370785048265 0.039829453909085544 0.05807046900153523 0.01711920491725749 0.041262885171200026 -0.007217205590414723 0.025840851180568336 -0.031575599392652975 0.0038961026652728475 -0.04626977553443368 -0.00835371180537692 -0.06940523564855283 -0.03901348148151129 -0.11765465238773487 -0.09960516298492905 -0.1596210628553294 -0.16794731095747295 -0.1884628441849543 -0.20819601303870172 -0.2009132185758915 -0.23500177992228544 -0.1735638921485858 -0.21196659976831 -0.2243299444040474 -0.2640088876726878 -0.2317235587627522 -0.27286424054952363 -0.3447514206266078 -0.38409820534858596 -0.20150676752917462 -0.24906898045740178 -0.1646964936308919 -0.1990566841786361 -0.06537898019173127 -0.09916007655522208 -0.13027065434047103 -0.15129842844544328 -0.8060300524865802 -0.803282140665825 -1.6352328467036585 -1.629914244553273 -2.072027960666979 -2.0647645898000526 -2.648557665624309 -2.6444189339959747 -2.7384984005079884 -2.741190111885615 -2.489548844693246 -2.4893036406165283 -2.3255205675739834 -2.3268077948701826 -2.054640981511369 -2.0604896671447666 -1.816441143811538 -1.8197166547018782 -1.6485372570314354 -1.6529879707579944 -1.5391503406874527 -1.5429551069229959 -1.301245771759156 -1.3017313616562483 -1.0788596019483556 -1.080049410124115 -0.7603296439234839 -0.7460520963848829 -0.5695562045512048 -0.5515919380574701 -0.197248934626856 -0.16762900489779753 0.0108729378502872 0.04400146162029017 0.31836412002228087 0.33923289166792614 0.4648499539336086 0.48343908804685753 0.6217546649051542 0.6250328860646874 0.6931777866681799 0.6911857388112708 0.7691921044442722 0.7669925704235823 0.7866778578549187 0.7825585498224683 0.806856715420416 0.8077158707546204 0.8291959586738145 0.8356765134554749 0.8807787053794556 0.8816932706616072 0.9019540385849396 0.9022958336442883 0.9666644258387649 0.9633594031283224 1.012876021285777 0.9940953614828842 1.0841874197298438 1.0792396727473772 1.1201021002303264 1.1167196842773706 1.1672472328438417 1.166949404373625 1.2056336788484074 1.2187092219998803 1.2551831213772005 1.2533067116725292 1.272521917969378 1.266656293153524 1.2835725888926035 1.276815887794271 1.2788064299460729 1.2640225137798993 1.2109298459926947 1.209363912681141 1.1818920218581042 1.1853262340667499 1.043588791781687 1.0502382866763824 0.9952198220569883 1.0110905561695844 0.8727310127221557 0.8792967904128872 0.8391315043946008 0.8426057683590997 0.4114221161895273 0.41323829768990805 0.7413079515628667 0.7422758188058154 0.3700597946109667 0.3712751997735495 0.4743009637508777 0.47812003418493987 0.17152324084666049 0.1752013772826828 0
22 0.1047611798136785 0.11380173441870767 -0.15822798449008957 -0.14905251870744962 -0.08571111853714797 -0.07253107945123105 -0.08330078580144118 -0.068625581544012 -0.09731859920903929 -0.08121538422788177 0.015455099632710299 0.02427823042025068 0.026235948200714176 0.016967730983466822 0.06493949570086954 0.06041876668682278 0.06817977309169976 0.057857562299368226 0.06540746884820692 0.0614604134800274 0.04517169562965506 0.06739710757694439 0.004755860281520084 0.024290577202130237 -0.016535412217223214 0.012569566365151273 -0.05929773840451702 -0.02979435025076072 -0.09044475425336174 -0.0782792592687187 -0.108367463286136 -0.08421264081439972 -0.12035106909382165 -0.09985902486601361 -0.13782357229952424 -0.11815544990641058 -0.16699209163742523 -0.1377025136089003 -0.20569594027860205 -0.20339612629776838 -0.22793159102062077 -0.23008776073422155 -0.22392340402508637 -0.25045543372016965 -0.2345672334283293 -0.2747015019214061 -0.2682257653960889 -0.29419466138105577 -0.28034096983014933 -0.3081432123537198 -0.38099825967375267 -0.3855674723922533 -0.22935056751370553 -0.22972789721358566 -0.15688399211134652 -0.17711976532989837 -0.059717528988421975 -0.08825154419412229 0.01191699377166344 -0.03811397325043231 -0.4091197116800629 -0.4616362966932286 -1.1226887202041453 -1.1588628336946094 -1.5282228364420014 -1.5537999479580584 -2.3188496163815095 -2.333437565027973 -2.682395451785088 -2.6830607475867323 -2.5707685355956578 -2.5703043267110885 -2.52483045148138 -2.5268810712669616 -2.2561571751124383 -2.256485870537354 -1.9537927682601648 -1.9584635407881503 -1.8396582131424708 -1.83587467734894 -1.7034128302361502 -1.6987409284293342 -1.5377664471233672 -1.5307337502788734 -1.364382847746402 -1.3544893111981082 -1.0409784705777874 -1.0290757211343617 -0.8644705331032512 -0.8519328278160927 -0.47493859903385527 -0.45865801199106215 -0.2551032442452694 -0.23874737194711315 0.0800305757089248 0.09776055448796939 0.24516396509166327 0.2639786538299802 0.4493360719314339 0.4652917278120796 0.5515303855485314 0.5695289821187117 0.6659338595983826 0.6752153270205739 0.7032693234380787 0.7092846153415948 0.7368715420348266 0.7370986023650019 0.762039704043751 0.756745042604571 0.8144683558786525 0.8042145040981907 0.8353648324982714 0.8241199256162091 0.8844475064438129 0.8710410093097636 0.9233615515179636 0.9062076555129579 0.9835873466803164 0.969940539011148 1.0117587880961878 0.9965532744999805 1.072646792364715 1.0606393964163345 1.118865012914199 1.1129081423688447 1.1822666412887912 1.1703399511341601 1.2155315819415122 1.2057189017574785 1.2449066840201297 1.231038236559172 1.2711574480011762 1.2533256835568807 1.3017021818071157 1.2951707341928298 1.3099880770123846 1.3056591748290032 1.2914438129113321 1.2960148324759615 1.2652936300314508 1.2665644451419809 1.1659538321567027 1.1630975095682246 1.118610849892093 1.1104975084921165 0.96193470495583 0.9486742612171852 0.8972869550344669 0.8917092210351214 0.7549484352705846 0.7514353241143183 0.7130672477120612 0.7125321201169399 0.2871728364432826 0.29158696153573516 0.6060465469441425 0.6116896285451432 0.24868340020938007 0.25728218093593824 0.35301039454040506 0.36546287691849244 0.0730082682296711 0.0845732880175376 0
23 0.10945446263301761 0.11548993098497107 -0.12823975929179454 -0.12266654240777086 -0.06100972511147518 -0.05685156988725737 -0.047671888130317086 -0.03742707058049888 -0.06251392451363103 -0.04953384306595865 0.051115014829044014 0.06014141580606491 0.09184584368561843 0.0979683417927717 0.14387969964139558 0.14264170890220385 0.1638995547475659 0.1570877448423076 0.19366523673100744 0.19624691870792077 0.18588766756995057 0.19638544357778898 0.15264742048098867 0.17685735175965078 0.133449680363384 0.1667871960022751 0.061556477465870785 0.0962349740732904 0.009209434847782914 0.04319259683666843 -0.025175148122698946 0.013999986217051228 -0.051184698145561924 -0.01445753916920012 -0.05289548028843427 -0.014117852097001561 -0.05671485186351788 -0.008302216690708521 -0.08458485111691516 -0.052674442778688046 -0.09230761261206766 -0.061157585353008415 -0.11688011768055873 -0.10357721305788914 -0.14583211662403528 -0.1554595950798756 -0.17295528614423006 -0.1895020818499873 -0.1905063871565318 -0.2162385862986369 -0.17819032166116244 -0.20312299139131085 -0.14906456434830773 -0.16101986289997683 -0.14281799614031598 -0.1636286475688209 -0.13031130837836713 -0.15081238683681875 -0.24917468095593165 -0.26864103886467205 -0.07175323219281893 -0.09807536659594973 -0.07852167779098806 -0.09581289410177618 0.024201740600801713 0.008194589605487577 -0.1231811924134334 -0.1346191306902469 -1.0446067681747593 -1.0436547108354368 -2.0031464691250136 -2.0009247259539915 -2.467128443934566 -2.4644934599968558 -2.961479417942727 -2.9546774515846073 -2.8817605386059797 -2.8785832373312608 -2.554585104174911 -2.5502661396452373 -2.2765766443540763 -2.272572673332842 -1.9497744930404117 -1.9455192951220308 -1.7436317193562552 -1.7383628054744094 -1.5100769819123308 -1.508070930997924 -1.4015017911916736 -1.3998540980927956 -1.1243725502255977 -1.1256283082850551 -0.8941294605945878 -0.8985627081419025 -0.5716894875471752 -0.5774027350061743 -0.4041027022626622 -0.41148758353174486 -0.06406359621002622 -0.06976720715633888 0.14439856562135844 0.13848987763943654 0.38554567049814636 0.3859567279924292 0.512524793603859 0.5158219866477438 0.6263576054180575 0.6319332314302528 0.6480554182957619 0.655557744563211 0.7249445507391741 0.72963301530217 0.7358175484597425 0.7380336452366123 0.7553603961879318 0.7563954178786645 0.7762701230124947 0.7769759975667796 0.8266031344791074 0.8256891714789987 0.8511262524200802 0.8512048502266794 0.9088155367587376 0.9057505234423928 0.9560757052424478 0.9494216932324306 1.0038044491555382 0.9975000618714276 1.0302876940051462 1.0222827633728926 1.0671648212101914 1.0625730229150818 1.0946053933669972 1.098090197267247 1.133675128349239 1.1388963113791846 1.1516872762653847 1.160025268867365 1.1658637909912883 1.1727870230744841 1.17123343654481 1.171827587780136 1.1245875957448632 1.1274758392816153 1.0989824781138111 1.1000400853811527 1.0102410373480666 1.0129564259385049 1.0264523619559256 1.0311348036984924 0.9197975475290718 0.9237804386788042 0.9097014936438512 0.914749821727483 0.4725453115958089 0.4782992130927042 0.8007655359794938 0.8054061191200788 0.4352926615370123 0.43984711834546175 0.5568337800773335 0.5580934529700698 0.2517131800262149 0.2509859244594068 1
24 0.4134421701614315 0.3961127089409189 0.16122572361808807 0.12403149491745324 0.22828410741617944 0.1870786803097957 0.2663450199765549 0.24469388395717573 0.25567770157363867 0.24592314160674533 0.3910155960118118 0.4039758021520683 0.42535199641886123 0.42905422413659977 0.467482227602126 0.4807264097256123 0.4733120166364273 0.48283590258088793 0.4662409243116983 0.46842389557620834 0.44099326107311043 0.44295579710991717 0.38423691161891327 0.3790190411402037 0.3556757937212822 0.35183654683878274 0.2715177193020466 0.27509527463690375 0.193874529740917 0.20764691321603124 0.1446963940915751 0.16359178862364132 0.10916325926527293 0.13083999227147558 0.08471813684885632 0.106661680800066 0.061434816493203925 0.07987127210857636 0.011281285075376955 0.030023398827523806 -0.01070231063168592 0.00724177941361148 -0.02234351909797994 -0.004108526825959304 -0.054545130803951736 -0.04041228152615872 -0.11099250957013851 -0.10473841283661045 -0.13785398754269096 -0.13587007049336108 -0.25249325501233955 -0.2572967554455303 -0.1141954454743086 -0.11325136837205463 -0.039010470071296766 -0.04156143566402193 0.06002397080769839 0.05913500251237025 0.130459048879338 0.13260076382390906 -0.2578881964116633 -0.25698055737300507 -1.0425633757736925 -1.0413803432709159 -1.4835021901922012 -1.4825142970713259 -2.3549268377483212 -2.354470082104033 -2.818240994700175 -2.822908492319552 -2.7452095163841985 -2.7511025826756326 -2.70011556819568 -2.705072387051418 -2.418807280347023 -2.4251895878704346 -2.0736233305133798 -2.079455980387385 -1.9209641809475286 -1.9263778683754378 -1.7432705007010227 -1.7472041552937476 -1.538924033209831 -1.5381704278036459 -1.3720306251272127 -1.369466258759033 -1.0173416106629496 -1.0258167730002015 -0.8356614255744539 -0.8465428552436229 -0.4363461725706159 -0.46401681646781157 -0.2179502718645736 -0.2474569725695659 0.11214455537765389 0.10122217052956728 0.26780224137936415 0.2618227852574009 0.47144102747014216 0.48360622131376374 0.5738852881350454 0.59118614095852 0.6894541779379182 0.699266255839909 0.7302630023190488 0.7377415384458033 0.7803364302251694 0.7801665866890701 0.8228885599794893 0.8141006626914589 0.8978253951808242 0.8955743660454658 0.9317986195160017 0.9308545424137478 0.9957953025489843 1.000055243438453 1.043299997542114 1.0547903343566603 1.1082196778058488 1.1158361365204286 1.1380236046990149 1.146412791274642 1.1675598172241095 1.1718429459722302 1.194843193767717 1.1932947266354077 1.2246459160967973 1.2258935433486755 1.234283031065324 1.2340511524788056 1.1901222059744043 1.1918799661166233 1.159077276931832 1.1601062758021357 1.1100078531912345 1.1054404473188626 1.0835631543923725 1.0771804704426842 0.9587639911409553 0.9523566136275079 0.8356635643915524 0.8328572312126354 0.6554764364874188 0.6577548694557294 0.5562733566364102 0.5636151747394251 0.3707081512301542 0.37938041036594683 0.2699514848494715 0.27925282757907866 0.10921987377730602 0.12876874432592444 0.053183251364380624 0.07295014801253075 -0.3131267951177392 -0.2957753506026606 -0.005646152881496393 0.013969872114905966 -0.3151444399614718 -0.3217409340363915 -0.23597627226770612 -0.25577057274880843 -0.46398881035281647 -0.5011875561687731 0
25 0.37640302908684475 0.3929612681514172 0.05463354652369645 0.07368884693815403 0.08091171433769517 0.09635693618697871 0.01240393880335233 0.04432308023120157 -0.07671543394431524 -0.03890326386765963 -0.04348030625271804 0.004380638568790117 -0.06936970100802142 -0.0074433624975256425 -0.005339591321657624 0.033410934177844354 0.0037121055011652953 0.03832133967365081 0.09092194303180179 0.11342621156495625 0.16896745699759208 0.17142446659162403 0.20035628908666325 0.2083946463722981 0.2291251942890966 0.23409612913021505 0.21802573852039586 0.22798085840757665 0.18209298955862607 0.20101217423138706 0.1761141357187057 0.20185386338634714 0.16148440375551587 0.1875228633164383 0.10235958016759383 0.1352282192360832 0.05791658593957294 0.10536948467701279 0.011422520214438235 0.05415985169695148 -0.01430365610723783 0.03560745678831978 -0.04641281751962367 -0.015145646403219361 -0.10889144866346356 -0.10678346151329521 -0.17178505213486517 -0.19045971029820663 -0.2116729872723937 -0.24707602917742832 -0.24184852218603226 -0.27755240397149805 -0.221532645455774 -0.23644093286380752 -0.27121669802115633 -0.2911916831151302 -0.2787274562372062 -0.2935396796593963 -0.3886445313494562 -0.4093877271891557 -0.23270196594145176 -0.27328493455649294 -0.2116660610289003 -0.24893888753613425 -0.11673014945187532 -0.16404482446046842 -0.2595992796955571 -0.3140796053096153 -1.0961584973551908 -1.1214826504132276 -1.9771954157455678 -1.9823118017000478 -2.409679695986794 -2.4079387997417765 -2.8567520754449944 -2.836651363974564 -2.7658102348781233 -2.7565359195551915 -2.4769566328812047 -2.46384751250584 -2.2355135816655842 -2.2273884204805157 -1.9647876528091661 -1.9600101257890756 -1.7815855762835042 -1.7665985404983608 -1.5539714477697757 -1.5512384424295824 -1.4511244109886796 -1.4467277520754713 -1.1462786021196365 -1.1549029798330182 -0.8916045437002182 -0.9108373667468221 -0.5652510925085181 -0.5790126349068601 -0.37032311160427867 -0.38821570653490767 -0.03164998122495177 -0.04122596456612371 0.15600062575486362 0.14575610934606686 0.4264758547109224 0.42773612988570164 0.5501993422337108 0.5562504699187798 0.6811029351309941 0.6902973727979855 0.7407201242889911 0.755950632589979 0.8093688338213738 0.8165179216706591 0.8265983162227641 0.8313623671821446 0.8658532529331993 0.8656216754877022 0.9083656320726874 0.90895285706452 0.974700976278271 0.9698592309353558 1.0075084837194055 1.0017190475819788 1.07233481026649 1.0663240354782957 1.1106218797339764 1.0949116537858146 1.1707154739879115 1.1699249788065984 1.196922873661869 1.200519099740056 1.2063302180310274 1.2112568851419923 1.231658888204386 1.2413149750572643 1.2682948014512476 1.266506626065862 1.2809610939545664 1.2736758903635845 1.2636725879129713 1.2590994603611918 1.2167933628213987 1.2094259477315603 1.0868913649614669 1.0903496684518288 1.0229362393894448 1.0307562694345265 0.842464232079017 0.8465998017266259 0.7611724179019674 0.7672569722404177 0.6411610957506255 0.6317974168295777 0.60284933271938 0.5827439535631171 0.20899692841520334 0.18940409127745284 0.539786487993922 0.5217764480649265 0.18418260710648582 0.17471111969975794 0.2877311518970558 0.2949537181555755 0.008021734659173772 0.022172351257232492 0
26 0.18234173204234594 0.16808330695860718 -0.07136777168535957 -0.09799917791752222 -0.007363258985819245 -0.03921163227362712 -0.018935506158200614 -0.034969157563402575 -0.05768181568340225 -0.06288523139308211 0.046931563759024186 0.06086897251389445 0.07737360847664831 0.10053677356474111 0.15051684775421137 0.17388147618565597 0.18121094750679134 0.20154308585220804 0.24053000705355032 0.24918630571520595 0.2731577333048776 0.2585490812131894 0.2797515171106042 0.2703806108050415 0.28133190519118756 0.2678916802627356 0.23322553043719552 0.2333285206665323 0.1868097613776385 0.2083323101808574 0.1469654916882206 0.17239624866785164 0.12128177625056935 0.15485357960415058 0.06856463131711621 0.10550981639300971 0.01780911899740545 0.06592151657182654 -0.024292804929842763 0.015010916626067681 -0.051540646832918924 -0.014360571760292375 -0.0642569287457988 -0.046542910440891205 -0.09340677734036973 -0.10046281261402612 -0.16322421517701002 -0.18854174313257488 -0.18657589454453216 -0.22543874564503597 -0.2366125832460355 -0.28055568337844505 -0.19581399765963425 -0.23677309141046976 -0.16850110929592432 -0.21193377539697167 -0.15229098925215112 -0.19348075702541934 -0.2058564484430363 -0.2429802101446512 -0.043174648115943626 -0.0811617811260632 -0.2590665612286074 -0.2961005829058294 -0.2867360005617172 -0.3207842090112365 -0.7926937212105294 -0.8197330229562496 -1.837192319888306 -1.8530461901037008 -2.4297424636885214 -2.4310006308761505 -2.741628686140733 -2.740355763043053 -2.8657949827142537 -2.862848411925909 -2.555320603477181 -2.5526686427143863 -2.3541055508975646 -2.361975495066952 -2.1084152820006317 -2.1217549258279185 -1.8839461197444436 -1.905517302822627 -1.747350810971195 -1.774684026353853 -1.4416213037746992 -1.4553745647949512 -1.3226227188785025 -1.3295801304676331 -0.961105934034844 -0.938859442216053 -0.6962311752252504 -0.6669385857865109 -0.33774838617272707 -0.3081290587257115 -0.144054180033379 -0.11124878057939469 0.1668495321937158 0.18087607869093603 0.3447540111552385 0.3583481191456528 0.545214856046627 0.5482301810944321 0.6341014467847117 0.629449721426333 0.7256392830756653 0.7258082231887002 0.7675002941857514 0.7679881426405046 0.8495422506472394 0.8558764508924739 0.8778570351893222 0.8910394834034108 0.9296279950333712 0.938883865468739 0.9737785813295616 0.9798565105655399 1.036779089863579 1.042626646218146 1.064422028786801 1.0647005842316446 1.118811710953402 1.1156322640489051 1.1564925835447042 1.146155917983343 1.210266733463456 1.1926093296705815 1.235523732073709 1.2121931325776885 1.2358227651080114 1.218155423661429 1.243913520931379 1.2465346523821026 1.250087815294222 1.2602582510117415 1.249643331146558 1.273147990152978 1.1901505132304209 1.2091133633512925 1.1171042413617656 1.1157421805217353 0.9832006816087713 0.9923297716741075 0.9103709301345404 0.9128661846382968 0.7414615334838075 0.7460394792919303 0.6678199058157404 0.6817148536865858 0.5210061293320507 0.5230948434568461 0.4785557852429818 0.4816665719945874 0.08541648287760495 0.08255172834052615 0.4267309211560928 0.42625451606015474 0.09804362704813485 0.0921111489255182 0.21943808991100866 0.21410909839538306 -0.0351615866761108 -0.03856508250056834 0
27 0.21143044900956198 0.20957150548413495 -0.009846467848717568 -0.012183924457232822 0.07552098891267178 0.07846223326919954 0.12480331935543632 0.11809720994870787 0.14145099730338018 0.1338405614092295 0.2613617383535569 0.24625861270464355 0.26702559868503783 0.23199024996719686 0.2807958741730019 0.25953802832763984 0.2681482524130132 0.24723370733210714 0.23130244387419907 0.22931250400444014 0.19763969593213915 0.22396122805322705 0.15720187728943813 0.18459577258791882 0.13173317654110406 0.1663728259567563 0.0967047540667565 0.12311452050713001 0.06637322810400548 0.07770576702331056 0.01626336213428914 0.04363256386901071 -0.007461732099834252 0.020539564638916374 -0.041450916909148816 -0.0070503734645299704 -0.06773360183846933 -0.024097966688962916 -0.12543643752309208 -0.1126858255337666 -0.15163781437662038 -0.14685328582778112 -0.16273546329919242 -0.1834497496008325 -0.20174045296182186 -0.24118510851577213 -0.2559596893102807 -0.2860686720581782 -0.2822086464451985 -0.3141675384878795 -0.3647745882840141 -0.38123284852946426 -0.20614162899035193 -0.21611180592860535 -0.07288973840778112 -0.0992425891951001 0.05831891034423364 0.026963504908543712 0.15192377860643802 0.10772320290068649 -0.15514279472530745 -0.19342986419279384 -0.9494760183568545 -0.9674503730748079 -1.4271377757774246 -1.4367444755027847 -2.38802961396099 -2.3834991731490014 -2.9587874430667065 -2.9519817500884464 -2.869209169044973 -2.868001706476831 -2.8035202805058788 -2.805253761153243 -2.4683613152763932 -2.477187231618382 -2.0792390835666836 -2.0881035459594184 -1.8683117813336878 -1.866206203311691 -1.6119207673804574 -1.603307230743848 -1.3727687217707931 -1.3528699253552467 -1.2362057856573507 -1.214459187934171 -0.8939182101680387 -0.885572839611033 -0.7657461169058415 -0.7622116247370521 -0.4210476063987798 -0.4321359199496868 -0.2132479548145909 -0.2300474078373469 0.06908801441240087 0.07277940105336711 0.20902884936347732 0.21643631620916892 0.3811140792264496 0.40175458597783376 0.45977181288885305 0.47909633337648927 0.5335561814010887 0.5414382464965897 0.5554434119812868 0.5583476159921759 0.5675007973392283 0.559157384198862 0.5780494661796922 0.5802968816227931 0.6458634128006082 0.6341252369254065 0.6758260410120798 0.6670017056604536 0.7531771237824003 0.7424914357771755 0.8072740968761494 0.7826522046801401 0.8942053789619422 0.8841246832688157 0.9380831314926965 0.9259561825587994 1.010206104989578 0.9986600570860631 1.0737188544010863 1.0571317057984544 1.1305730746872555 1.113815781407503 1.1615144112184481 1.1425690272768207 1.1741451690812355 1.1606456193715573 1.1795783553902837 1.1886047563673046 1.191480653122177 1.196050769263742 1.1911680687419093 1.2022413252417437 1.1559833540774278 1.1605594930394219 1.1203601780857113 1.1072361512297846 1.00826193855508 1.009571299716356 0.951351404897899 0.9515585899206584 0.7985750361894475 0.8054055168380359 0.7517301411743205 0.7594381467594218 0.5972107682337011 0.5938036587169861 0.5579627577667594 0.550433629948401 0.14855943111476932 0.13618193285102365 0.4801036500932483 0.4726546257865962 0.15484665336065717 0.15419980244657694 0.2860122389466042 0.29380787656894825 0.027623003745524954 0.0384237276209447 1
28 0.10644305241849139 0.10161877325482038 -0.13320888728678426 -0.13688341003054916 -0.0665419868165813 -0.06625349371802969 -0.03649142542684558 -0.02760686187092887 -0.03603308879219469 -0.01875602610941485 0.09491597639932792 0.11436607269290988 0.14422872208525916 0.15572718970738464 0.18979798373351287 0.20586054467677428 0.20517002831458342 0.21338756450798257 0.20343033663365162 0.20878251600792908 0.16507460701327403 0.17009523012293215 0.13098514224381574 0.13426035199313446 0.10486748259425127 0.10892053960198211 0.04950451264631539 0.055549015228912424 0.015298807442576388 0.030129701608096582 -0.03634748001859123 -0.020594190904361657 -0.06266961442172203 -0.04348422108599692 -0.08443699087538192 -0.06664949416123989 -0.10121596630867913 -0.08811061019608246 -0.137847362440219 -0.12862823120946842 -0.15345971755640875 -0.14807019669547117 -0.1577994608165625 -0.16745614995148372 -0.17005650267172712 -0.18893623787067781 -0.23651501355508486 -0.26467230134294795 -0.25709649666626433 -0.29116849525647837 -0.30236311158795814 -0.32903607528108125 -0.24021422986260887 -0.27026629695745186 -0.09999273147953858 -0.1433474020560297 -0.032776850927227485 -0.07983916975984329 -0.05448972085600445 -0.11216726069482519 0.09861127787357304 0.047917800604281524 -0.34640167342416817 -0.3838831906592688 -0.5643151462138434 -0.600090097280372 -1.3506854483856294 -1.3732341352194481 -2.457297845859756 -2.4693639643073197 -2.723158841514607 -2.73082054666766 -2.8630121949989515 -2.8692930179981335 -2.7146587974004577 -2.7170934472736468 -2.2895637273304974 -2.292701014491991 -2.1825059109316847 -2.180608044929235 -1.9241121586152836 -1.920550036757776 -1.7355915552244916 -1.7263644437566725 -1.6262701370526749 -1.6151893520273042 -1.2829053801296268 -1.283254703714512 -1.1595319690442771 -1.158902132597909 -0.8158266216259662 -0.8243671315648733 -0.5966784706483352 -0.6101367640380744 -0.2561376636539592 -0.23941981984801686 -0.09555812879762726 -0.07283733987004837 0.18627854861579607 0.22878129124259772 0.35722185172542 0.4046590911297443 0.5067784206325001 0.5278742526083207 0.5906781160553294 0.6034513136212638 0.6378509536428183 0.6282502767378872 0.6377554919390178 0.6267433670665383 0.7150020787748943 0.7093075020592252 0.7305135516488974 0.730356958317742 0.7802686734953426 0.7863170909112185 0.8127410109796003 0.8168639327043081 0.8765073211311716 0.8764994914646138 0.9102917300458984 0.9041433338109002 0.9706680957189775 0.9610903055316768 1.0348005933526352 1.0207373076507977 1.0924889742682282 1.0766342006297691 1.1262571215677966 1.1125235852844497 1.1684126485968633 1.1533592112164897 1.1895301627262285 1.179599134120764 1.2297312845260677 1.2255342821100825 1.2443721587070513 1.2410382264585493 1.2369384925924933 1.2446263217291573 1.230320918646072 1.2335166271657272 1.1611864686460862 1.168824910655232 1.1212437258426533 1.1289598622353338 1.0091337418121853 1.011703679289262 0.9979105170836675 1.0075575697059023 0.849547972326647 0.8546950746653152 0.8230617160668245 0.8290309333940584 0.36372619664777517 0.37167270592186696 0.6586414286228859 0.6645052465926113 0.29774559656546273 0.30885288200072125 0.4033503322505112 0.4169748554840922 0.12796349323456013 0.14101012684797354 1
29 0.10448744262517806 0.1067944839905266 -0.12167940213944917 -0.12290685294289005 -0.04933057287647813 -0.05553227107227343 -0.025197131417264988 -0.02012953030826026 -0.0284889039227636 -0.018844862710743374 0.07647500366863369 0.08670115047512184 0.10161847211379893 0.10606692728269707 0.14913521274778674 0.15503727562723668 0.15835223599138715 0.16214540829760438 0.17578318173612928 0.18870905779994018 0.1674430811469989 0.18810225864171315 0.13416760055852706 0.15276787688956972 0.11823964965185496 0.14001606033615843 0.0572113136673309 0.07603172408505543 0.010373043754675846 0.03648919769913306 -0.03857923612857661 -0.0019174247538700246 -0.06878729427253205 -0.027949259212320502 -0.09333631034134982 -0.05273798353421455 -0.1105775372425768 -0.07714937815622847 -0.1558549932410429 -0.14718544437444336 -0.1736021370583103 -0.17634071350740044 -0.18434955897293293 -0.21349067447788173 -0.1977141975050003 -0.23375957320879337 -0.25763463567160017 -0.2907730970953111 -0.2721812527128691 -0.3051257793187645 -0.29328702234239756 -0.30653782956835585 -0.2526441266640873 -0.2676650408141441 -0.13703428168229692 -0.1693027466950312 -0.08853401447224485 -0.1266961104158284 -0.14319020644283142 -0.19611513868108688 0.1085061695564633 0.05618141137396293 -0.16677978721730113 -0.20689869751828383 -0.19801895221871035 -0.231340206242443 -0.7848657109283792 -0.8016077965865485 -2.087818440697358 -2.0936260958665827 -2.647225116604381 -2.6485994112984077 -2.9305452523321076 -2.933533135904333 -2.961863353923765 -2.9612028575571503 -2.5093549649594404 -2.512349887703042 -2.323037509281596 -2.3247027438449734 -1.9632779575833688 -1.9629506172930498 -1.7230922454175683 -1.7221743675841807 -1.637994309870379 -1.6343955240935095 -1.272883708076705 -1.265991945230251 -1.1846716732266742 -1.1746442794943448 -0.8301011577543527 -0.8101221072565892 -0.5947388213291589 -0.5729307908376029 -0.28579824742091375 -0.26712389039859374 -0.1261730284615652 -0.10826567762088501 0.13610002249318853 0.14767046281944118 0.30299117201814596 0.3096388600667126 0.4637414538336415 0.4734294616347938 0.5485527031284079 0.5564019438525705 0.6093717461030224 0.6171595540588086 0.6125225846104811 0.6258724672324973 0.6864662567230653 0.6929739141966564 0.7014151981689949 0.7081466034215254 0.7464186158379391 0.7458398227947072 0.7811645680341641 0.7749354660054166 0.8451473985801599 0.8350362876438666 0.8800240459796953 0.8636091500413343 0.9501480453761744 0.9366454842562817 1.0191542093010213 1.0040155490115765 1.0849243118093383 1.0741356335747767 1.1229915483311643 1.117232226295883 1.166971989950234 1.161648720114016 1.197348687066203 1.1958917668044151 1.2488453074397086 1.2466177673040235 1.2691973210925411 1.2660431700338464 1.2679388527638906 1.267192625312731 1.251308640995191 1.2427402755117996 1.1627427654449534 1.1621188012485035 1.1153555154501902 1.1153398561170746 0.981909087767761 0.9824646929523411 0.9650000194131962 0.9766996492376521 0.8296916367951255 0.8254952366611832 0.8037191271179012 0.7966128012936622 0.36933826072356624 0.3607735089324322 0.6883450755559082 0.6802874452449004 0.3300008113732531 0.3346299511550228 0.44745032685509756 0.4630334712922064 0.16152656349851924 0.18173463174309745 1
30 0.42922406767269905 0.4559620778264559 0.10626357236970563 0.14529415901915854 0.13561247517945674 0.16987961315157207 0.04582758077437887 0.09078703185419101 -0.05598699401466689 -0.00859372119947466 -0.05419400037293798 -0.0038600854832608906 -0.10140056575482959 -0.029655825380892512 -0.05481284517202312 0.011081628578153866 -0.05682205806715501 0.011655001082999659 0.007197210542436492 0.06302604565055958 0.05426615447752425 0.08261526909605266 0.06091715507732687 0.06961260207177133 0.075201779429932 0.07182207374616922 0.06785935904487417 0.060728640797897526 0.04517741730906266 0.04054315812992826 0.06376534685822577 0.06854294916357162 0.06423211544147733 0.07128363359981194 0.041716403549507675 0.05770398037842739 0.020898825877509353 0.05358166093576244 0.007201426516736829 0.0422132862349045 -0.0035309383468131745 0.035677020364275336 -0.025301025069666142 0.009649401880125195 -0.07583128390533034 -0.05254284415231325 -0.11807745438185435 -0.11340013203665222 -0.15201936005080086 -0.1558206631645973 -0.16852008118027584 -0.18858149374740663 -0.15831471310426792 -0.18645393243084385 -0.2504168876694237 -0.27334275363261185 -0.2726248334374688 -0.2972289583132124 -0.4141346131103134 -0.437670891923986 -0.2970551999438342 -0.31643874407167516 -0.24519510235743525 -0.2855227033862846 -0.1655514329907959 -0.21294410352394522 -0.11435023195933525 -0.16465553845197434 -0.5750902731024397 -0.6174647296541025 -1.3059074347712425 -1.3072443503359814 -1.717735097216437 -1.7067920842083808 -2.4585936556750667 -2.4337619434723603 -2.7427095941946096 -2.7241826833449183 -2.569107215865559 -2.5680865736586007 -2.4947368269255765 -2.4990668583877884 -2.181907468436803 -2.187793420271605 -1.873890719897119 -1.8773532393617813 -1.699899116797841 -1.7118443271252914 -1.5363321124381883 -1.5456718506480307 -1.3378479572116149 -1.3526115463588404 -1.1485094548065575 -1.1714410424491533 -0.8182124113684246 -0.8080570327019778 -0.6400533176732637 -0.6237013602083863 -0.2569028629894703 -0.21960835432869175 -0.038288032760831925 0.006062812314624464 0.26838645496098223 0.28745169302914775 0.4173865152604179 0.4264574851086138 0.577990743680509 0.5732601193745097 0.6613809084950404 0.6652038937623814 0.7312260513056543 0.7364770472967237 0.7505752653570497 0.7684892413002018 0.7616178054726959 0.7747231615852925 0.7736224911518832 0.773197882311635 0.8171376698928086 0.8162378605207081 0.828410582889866 0.8138543293359106 0.8982590382517159 0.8893482754269328 0.9529986462852449 0.93861042942126 1.0429139347526117 1.0459931016969648 1.091419020219007 1.1027413203435827 1.1619396223407392 1.1728451432916245 1.217252000597071 1.2397107968359862 1.2823303821791114 1.2773931751323957 1.3084402121621181 1.2939279251972948 1.3234566091968532 1.3051424168361905 1.3226585854900037 1.3056781467133547 1.2651355309951882 1.2593822317803358 1.2402260491236916 1.2445326668714856 1.1041684276442467 1.1122814679032018 1.0456169765611705 1.0482977339341417 0.9185670853154164 0.9190302402064106 0.8825557385470475 0.8759749038052433 0.43575822555617805 0.42798396894635715 0.742202340396581 0.7341127891372992 0.3709210579323212 0.3688573385123064 0.4559120884168948 0.46131636518788355 0.15912466271141312 0.1683495156215713 1 0
31 0.09350573299586529 0.08575857907797513 -0.14800213882462288 -0.1545444275156811 -0.08017704998591313 -0.08298880370321626 -0.06777214788921526 -0.07165897505310426 -0.08064110829997162 -0.08225070705963589 0.0365569544289599 0.030555816153452042 0.07201841769215633 0.055130128068071826 0.12628071720668288 0.11498853118425245 0.14589102052367764 0.1341392933025105 0.17580004563333063 0.18654054130445985 0.17163646987072667 0.2062246241717105 0.13749340199944982 0.1703090402481635 0.1197775768484135 0.1575707750407176 0.0464509426887858 0.07341270062148197 -0.012292636365977218 -0.003055436673939484 -0.04544976853301819 -0.017914939236497677 -0.07296261453497266 -0.04732015541726042 -0.07642423057657055 -0.04231820305093237 -0.08134005661076316 -0.03244198211137217 -0.11121475164397054 -0.08886075248052094 -0.12016104910928505 -0.10088471118508124 -0.13519702031041447 -0.13676897644239716 -0.1459215555074067 -0.1688197164966212 -0.1777991394742955 -0.19887509614270016 -0.19014953504611043 -0.21537280586196061 -0.18302303277343412 -0.19707397169339202 -0.1565274411419466 -0.15172936124714198 -0.13471489353506882 -0.1379211419904749 -0.1171924009198051 -0.1186225196306836 -0.2361632808420282 -0.2427164106098587 -0.0567922451060312 -0.07281595885752523 -0.09956059411375406 -0.11234312705135352 -0.013003329176605407 -0.03010904261817871 -0.20860827509707036 -0.2319135787472888 -1.1863988675552157 -1.1983181797548212 -2.0847047931060487 -2.094266547533957 -2.5305077125883155 -2.5386083307801357 -2.9689847367990767 -2.9696190150755113 -2.826389155530757 -2.8355832544140993 -2.533390686157192 -2.5409600539445423 -2.252963122868401 -2.2591028612990325 -1.9463810101549175 -1.9561518317369693 -1.75523784489355 -1.7661999803564683 -1.4878526239586165 -1.4902253140666417 -1.3698842424968092 -1.3700355658600891 -1.0565162932911676 -1.051297820530415 -0.8166785495756557 -0.8084718544590288 -0.4774711950242718 -0.47643948588477514 -0.3029295578493105 -0.30447079759710505 0.026251607533829713 0.019358188411757737 0.221933946696808 0.21009518972044106 0.43474006776264673 0.4339107253895662 0.5448959477049087 0.5470021280089483 0.6336021549711432 0.644386918372426 0.6486402341594228 0.6679641523650162 0.7177313198523194 0.7278207486350681 0.727392224961541 0.7369432135979324 0.7598097547798943 0.7602924838372829 0.7882730018455533 0.7827648314221634 0.8388737276802374 0.8367416492483528 0.8662721400940399 0.8636606451560027 0.9258796927393504 0.924573342988289 0.9817540001417129 0.979843260360596 1.049487542109901 1.0413693824535812 1.0867353739123544 1.075214922995663 1.1401701378999292 1.1284708092164948 1.1788559180798188 1.1689378385382767 1.2275308470823134 1.2230763690929862 1.248909450477278 1.247723858275819 1.2528134426793898 1.2547067162812624 1.2482460368070178 1.2530567646247235 1.188426782023626 1.1923750419558914 1.154924241104979 1.158623457412503 1.04278504639543 1.0479116711446395 1.0320794830827893 1.0374030540600288 0.896335650547698 0.9046248583042029 0.8719977343349186 0.8828297768765694 0.4215091358441043 0.42943245725954426 0.7302792639342073 0.7340950218170335 0.363638263469511 0.3689157598704682 0.46990852081196977 0.471737651376273 0.17828957845767945 0.18090257910082386 1
32 0.4125414573662667 0.4072772111702534 -0.03777097362699777 -0.045493132840107364 -0.06376757458593829 -0.07464388485774265 -0.1329619516491931 -0.14679396104655495 -0.23133990510142155 -0.24833931576242207 -0.15700776107116354 -0.17328654126782794 -0.1757321075030447 -0.18874320647592668 -0.08628328647790795 -0.08670337820283436 -0.0784388640100886 -0.07099164654956525 -0.054706843532471794 -0.036973251061169776 -0.011709326207423489 0.011879953426024768 -0.025374804619922035 -0.0044180997960126 -0.022811492245317314 -0.003991382968614234 -0.07088413920490666 -0.05760924069723217 -0.12208443681330294 -0.11494408205363982 -0.1503925962529138 -0.14646029679478545 -0.17539242043084613 -0.17388791988766883 -0.19752688778965677 -0.19599498341352728 -0.2148135869851231 -0.21365630203968067 -0.24477260150433722 -0.24795505981904853 -0.25653697664840536 -0.26036899614639 -0.2740778388659777 -0.2814217649561428 -0.2943946190193003 -0.2956832014500961 -0.3234047381799172 -0.32224654981141043 -0.33942905421345415 -0.33799953778461855 -0.3289722333845333 -0.32487039153132713 -0.311179918414048 -0.3128726320956332 -0.31949291631124765 -0.324559613997188 -0.3146141306226937 -0.3193185556598266 -0.4359661326015427 -0.44185554755809164 -0.275671477151505 -0.28411637481610086 -0.26643277175436 -0.2884955675500649 -0.17538579532837417 -0.2059841322361322 -0.28049726202028324 -0.3268738827470514 -1.0639407746045713 -1.0905983801056003 -1.950952255575313 -1.9535766995772725 -2.3778925296115965 -2.3723394138907548 -2.792284859565992 -2.772365096206827 -2.6804328028203983 -2.673710695296905 -2.3536631747370507 -2.3500852429759167 -2.0849066328756773 -2.086531062830648 -1.752788514395565 -1.7566414631945406 -1.5523726900868837 -1.552269097575504 -1.2841864340348863 -1.2840397783574389 -1.1753542194524194 -1.1703664207140996 -0.8662915328599752 -0.856766291780918 -0.643073460977412 -0.6343253143042134 -0.3424778059146405 -0.3367558253660192 -0.18490727214466318 -0.1810553773392627 0.09092585786508067 0.08973695311238572 0.2674607474610369 0.2642225780573568 0.48252422162368447 0.4813473625118476 0.5910187065505923 0.5901556363831091 0.7068005030556321 0.7069691420276456 0.749594147909157 0.74821823458214 0.8357015081602555 0.8338407577886997 0.8626695900544021 0.8596934133393859 0.9116845072701167 0.9080479282950549 0.9544956183028859 0.95075454339338 1.0338176690586138 1.0293505431463856 1.0728834892075767 1.0678228143420654 1.1436630726077581 1.1384445998470056 1.1978633370718654 1.1938187120127353 1.2626303388377238 1.257747036033848 1.294238702731434 1.289248193723921 1.311771434141427 1.308691664915031 1.3304566322405194 1.3260208249945222 1.355594379006277 1.3513124548222422 1.3610390086741404 1.3567116121958662 1.318515186175837 1.3136647077432997 1.2692488162072095 1.266172660673071 1.1378615908294734 1.1343445648399282 1.072167074717541 1.069083992939909 0.8976880748750418 0.896821993297344 0.8263884209308117 0.8266907665163501 0.6750515063049036 0.6771073960583607 0.6310638373013191 0.6341107821563767 0.21761287417998432 0.22010481613250477 0.5547986690543567 0.5574944834784006 0.21411361551070485 0.21695457990708888 0.33851256234461147 0.3423659628551192 0.07154562628847572 0.07618109003169593 1
33 0.10086712526527464 0.09232014079440631 -0.11489168351590706 -0.13549846247288855 -0.028129943825192075 -0.048793939576249556 0.014300826097482398 -0.0064405628960884104 0.029403048323331404 0.0128770313480544 0.14311630715201318 0.13112697966491993 0.1466221909237646 0.12809509186093493 0.1584555273617454 0.14541401314569669 0.14785777253478471 0.13315305645725317 0.12283084566492164 0.11230355783698087 0.10346838140858239 0.09446426486714898 0.0815001438936136 0.08067833004606939 0.06680928030306887 0.06934639340880722 0.04402645632507074 0.04908321635730317 0.024780533644033653 0.030944589212147378 -0.024892376703554934 -0.01979887746670528 -0.04756889790098029 -0.043124056424339585 -0.08461135152680299 -0.08108529130661424 -0.11962441580905647 -0.11193086499298488 -0.1811430093765054 -0.19130501314542414 -0.2084790855988672 -0.22246226778899825 -0.22230266304762836 -0.2552782071787334 -0.22454887392664347 -0.26842692759841924 -0.2355555782607368 -0.2619891348418051 -0.23967578971625159 -0.2676105342892612 -0.353171925868466 -0.35569699333334626 -0.1592250624121192 -0.15278666737346214 -0.11778896128330274 -0.12825632204797444 0.012849928656123664 0.0011713787031695216 -0.0432637858582936 -0.07758482807324896 -0.8861150440201584 -0.9124974066275797 -1.8547461311698008 -1.8582849898834013 -2.334001301020132 -2.3292007367119005 -2.9006141498213194 -2.8909764513920635 -2.8958442266120206 -2.894105344247584 -2.544641314718662 -2.540365940351844 -2.276756124402862 -2.27723772418142 -1.949867846757062 -1.9482261011933577 -1.7166931492822108 -1.714578838170592 -1.5335888683032657 -1.5326940277580192 -1.4385177444076085 -1.436875772988138 -1.19728345920511 -1.1969463318315938 -0.9858109411527742 -0.9819656714498457 -0.7019778493376307 -0.690344169396873 -0.5439468709458524 -0.5290801409987793 -0.2085965305972337 -0.18057144371778833 -0.013589951886395115 0.015687881642293178 0.2782247321318394 0.3072450900871857 0.418911493393054 0.4510019840621098 0.5593196992094249 0.5796717128622575 0.6041388185732401 0.6162678754942874 0.6507214197586819 0.6505533830687114 0.6507421984891621 0.6383300690079494 0.6456125623297382 0.6264205438915411 0.6444938234350417 0.6312086861326378 0.7061955107435338 0.6892662659405318 0.7334322104288162 0.7217220406686096 0.8092649401689727 0.801679800120624 0.8602863600106261 0.8530125997784594 0.9317435107090759 0.9233311362747969 0.9710282603806348 0.958832952434868 1.029675474308533 1.0128555436963183 1.0884687416318357 1.0587373897248398 1.1409226893125393 1.1182208722693119 1.1697075549891096 1.1484099585289158 1.1878103463527125 1.1707772078973093 1.195539732950337 1.1975486447044474 1.2065813696429188 1.2086038327429947 1.2083210613238506 1.2134094411633356 1.169943348408907 1.1735323471025794 1.1326762435810807 1.1241145032001612 1.024488621355033 1.0307050754608795 0.9662003675247064 0.9732666415930922 0.8242177964481812 0.8310296063534395 0.7861607987210846 0.7851953406063075 0.6276488981180464 0.610715437340744 0.5897457834529121 0.563028250888614 0.16001814812206305 0.1317774442712576 0.4651926524160217 0.44896687303913296 0.13156604327419785 0.12574167477828269 0.2513999933639042 0.2622645591358719 0.0013595918415774105 0.01545058251738851 1
34 -0.030279488436320893 -0.031909564785443933 -0.3159801062960028 -0.3181064630484798 -0.24987272584365883 -0.2524733797049237 -0.27097367721684407 -0.27823749979530277 -0.29150667662356966 -0.30235287279322876 -0.16236355413769843 -0.17640937366029164 -0.1419419769089103 -0.16516205765005765 -0.08333300789073661 -0.08000961557798547 -0.06216851576202487 -0.05044810720708881 -0.047532760978405975 -0.023657096233556277 -0.05950462228625497 -0.017936320249020813 -0.10104311136236532 -0.09083533415818579 -0.1247898877500333 -0.12249188061532834 -0.18211840514499045 -0.19591698788897105 -0.22243546623808896 -0.24901025795821852 -0.23246255882939693 -0.24809358468891674 -0.24391796328545468 -0.25586633559363037 -0.24418236510229008 -0.25216711928610636 -0.258049005717119 -0.264649715766339 -0.2888774143652668 -0.29798301543092975 -0.3035279250589369 -0.31494899943854904 -0.3058135854117623 -0.3164480794433402 -0.32717050665318226 -0.33513809579877574 -0.3781054990216788 -0.38402382351628717 -0.39859935009561553 -0.4014954232989254 -0.4422346841041005 -0.439406066489596 -0.33671697817425184 -0.3375156041631442 -0.25897019610174254 -0.25754579907027164 -0.20291550522753 -0.203484360617054 -0.19202624589180317 -0.19936956969992536 -0.1213047827087621 -0.11878302779511785 -0.4936521043889641 -0.4880129376212423 -0.6870252941994437 -0.6771987615284232 -1.369771615754786 -1.361980796388785 -2.207524631708713 -2.211894413785757 -2.3511766533229164 -2.3607105522063403 -2.467462559897868 -2.4809615826107585 -2.3440661868096324 -2.353374681638499 -2.0454274213895154 -2.047439871550628 -1.9957526289105427 -1.998385279005337 -1.8751139547262596 -1.8772497974209124 -1.736203624350594 -1.733696023064958 -1.576811940253382 -1.5735799442406417 -1.3081938479766215 -1.3074941468132764 -1.166577313811672 -1.1627656213326354 -0.8362953274246117 -0.8424592324222147 -0.6182139685154766 -0.6279893072128502 -0.2631247376337029 -0.2644609003458882 -0.08525248076147562 -0.08755530615252383 0.18904302319273114 0.19638032418042428 0.3497743331238752 0.36045550401377824 0.5225494770669954 0.529778668427987 0.6015312384684819 0.6096183805995921 0.6730522310634797 0.676796919665243 0.706687274031566 0.7073338238046247 0.7787825425544739 0.7788888453350467 0.8023898906492093 0.8024401811997919 0.8525331832723069 0.8510916212026132 0.8936082163164016 0.8901610550438335 0.9574811303895672 0.9546004153783514 0.9880719387717889 0.9840899510451209 1.06186985862999 1.057734891264424 1.122616025477413 1.1200981853970475 1.2085839574355788 1.2020431744496278 1.2541041330973357 1.2467117233027167 1.3202082009984437 1.312861263498064 1.3732945448241978 1.3657527690829383 1.4471849149759848 1.4427491077299877 1.4792022283768276 1.4761089078044662 1.4928610816868542 1.4925870433573323 1.4816553231375806 1.4777368761664391 1.4038874611935697 1.4037576694133236 1.3650824291691848 1.3647562934429516 1.21351815307208 1.2141767484859969 1.1636049321893722 1.171227413724381 1.026390025764485 1.0276391587214704 0.9897005094158047 0.9905792389164034 0.5390860339780232 0.5377992583933562 0.8653383017865153 0.862549735927864 0.47950769201179355 0.4814446310617768 0.5818022855890348 0.5878272140052374 0.26902457278544034 0.2760751875207106 0
35 -0.018862328889987626 -0.02386187212814406 -0.3023507648060786 -0.30774660962846667 -0.23389388210436124 -0.2395694869356788 -0.24098665658263485 -0.2370651982012788 -0.2537634678408267 -0.24380774567160302 -0.10905677508424105 -0.09395635970452076 -0.07770889817408744 -0.07385338967642952 -0.025417566644968307 0.004140629174692377 -0.00574914311083319 0.027362516761968436 -0.006956417465836752 0.031759777957219626 -0.028749692047341572 0.027389920594920625 -0.07372299561414053 -0.06550154458746249 -0.10061007057351645 -0.10358263359627529 -0.16551348922209286 -0.1936144636389443 -0.21694205172475023 -0.2651213026059338 -0.2564758450210505 -0.28472979907679985 -0.28167442227314154 -0.306940455114038 -0.30762976691214305 -0.31344449889537174 -0.35111814410215914 -0.33475474327846655 -0.39496789051791836 -0.38940431014658117 -0.42170258812043926 -0.4126427604900371 -0.42210702051225013 -0.42677500748578723 -0.39112743907133307 -0.41200373924251465 -0.3992784230989912 -0.4136332133095948 -0.38933715569879723 -0.40945488163693966 -0.447780497155172 -0.4594135748138868 -0.2900840864382275 -0.29843563038617305 -0.262825403458379 -0.2874569321670748 -0.1704500939867657 -0.20193077408737992 -0.2769856565691242 -0.3366790344055488 -0.9342554477095746 -0.9895815278823825 -1.6450000545934529 -1.6840482579926608 -2.017408131474733 -2.0458354674735837 -2.4895371001934095 -2.493404127335138 -2.516530402648103 -2.5188944349517612 -2.3484486920948324 -2.345950953177649 -2.2355764448538125 -2.2357847591554023 -2.0068818976403673 -2.0057921435689856 -1.802279686136707 -1.7983781030627668 -1.6388495503713045 -1.6397499620254479 -1.5315088872680924 -1.5318274944687893 -1.2824556260140874 -1.2913763264925784 -1.061007510485112 -1.0748651168692973 -0.7199100443125808 -0.7284246561236429 -0.5201561279690523 -0.5298754544364357 -0.15156734737760047 -0.15028930488255554 0.05521203842590694 0.06112976063847242 0.34331726734188805 0.3572998472499762 0.48070261958491756 0.4992667589933859 0.6336804516367209 0.6521232312135439 0.7006536125257412 0.7207339969772235 0.8126214579940836 0.8272927474182339 0.8467169455839709 0.8583226194097335 0.9100709936771736 0.9160040740818332 0.9612234098631589 0.9589332323950117 1.02745455927532 1.0238947712607285 1.06042287602191 1.0560099554935434 1.1188213474660884 1.1136040792694217 1.1755123493186304 1.1749251243267977 1.2392916085341241 1.232961021981147 1.272176509217772 1.2629766510123943 1.312746829909912 1.3054444612807075 1.3366923593717388 1.3261994016202436 1.3813500671480554 1.3747343000477628 1.3962953949017276 1.3939208979475737 1.3674219937648502 1.3632707647841258 1.3511950098238756 1.3470507070866446 1.3178680341207354 1.3109008354484075 1.2975666121595069 1.2859916547179324 1.2130360262967343 1.2038205087582412 1.1090466110507577 1.1039913567236326 0.9585288000032008 0.9589654544843071 0.8749477117810684 0.8811683818612153 0.7131353055829095 0.7216759660923273 0.6558200383928963 0.6579873503242908 0.543613388094542 0.5451142749454618 0.521124778894503 0.5184325781627166 0.1607646767142441 0.15561094927310393 0.5709151342404581 0.5745863444329871 0.24928869366249984 0.2521263455076479 0.40429772190400115 0.41363429813311825 0.1262831263348545 0.13577780160023423 0
36 0.21090827047836314 0.21746712192560125 0.002243139598519404 0.00556623077024909 0.10680050681095565 0.10769459450364849 0.1513359513325625 0.1554362874806614 0.1726507128309791 0.17349179970389628 0.2523654514786813 0.26204352162612565 0.2110636592454327 0.2227202259038208 0.19355260998898416 0.1961875939266946 0.15837181015778157 0.16389232736305104 0.1125703687819879 0.10470065046836652 0.08539510186508181 0.07525056427540733 0.07145859653327591 0.07440375572308255 0.060057999743122537 0.06539512206632736 0.0536912762675712 0.07188049510433103 0.035245184139512276 0.05371446412622305 -0.03570484507881133 -0.008111594424129011 -0.06871020217104018 -0.04217154737348494 -0.10830934306899564 -0.08510251253279222 -0.1365768484707104 -0.10285718487559592 -0.21918374548844355 -0.22418690241885741 -0.24294889147842014 -0.2561668743330401 -0.2894312127037182 -0.32142955422020947 -0.269346913418957 -0.32609754119374657 -0.2041574108000006 -0.22235415816229676 -0.18005829941723306 -0.19218073123580837 -0.2558154427610049 -0.23701039053537443 -0.03229472415188184 0.006710867792790507 -0.2804316132776066 -0.25455908241950453 -0.3016132704445411 -0.2729738558813324 -0.8121656502281667 -0.7939884770322649 -2.0307593692313457 -2.011272006736359 -2.566540741510229 -2.545491172323829 -2.8532588772387717 -2.838009321768177 -2.940681621471575 -2.9452518317197094 -2.537104808945278 -2.5409948733751477 -2.3265841223764987 -2.337948431673567 -2.016282692192309 -2.032438606852221 -1.7754606690481793 -1.781349180581664 -1.6405803583921035 -1.6479098297132388 -1.3522754729788993 -1.3599764017499965 -1.259222295067996 -1.262736159076816 -0.9709443617762119 -0.9757054013253779 -0.7600926459396007 -0.7692111960691861 -0.4482544931229384 -0.44513587670477506 -0.2986151104349588 -0.2947008794381176 0.009870138248849967 0.018938397827852782 0.19848439649731375 0.21486104752595026 0.41426729656021166 0.4283384119286069 0.5282274910264846 0.5412744257809194 0.6058194866139672 0.6213893808461322 0.6117155266729881 0.6304296343101399 0.6548434380603254 0.6721611547810014 0.6504434665958811 0.6726029286594724 0.6734500383528186 0.6903235720668519 0.6941324037061847 0.6994038772867128 0.7785985453903663 0.7842961335162499 0.8214771120119408 0.820843812443826 0.9213625774175611 0.9205759970695269 0.9977506112012762 1.0041272723305354 1.0912738702466669 1.0853799381747962 1.1430704270775394 1.136380278144948 1.1988366248532003 1.1795295705448083 1.2472685330513826 1.2094647949233277 1.298614582914162 1.2703265999229885 1.3174608914597314 1.285930221949556 1.3056579702649174 1.2875907135418458 1.2947593755575255 1.302730277254355 1.2663578624012644 1.2622114516768832 1.2531374704184728 1.2536801265391304 1.148729469152677 1.1396061007667484 1.0620866801654358 1.0303768317474962 0.9004046680295659 0.894394194382393 0.8126136283275258 0.8106706664571135 0.6313050512595026 0.646370233139713 0.5568771443844227 0.5933528506078716 0.36240238071746944 0.3820497243801029 0.30535904386982793 0.3223346643901337 -0.1094810827834678 -0.11271051909752572 0.16906864038080016 0.15786529095969826 -0.1514788119172934 -0.17445647413617138 -0.0738401394714856 -0.10671630706551127 -0.3019761453753915 -0.3306408557844023 1
37 0.24196102918749318 0.23903664872816677 -0.02324152162395166 -0.026687177191412562 0.05167694397507461 0.049524387953731264 0.04799459156475194 0.057779566774812 0.024469153827851642 0.043767475046621485 0.12236738963290605 0.14525079471206936 0.11764037901916424 0.1322884805846627 0.1580188728806391 0.1774406619182045 0.15989468030326748 0.17371253607262105 0.1605231616150391 0.17255043287083538 0.1498531329429298 0.16688536797526865 0.09603170388380988 0.1016491884979871 0.0722036194203497 0.07864080989492095 0.017208041518586015 0.030978618147571524 -0.03316351599877265 -0.015612716127492378 -0.033560118724025756 0.0037494469878254204 -0.0459448443722863 -0.0021453885071096596 -0.05158069858877212 -0.006367686768896876 -0.06383081420044334 -0.011563272812018967 -0.1119618825181945 -0.07870025441670947 -0.13142613243978474 -0.1030899668851788 -0.14851437970211379 -0.1428243201017665 -0.19024740587808253 -0.2086944014292058 -0.24566970060724458 -0.27811312855344283 -0.2775722792789139 -0.31972569832083053 -0.3524970688393907 -0.3884704718390566 -0.21744134353831868 -0.24429830439554934 -0.15026190104960335 -0.1794496934128773 -0.07307494013597449 -0.10245787188114974 -0.03910412492896853 -0.07391301559867713 -0.20400714143029575 -0.22840227443715122 -0.7815499977116751 -0.7923865573686477 -1.1493428625834277 -1.1580399658534901 -1.9973659166477198 -2.0002181738324083 -2.6614366389740285 -2.6735200730303257 -2.66273990202962 -2.6715038962490727 -2.6825902523833403 -2.6892820575915497 -2.440778002275419 -2.450307835755053 -2.0887110226849437 -2.09380587705639 -1.9885766642250928 -1.994084909933738 -1.8250369131278816 -1.828097710469926 -1.6611803616761023 -1.6626786888283398 -1.4963786791284939 -1.4999702375208486 -1.177373972283302 -1.181044580193788 -1.0170409213530291 -1.0210885578223738 -0.6447014293393849 -0.6453493342470402 -0.4246444347590099 -0.4226692507993022 -0.08116087770299885 -0.06667057403274157 0.08932589561810289 0.1105789232071217 0.3301703537683309 0.35285590919639986 0.4721086571147026 0.4943135914725332 0.6136265675951265 0.6217266587901591 0.6720373858211843 0.6707822300437698 0.7194737218024443 0.7113865796713341 0.7416590819938804 0.7301714554485272 0.8013551700994981 0.7933586714158452 0.8197723526894976 0.81592106016614 0.8736205832995267 0.8706552476612828 0.9252834335168743 0.9244296987210561 0.9875985450860654 0.9833873890420719 1.0207704331631575 1.0136866929155275 1.0867299533739683 1.0807104454961518 1.1324154554565027 1.1218580535264167 1.211296635756824 1.2074724459253972 1.2495126359432476 1.2484761085474076 1.2776118035139703 1.2758435034360005 1.308605839723917 1.3084877924435077 1.3421990240900215 1.3359744391765958 1.351424178141201 1.3420294816949436 1.3163511867956785 1.3103479405330205 1.2699739637868674 1.263973126652381 1.1514322098202143 1.152801196903738 1.0912810976311818 1.096679652722763 0.9095045474158212 0.9157496099187057 0.8113551599988753 0.8220528936449583 0.6573459199485967 0.6637370358468857 0.6033925911220805 0.6067557340496634 0.1794950459665543 0.18369656549786129 0.48249260181643194 0.48607106057435345 0.12783038890307807 0.13094147679570511 0.2184373982967216 0.22286808614535403 -0.044659574492726506 -0.041026006927879166 0
38 0.24316137729900333 0.2364164207005075 -0.012344131480645617 -0.024070562856010728 0.05685175128771647 0.04689422227236406 0.06120354018872831 0.05759376276457573 0.0408753166765905 0.045280106397378006 0.15326204930577347 0.16150729047314627 0.17143621109146068 0.17690794345125482 0.22563858354271815 0.23108200864649575 0.23764688291416292 0.238517180466161 0.25650222569037595 0.25625047179644156 0.2506076913364623 0.24225915879873128 0.213292705086225 0.21322886318967704 0.19480234522801254 0.19702145341509691 0.13311571497059305 0.14314702353620135 0.08491538421790779 0.10555830009746359 0.059522571006979774 0.09375959487694985 0.038405659159657546 0.07647801507884822 0.01979363832877823 0.06819242101460077 -0.0028934228043979732 0.05450465816651473 -0.041928526569172675 0.0030408621643474004 -0.06157978506508499 -0.015572965512660632 -0.07386663988137343 -0.05130394999005716 -0.1085975350265258 -0.10625797043086038 -0.18709957878083827 -0.21299589977963507 -0.21694566541700766 -0.2600419569970924 -0.27873076878844216 -0.32849462372450944 -0.19754375168685812 -0.2480258279590899 -0.11383678651775853 -0.15799339563437798 -0.05976089329551115 -0.09987950245547239 -0.07011502503611666 -0.10321433812703873 0.09391648934912666 0.07132880475302983 -0.2567896339654041 -0.27110286671504724 -0.38922573352085976 -0.39847648455886286 -1.0997506580295884 -1.1060445053779482 -2.2386784232305406 -2.2470210835183533 -2.596406515240676 -2.602160190881805 -2.7977182717308064 -2.8045450257592544 -2.7699966973583576 -2.776020835279379 -2.397319362761271 -2.399686180619378 -2.2795743526521264 -2.292238311312529 -2.0652957272766397 -2.07907661798561 -1.8904710928267683 -1.9100605421280274 -1.7641370137890071 -1.7878203999916593 -1.44738258322662 -1.4511728946931335 -1.3208018696922892 -1.3195742683183376 -0.9614295100623949 -0.9464191358480889 -0.7079532400558044 -0.688944616499672 -0.34958172261070786 -0.33610415619559575 -0.16151614330333075 -0.1506937372743664 0.14474036068070717 0.14355808103048417 0.3191910532671898 0.3148501054429502 0.49211255174673596 0.4881968150447875 0.5730384795827206 0.5662128171904754 0.6318675826875761 0.6305922504617243 0.6441119766198398 0.6473531574337343 0.7058401643382197 0.706461117124455 0.7188651157980885 0.7231626993152389 0.7620586759281025 0.7612323449652365 0.8070843780326342 0.8009218281696278 0.8596431227888033 0.858284976782052 0.8896593541020934 0.8853822481744018 0.9544721293032126 0.9558646053864095 1.0062364640447896 1.0122231475512677 1.0787903703433699 1.0804755554994188 1.1159864058901334 1.1194678972391472 1.158727351064904 1.155111249679301 1.191567080595334 1.1830146755860795 1.2465211010361372 1.2385739894800025 1.2631591424713946 1.252808323282025 1.2653481365563337 1.2618988672966154 1.2577099956882094 1.2572010673619545 1.1692317521752145 1.1698798076533805 1.1309257108233766 1.1341256353173321 0.9729926032635703 0.9748738312245848 0.901938981533867 0.9093855967123474 0.7668946995916102 0.7765315134191155 0.7230521805603658 0.7332286390983143 0.2943535440998204 0.30690600529703005 0.5884255812148638 0.5946387227694743 0.2170542575851897 0.22254947894465715 0.29291107860706234 0.29252200440734555 0.0013409210982473479 -0.005719029008687928 0
39 0.3707653680242302 0.38515870428557974 0.03754951523566774 0.05647532501090069 0.055820042148219784 0.07221596620222925 -0.0001849604574530889 0.031180984913987686 -0.08320652866172651 -0.045671107183785864 -0.014624371295084872 0.030286294939251945 -0.014306968658473808 0.04618202375662861 0.06015797856224481 0.09922500327529349 0.08181995565839628 0.11511139672100512 0.15204182588684745 0.17188189980321056 0.19909721847596984 0.18932730031698242 0.2147966033473594 0.21409313792124607 0.22670462275866043 0.22345470885514374 0.20734306192538554 0.21191649061818651 0.18632432205105687 0.2115536156873361 0.18071376368037306 0.20776887532971955 0.17344361714046386 0.20318942381648952 0.12248031751595079 0.15503155394782908 0.06960236327704195 0.10859590958085619 0.022661705417093003 0.0605419333645969 -0.008872577785339788 0.032296110116426746 -0.04517663362656066 -0.01652125858921494 -0.09857616411462544 -0.08967744693070046 -0.15700956791729226 -0.17985623379183835 -0.19036183946623453 -0.229318947706453 -0.21210813604839274 -0.26333433178463395 -0.19029257703130043 -0.23300099897575421 -0.24249477081806958 -0.2812290347024131 -0.2523465993348921 -0.28754486534533896 -0.36453006177459457 -0.3952187409887884 -0.22319584731725683 -0.2679797331815621 -0.18525599344750532 -0.2330741762439672 -0.08834670475690132 -0.14609621729984923 -0.19298176635287234 -0.26831309629231015 -0.9649046774499581 -1.0113651659512009 -1.8635045166377289 -1.878745866015489 -2.3053961412481137 -2.3075011169880675 -2.8152464107402224 -2.792363043303687 -2.788973625821982 -2.7764726973820686 -2.499259362785752 -2.489268783543295 -2.2747213145209066 -2.270770494889959 -1.9855423672929362 -1.984448171391488 -1.7725694141012127 -1.768229068559016 -1.540687364460947 -1.5397112158399082 -1.4210024791768596 -1.4177727417217802 -1.1112432534017955 -1.1096198021551444 -0.8711016583956379 -0.8742884832551603 -0.5485660730739141 -0.5567956549081714 -0.36437647985365373 -0.37665972097768474 -0.04185926413423857 -0.05549974784195655 0.14305427210159394 0.11953786859533722 0.39644607205166693 0.39620244896531176 0.5148631536354387 0.5194814523404361 0.6390874386769028 0.6534762578229305 0.6964240868794391 0.7317063712348713 0.7663153042663353 0.77690974654206 0.7857654005599173 0.7925284256197003 0.8190812340452638 0.8145364137495008 0.8510160348062286 0.8335134174983807 0.9134859328604463 0.9061290577063588 0.9405973578808045 0.9352834234162515 1.0114675847284431 1.00783281259951 1.0648878939469881 1.065314309633365 1.1392612942971851 1.1373448328366607 1.178378308419795 1.1747814800595648 1.2061474254310056 1.2049774925626622 1.2315522842827917 1.2329291010328731 1.2591172276814575 1.2608430668754025 1.2641754934187972 1.2682493291570083 1.232723421715221 1.2378325802851862 1.1866759481249005 1.1825150826314896 1.076997376701641 1.0800075823520814 1.0220159524278856 1.023151254078762 0.865031439085655 0.8662480488123236 0.8017996542471622 0.8139136541171368 0.6806918776367112 0.6856411303242851 0.6464199214082527 0.650460631634104 0.24336223836031223 0.25112806302153245 0.5740792229528608 0.5797168840154754 0.2174508603104428 0.22369592281332729 0.32327241753093716 0.33168810451645214 0.04105419444333336 0.043494038999142504 0
40 0.17106520535303105 0.17450845179232033 -0.06540246919140458 -0.06375613122712309 0.023718710402391707 0.027056858625194025 0.0706425043651393 0.06607449621072448 0.08897536746913204 0.08093791360656155 0.2174680253486656 0.204696032346817 0.22721234652082956 0.2043253277494088 0.23374228843000822 0.22001447382606898 0.21851629724434218 0.20683082104789463 0.15548296433898656 0.15553897656897675 0.10376109048143434 0.12148052932472808 0.03903414047142917 0.05473744017609761 0.0015472026979423941 0.020946105017877414 -0.05513627062906323 -0.040301160489242704 -0.11407619362981336 -0.11015413296641441 -0.17716523762413772 -0.17024682379728517 -0.21155373542789846 -0.20645782706287719 -0.23973150080522032 -0.23408119181970477 -0.28073998168357406 -0.2696748559913189 -0.3728882308250121 -0.36734844059436966 -0.4072210175398041 -0.40186944044756956 -0.45552192939365455 -0.45663103177566455 -0.38473511860895826 -0.3944782352170364 -0.2903819149084441 -0.2973021355814254 -0.2388455439201067 -0.24986820872833704 -0.22758618226901461 -0.22917771256739172 -0.06740776725325759 -0.06336464789923468 -0.42737879523379974 -0.4316712593535854 -0.5695016980263219 -0.5727570324682247 -1.2595690589541988 -1.2681774761934435 -2.235617776459007 -2.2398332990478114 -2.5335738551834908 -2.5339212966369917 -2.7091850699813964 -2.709396960332616 -2.591824579314019 -2.591465882714841 -2.2434549715423113 -2.2455844902755135 -2.12338989571864 -2.1266306248210025 -1.9085890165266992 -1.91270945383798 -1.732027400665089 -1.7343613941518576 -1.6021092917605095 -1.6054987845274695 -1.2822392561901736 -1.2818175081896293 -1.1524586181618872 -1.150444587010412 -0.7955794050485991 -0.7912721850187623 -0.5613802258187661 -0.55579405987082 -0.20906420260354963 -0.20147936369622244 -0.03732408035116208 -0.02893880860881382 0.23847983897950087 0.2468449342734118 0.4021102335241693 0.4106668545077241 0.5769168747980089 0.5822127408012747 0.6596779560187258 0.6640402848554885 0.7556287128380461 0.7581224616366953 0.8124064433047664 0.814297006637446 0.9248043181517431 0.9273640168340904 0.9700585862915574 0.9730052511864713 1.0612172860365021 1.064447324632603 1.1250606882895653 1.128186230951222 1.213079089462802 1.2161251308947953 1.256132920158862 1.2583432952563243 1.304707569201213 1.3067505098907475 1.3470612470223955 1.3492363886203478 1.4074963351946579 1.4057009324247574 1.4310308071622018 1.4280925742158885 1.4224817147041833 1.415974659512635 1.4181937676997194 1.4088388218682937 1.4014602645606615 1.3918788606811034 1.3904710264058124 1.3804490532118692 1.2722689595113579 1.2641902493288484 1.1707991911918754 1.1658201255431777 1.0546527129098564 1.0536077535654158 0.9856245656904434 0.9864511977943309 0.8482678218444519 0.851620424836284 0.6991473051364352 0.703489758665782 0.5122212434542348 0.5134032219634364 0.40886091180207274 0.41064637691826533 0.2723807894695298 0.2657222603441909 0.25521454668264454 0.2392125150846951 0.14667699858966898 0.1277234838404624 0.13514209290394774 0.11134924193999751 -0.19004714709881654 -0.21311665732923757 0.18473851343208736 0.17317650505443538 -0.0941551127786795 -0.1054792197493839 0.047578113532082966 0.03789763425646697 -0.19181875972802231 -0.20119749570014278 0
41 -0.02768124370322767 -0.0443945703938482 -0.330502933196577 -0.34622881847785436 -0.2721984177510919 -0.29166808821106827 -0.30837990919658154 -0.3354783851530172 -0.34621105115758866 -0.38255636331874854 -0.21001189339806103 -0.2493484393253098 -0.17567248158079707 -0.21636536666866846 -0.10244853650948471 -0.11341609251078921 -0.06425783216886316 -0.060179178174308845 -0.023826939769655556 -0.00045929992799642773 -0.01279704757691036 0.037313420674848885 -0.032929529425103965 0.008579447830904028 -0.048557242733387795 -0.007637297315341131 -0.11587009069460663 -0.08995540009350123 -0.17496600474446922 -0.1748211559131505 -0.1966909203141043 -0.19741636903478366 -0.2173076369247937 -0.22431428507093187 -0.23707122102170786 -0.24672038163109278 -0.2672690403709339 -0.26775749110773006 -0.3164917448914508 -0.3267946826584094 -0.34090886119287234 -0.35107176838485543 -0.344092222930648 -0.350782070722218 -0.3716406035731339 -0.37501398529544616 -0.40644407370445634 -0.4027017942308646 -0.42626065862114615 -0.4193256820381137 -0.44790035128171013 -0.44038477480931704 -0.27943333079149113 -0.27639632359014144 -0.14126049477736302 -0.14273066524409472 -0.027566810115075672 -0.03313882243501354 0.035523137302313046 0.025251217060564102 -0.048319341326440224 -0.05401542374721657 -0.620023223772364 -0.6224338576490922 -0.9850216505355469 -0.9847074098796611 -1.877310477336735 -1.8739438712874055 -2.594322017090181 -2.5984853669970187 -2.617107551337372 -2.6209667864551704 -2.645304363884301 -2.649963241341939 -2.362866947775707 -2.369375132246086 -1.9914066369741938 -1.992653210232497 -1.853891643521429 -1.8564480296525403 -1.6456041434824868 -1.6462469289927775 -1.4498426042308665 -1.441587274839275 -1.3050606262189177 -1.2979955567146177 -0.9435942824963526 -0.9396896880121979 -0.7875017488596647 -0.7833562415583479 -0.41948107080518326 -0.42949461205052586 -0.19983362801398385 -0.207965339016269 0.0933581738953535 0.09921295763443538 0.24122142683880554 0.2503026354817308 0.4270441078184035 0.45123416378964976 0.5293742360361762 0.5601514507106771 0.6583445035757336 0.6788073371244607 0.7071820487298126 0.7252971868752951 0.7743115018089668 0.7827383310122755 0.8270331638577417 0.8216623137401342 0.9019555442900469 0.9024596543599586 0.9369300625215544 0.9380213975832987 1.0089596823017857 1.0083772755662963 1.0756094177337658 1.0806463024585824 1.1554873748150953 1.1544261538554963 1.1958746017661923 1.1914387945201952 1.2532741884422123 1.2465816303814492 1.2844362613421296 1.264663040732529 1.3547529909923384 1.3388861717130212 1.3801211106395073 1.3610703273403715 1.3850739770193385 1.373325261208386 1.4031782740880487 1.4150022751543645 1.4058774010633286 1.4082946600425288 1.4052543402899431 1.415109782499023 1.3337487058870394 1.3380095501995726 1.2377064021971975 1.2215610274730366 1.0939154792868493 1.0979122229235685 1.013577981006783 1.0213097767325792 0.8425988421156063 0.8548646170603931 0.7793917508408725 0.7997199743530103 0.6574007276145011 0.663198294559507 0.6292862018516843 0.6270270419087467 0.25123286009699797 0.24922003350960864 0.6278810778455863 0.6270583605749778 0.2817288090574621 0.28690391751112543 0.4106433655080508 0.421520880343941 0.1208276555902188 0.13316690894424 0
42 0.6750804158429631 0.6679512033010937 0.3161919898345431 0.30386960037772326 0.3199333658850705 0.3051798649620636 0.26178032437337606 0.24912728207500123 0.16207012304224122 0.15043072142207592 0.19730783852649836 0.19069387827233442 0.1669302379874651 0.16308557056657946 0.23084109582933365 0.23525100494748585 0.2286587268468665 0.23619869574199726 0.2693088499096916 0.28002706114523335 0.31118250894267874 0.31925098033045884 0.30783653105331865 0.3165651035601229 0.3132408078243074 0.3210831223049766 0.28089223929986673 0.2889037950345923 0.24091004702262353 0.25275783822963405 0.20417084240540362 0.2051167263537863 0.18018315320057354 0.17893552594869533 0.13257847938832157 0.12291365944582111 0.09497439775748973 0.07828937832288574 0.06864654167495132 0.05723540494904711 0.051784752460754646 0.04177783631788401 0.04086025962551787 0.03970598609028997 0.022815889620076746 0.03224461500175835 -0.015205573466488433 0.010092982604724908 -0.03320567574177602 -0.0015135946441020582 -0.037077445854592384 0.009711135789522983 -0.05157919288366486 -0.007726133916669655 -0.11095577036552129 -0.07917244353834718 -0.13485221384085122 -0.10909381542987973 -0.31170420493239703 -0.30776467808975383 -0.16171399295442512 -0.16054104867586716 -0.12559724682854778 -0.11611973660139085 -0.021065777743956463 -0.008062508437632234 -0.0035062447830540595 0.018764037176431714 -0.7034937932396232 -0.6700844554671157 -1.6822883898632917 -1.6596886596263367 -2.1676271353437535 -2.150733500466538 -2.841965674865394 -2.8338792855868373 -2.960211670706353 -2.9621364888302226 -2.636590057933388 -2.6352377088912995 -2.408635263639141 -2.4133749974610392 -2.052770820482893 -2.0628902880825315 -1.7978431260381562 -1.8002483393764983 -1.583955607564281 -1.5956215095943342 -1.4516571294556293 -1.4630953688734643 -1.195113135863501 -1.2090574708618647 -0.9810178300848236 -1.0000832187234998 -0.6816929901325821 -0.6791620504177835 -0.5230320247239248 -0.5175762528382677 -0.19830292820194018 -0.17192839526107662 -0.002142075955873681 0.027467916119476854 0.26653293197394134 0.28782992615209224 0.4008442366699825 0.42385954151654204 0.5472258757878876 0.5483912915409093 0.6106121459703857 0.6112105131800121 0.6853972060969085 0.6816955806612128 0.70432271473112 0.6964331211100827 0.7277424519694904 0.7285209015099454 0.7491915223634749 0.7515584907920925 0.8108245495190758 0.8152064525222329 0.8384132830584363 0.8457526920332796 0.9037051736246866 0.909369335097189 0.955486372263465 0.9614393279755404 1.019013576444003 1.027504548684881 1.0519108239095303 1.0604316091115322 1.0800596797487927 1.0872807403022051 1.1020035248410238 1.105816572454657 1.1337772151555114 1.135880685190358 1.1422416869865017 1.14332760150986 1.1221393192404534 1.1219146680384497 1.106569123867267 1.10735751106143 0.9986215110353172 0.988147224027152 0.9501010673768278 0.9323340482521445 0.7748484362502168 0.759163506147857 0.6816296307775147 0.6693322360254754 0.5249549915463589 0.5184367941370169 0.4692947954102493 0.4684350377940021 0.04698727484799292 0.04136105714419358 0.3210424682670805 0.3063013141259532 -0.024278049019791585 -0.03251094340528482 0.04515844542471115 0.037195072253418004 -0.2089964458737228 -0.20731095957665246 1
43 0.18892286792517154 0.18876537117095182 -0.061771009613707406 -0.06681451944099592 0.015074156240572732 0.012432246059368877 0.0366491035815244 0.03566256559524561 0.03264874625254777 0.03768141500306399 0.14866091563899886 0.15386403020765727 0.15774182314090268 0.14930565856592892 0.1885621009814713 0.18968746497863975 0.18501074491548053 0.1828497569455365 0.17007806508470935 0.16762376575987048 0.1457145518851064 0.14818029456876047 0.10133570069465492 0.0958675820271182 0.0785311945631122 0.07187658027105215 0.03346333271557711 0.026401274621491666 -0.001377478902405473 -0.009918741693866197 -0.03588462626861855 -0.04438824643239769 -0.05464631418715982 -0.06554069292025133 -0.0893675728196257 -0.09603092020130788 -0.13862310171148096 -0.14045343683987 -0.18784670965506223 -0.2052653086179248 -0.22073793430016053 -0.2374789659647547 -0.20874770339000293 -0.24634726790551298 -0.1986435186972031 -0.2455456305064061 -0.23217828170514565 -0.2555248416753031 -0.23557997068347447 -0.25701067147515033 -0.32751440969968115 -0.31684046619429296 -0.1591792889768584 -0.13894803287362834 -0.04166352247029437 -0.0352989069818932 0.08799726143145392 0.09252702467614426 0.18146511052889736 0.1642955551907761 -0.28140038394361966 -0.3012910495515868 -1.0716856699648005 -1.0786093537595285 -1.5228268410491026 -1.5236396206660032 -2.385646158061448 -2.3798652291578772 -2.7904579122740945 -2.7904629940288315 -2.698342449861367 -2.712452374778902 -2.643510278606369 -2.661327475353752 -2.3652586850533392 -2.38065459506036 -2.024725105443478 -2.0378339246778214 -1.8729338443014534 -1.8776152320504451 -1.7020726021201753 -1.700021831764083 -1.4889754282571026 -1.4850081964404858 -1.3152194680071112 -1.3106720880126659 -0.9560960014314475 -0.9524917951161918 -0.7685988258020622 -0.7677892081658868 -0.3699313271353688 -0.36533139803268 -0.15375001750108908 -0.14522802773500132 0.1453363187621619 0.156935668626474 0.2870135328429342 0.3021588182348509 0.4457491812249117 0.4598504106954522 0.5151221349138879 0.5280856536053804 0.609030854466738 0.6218498254679332 0.634518828240445 0.6459676075940308 0.6655776097700041 0.6754011310308101 0.6889030898686599 0.6953619624967757 0.7346015410151168 0.7361813268136572 0.7536923760701058 0.7534526678170295 0.8055151321698446 0.8005318505468466 0.8494374535717739 0.8421989268391172 0.9094398020962089 0.899996923086519 0.9425068930978355 0.9305422591745014 0.9955040991812396 0.9843992228741527 1.0350960126946802 1.0276897504130744 1.0931535925025742 1.0789951462379577 1.1200201898724913 1.1053001156028657 1.1504869281538745 1.132903303911256 1.1721669737113132 1.1490041097642418 1.2025656541218481 1.1877796299685244 1.2109211129030726 1.1975146157690233 1.2010283292073325 1.195783958318735 1.1944381590938633 1.1964250875534077 1.10251064632115 1.1071711047691508 1.0631680775734722 1.0702870513206122 0.9110126616512559 0.918086464245178 0.844904678916869 0.8493934869826418 0.7005650770654341 0.7094984254668262 0.6572242589759298 0.6649855665218283 0.23241726793561668 0.24256361237141988 0.5508850403395584 0.5660008139113728 0.20260852278610741 0.2157563397827289 0.3144598266791476 0.3296346238911667 0.046038981771438614 0.06158598928597314 0
44 0.3072914658044894 0.3056014623920973 0.10392701918425473 0.08980260185506239 0.1928220418709401 0.17515680841150782 0.2716523293386359 0.255370537731757 0.30556622889258733 0.29004361380079047 0.44308317976199163 0.4348138473129026 0.4524007841067572 0.43756717967204395 0.46828205815510415 0.45953029778964805 0.45279136401158127 0.4450240336452538 0.4044880430295592 0.4026899299904656 0.36554298043019884 0.37314347867064157 0.32736642971758556 0.33938225761456664 0.3015182912822212 0.3178801864008065 0.25527808743817104 0.27273402788769374 0.21046830344602085 0.22432470526612036 0.11449014279374836 0.14158982331426984 0.06874441250692342 0.09831555739050657 0.027189059533611726 0.05530629556562161 -0.005542259229095238 0.025278319752494838 -0.12140747179707745 -0.12752214023767294 -0.15751096771801087 -0.1767857999371074 -0.2310065419906735 -0.26460484575414256 -0.2124020496853305 -0.2564541628675059 -0.12171915275428091 -0.11492721815643847 -0.08544370531009804 -0.06427620177117177 -0.15302637562653842 -0.09935491479610192 0.08807314896885998 0.1590834063914741 -0.2406608219974231 -0.18870466042518075 -0.317933608102166 -0.2606586938090274 -0.9889501857309071 -0.9581381892684284 -2.3250196947700523 -2.315646379336318 -2.836441280469473 -2.824370833119726 -3.0868856909040496 -3.077262851902071 -2.983876988447718 -2.9815368027486957 -2.4817101439048344 -2.468802788013843 -2.2367186727481823 -2.2323708739657047 -1.7934500808172054 -1.7940511582960248 -1.5432893734568083 -1.5466053878145338 -1.4669169990062088 -1.477160160280409 -1.1316286937080093 -1.1563209023325278 -1.0754777882774427 -1.104066310008026 -0.7682406185570443 -0.8009942217553387 -0.5534876207875143 -0.5871190500633432 -0.2948719275383027 -0.3118469457765656 -0.16418907100974423 -0.1775491924264898 0.08484822977012385 0.08889466167538274 0.24120335837751838 0.2478245460161972 0.4334849119852322 0.4444657181914806 0.531679470555396 0.5484668779372939 0.606555174129376 0.6169068967418099 0.6220777892211728 0.6354544733940983 0.6765198699255066 0.6800332822227944 0.6800368959150518 0.6752228555461102 0.7261458022737486 0.7138866524314338 0.7709986494319665 0.7561885339969265 0.8869864263956799 0.8760435639581345 0.951586897176675 0.9468020674868143 1.06605541768716 1.0649613723562226 1.1518149600584806 1.151555075356967 1.2596424176228709 1.2582896921545057 1.3109435974734538 1.3073154504469926 1.3314401588165836 1.3340362955625267 1.3393095759891835 1.335460993735019 1.3383173163234972 1.3381504841976124 1.3323803210855587 1.3310360275657942 1.2105151748061544 1.2094325728340323 1.1111642347136126 1.1134369460025155 0.9828778584337741 0.9725014422575811 0.9076462061724371 0.8929499220435062 0.7588617628443615 0.74537395763452 0.6128640785288084 0.6014047592394718 0.44258208110229447 0.44280221518897633 0.3469050614714746 0.3536045457757311 0.21857381517943963 0.2336495369954008 0.2129310347194604 0.23871111528397648 0.06447182369455362 0.09354217105946105 0.04471667154624015 0.07778014885560935 -0.3077707009101829 -0.27807096881043947 -0.0436019672253849 -0.0189165342738491 -0.34969675848090276 -0.3421173401119617 -0.30578015875838105 -0.3105589656278127 -0.5412877957264257 -0.5554034799659959 1
45 0.33234579650730467 0.33315827498318384 0.12224181382696031 0.12329911995328047 0.21621377299431543 0.2174897075022102 0.2589134618491471 0.2634224463633572 0.268521366138593 0.2754997070287146 0.3536704956594292 0.36344222066454535 0.3371920589655417 0.3469604714194219 0.33273878554030034 0.33181849857874113 0.30693702282223967 0.30259005217757107 0.24500436035029338 0.24007648867524267 0.1888779979129751 0.1868663758896716 0.13215356940705192 0.13861906713763972 0.09720976755973254 0.10731515681661818 0.057423316946433545 0.07153568863476778 0.01460317168302083 0.02530150761114669 -0.05698346965465362 -0.04012408956862856 -0.09221094634418137 -0.07435719860531975 -0.12126533323495181 -0.10710809153442113 -0.15893175105722435 -0.14124001718790424 -0.24759760542658427 -0.2480023389594166 -0.28130703022696935 -0.2878911775200095 -0.3341488475433039 -0.34422532726213007 -0.2439324180544844 -0.25952188645304375 -0.14758987676625424 -0.14506089446809511 -0.08710540146647361 -0.07935644070245473 -0.08330409835267716 -0.06631071051210569 0.06997698270772901 0.08777652506272915 -0.27243752372212526 -0.2701419257155919 -0.4055791966908444 -0.410870244437767 -1.1214712070544124 -1.1380500742789543 -2.2265620142323943 -2.2321630866609024 -2.5606833227872094 -2.5640478584920166 -2.7485926099044526 -2.7499553106691534 -2.6793877305480747 -2.6849508592078797 -2.3171864145200267 -2.333648213172479 -2.195508126244434 -2.1993849404693595 -1.9824722345792267 -1.992276934526192 -1.823094704110023 -1.828509821957784 -1.6942001735373609 -1.6866594517896765 -1.4258255537764448 -1.4358570129125638 -1.326496596978469 -1.336689317131576 -1.005392636072731 -1.0269698419713436 -0.7713039755977711 -0.8032743109992673 -0.43996528536643353 -0.4533368501419943 -0.2587849943735492 -0.2712245276877141 0.03730017046990497 0.039615944924875635 0.20244169066022266 0.21156776931534438 0.3935084413873966 0.40278569283528753 0.4803602222435259 0.493882357529813 0.5592769371843787 0.5723145365671485 0.5891212169744193 0.6038265353339938 0.6692482176804901 0.6808704542624326 0.6934379725107149 0.704646742470203 0.7596606899742753 0.7666914294021296 0.8133926801500238 0.8151657984843368 0.8998424377425138 0.9021823034792007 0.9462660364686286 0.9464114875819902 1.035497734817298 1.0356296345846943 1.1107537795013727 1.1127039687562998 1.206713871692358 1.204393278981044 1.2562521720033573 1.2537665540122873 1.3104313565959629 1.3056420097907804 1.354675597749825 1.3496615997426389 1.409033961250195 1.4005294376633515 1.429503419901394 1.418678604744258 1.3805589696846994 1.3722790972998595 1.3527443803792494 1.3408140765323608 1.3030431627756442 1.2963307294074653 1.2777991132293138 1.2774823128747457 1.1243310235945856 1.1236462289118023 0.9590494728292924 0.9667162220944547 0.7575782998109304 0.7598272209591386 0.6352256062177943 0.6328191883153664 0.43960951807953563 0.4312112972732649 0.35408456456392656 0.3389853537482921 0.17881085356581394 0.17019008954468973 0.1294809428416599 0.11908013424272923 -0.24001728363457886 -0.24891027913909625 0.07462419095078587 0.06488980743232986 -0.23177987213376383 -0.25308439483745104 -0.1375016525475914 -0.16016221327087976 -0.3595561155232616 -0.3827295194060838 0
46 0.5264775605508234 0.5150932253758285 0.31825932294681536 0.3100914750219559 0.3946422373331657 0.39036001200810944 0.47897376898075805 0.4849438897310563 0.49931735068498995 0.5183678328431043 0.6474748184064012 0.6708867259782139 0.6801224199651443 0.694374822228454 0.719469505828144 0.7306650255826881 0.7192418432159258 0.7196194740568274 0.6907132485486116 0.6894337003484594 0.6512267343926794 0.6542348320559697 0.5941650279427293 0.5925945775158539 0.559157384198862 0.5602110766329247 0.48909541985280214 0.4901849480684177 0.4357344354154833 0.43453770099623057 0.34943886202597696 0.34970838324017706 0.3037804626353733 0.3047898873392825 0.26258828573393345 0.26091394165465687 0.23513476451320514 0.23288524108295405 0.1619978491970926 0.15620178795719397 0.13866484057290052 0.13047591277653936 0.11452025689589362 0.11300491527594403 0.07230992220092247 0.0809312885040896 -0.0036447696529222657 0.02472512369608637 -0.04201615860641539 -0.0022188669163440995 -0.11625193750980856 -0.06445959665323642 0.01773925428042844 0.06628740291289148 0.18582593366055278 0.23728551368841977 0.3186188853264298 0.36981737608869736 0.3595641265902785 0.4022005758306051 0.21841752298930572 0.24938024053302144 -0.5361265397597492 -0.5333114734912101 -1.0000717753646846 -1.0020517775807356 -2.0280850111050803 -2.030027220122939 -2.9380914699034335 -2.9309092565417885 -2.977432890550967 -2.966954594602954 -2.9547387526037867 -2.944993678579069 -2.660483151214854 -2.6594753075013076 -2.2339561555878866 -2.236100881942672 -2.103767923187064 -2.113240690443133 -1.8450481857149406 -1.8560815410294325 -1.6807412778655788 -1.6978674688966109 -1.5757612592295338 -1.6005832596342984 -1.2391679593148694 -1.252127563173083 -1.1184399215324703 -1.1338039858764724 -0.7344447662835023 -0.7326466532444087 -0.51152331830707 -0.4969541156891921 -0.1691133289925375 -0.13693641085032482 0.00386538628108468 0.05118427726397812 0.23601801112912568 0.2785144297944768 0.3507232284824724 0.37820565924126015 0.4397643045645623 0.44097037435548003 0.4702367645253531 0.4499148649746658 0.47292143673160325 0.4466315244177679 0.4735700944918122 0.45741628781905064 0.5533559024205772 0.5591643104423554 0.5830210033028536 0.6053759058893675 0.6547741756253913 0.6926827108289118 0.6895710206542418 0.7355947041038675 0.757485548376323 0.7886358767764037 0.7910522323325395 0.8151814578174523 0.837960668103193 0.8416881916667336 0.8875965381051429 0.865073297687637 0.9273333004499023 0.912864980074211 0.9485206792962444 0.9296322110076716 0.9531281369244695 0.9490130448663194 0.9487197335114246 0.9890997330780067 0.9432976894201701 0.9742709468996367 0.9381644395684887 0.9787579481192807 0.8876462263736826 0.9092326170734495 0.8539217445222249 0.829532333194777 0.7279731259919231 0.7156766346629482 0.6648867922667918 0.6412294547624953 0.5112982462234825 0.5027696313549228 0.46939387080630723 0.4956901070815931 0.29022730982387657 0.2984671304528632 0.24827023472794707 0.26504619875102975 -0.17649128401812675 -0.1784080466196727 0.009649100739103742 -0.01426932603079223 -0.3083910514143753 -0.31826606778984967 -0.3114449225129263 -0.3373307035759723 -0.5486157613424538 -0.5661036227402505 1
47 0.10784365930926754 0.09779910053871532 -0.1127487640072502 -0.13369974715175204 -0.029864817249780632 -0.04774837794976605 0.013299532201152429 -0.004594568434583836 0.026603039105864923 0.015332836378000534 0.15261881208395067 0.14524055591733998 0.17618430157670417 0.1525239526621931 0.19455330160327122 0.18447742416648794 0.19236611436446083 0.17707447443611812 0.16853742761895774 0.16571513396590376 0.140295218063045 0.15958089135891385 0.11427392354034538 0.1317105909644951 0.0946211593393258 0.11960713103027132 0.05354010347480198 0.07203437816629332 0.014462538826002456 0.021469789254183524 -0.0464101072504306 -0.028872858725115694 -0.07730536920534092 -0.060101182649752616 -0.10786455778031012 -0.0870069283524586 -0.1323912894135404 -0.10760166166858198 -0.19799154838575816 -0.20351598042430652 -0.22247160316066328 -0.23729105396736827 -0.24777678433434858 -0.286454433706659 -0.24616959470285593 -0.29807697142962297 -0.23609160927892248 -0.26277571518983933 -0.23320035433195585 -0.25854679182558016 -0.3408423090271313 -0.3444373305412327 -0.12363772220195557 -0.1161588849341797 -0.14146888436420824 -0.16904496998066776 -0.02233659285448653 -0.06152919337348095 -0.20044133059527525 -0.28281665016751134 -1.2454606020991434 -1.321302064928922 -2.194851789388178 -2.2335539817537367 -2.662857309385359 -2.687746163096886 -3.051676593227487 -3.051350909212786 -2.826921347000919 -2.8281598647368984 -2.4628567585452608 -2.4582569047278273 -2.103379827695667 -2.1043998676205824 -1.7862232985843853 -1.7893605857458788 -1.6038322701147507 -1.6082533214506967 -1.3280527432068254 -1.3288426361060957 -1.2368314061294186 -1.2332902888581572 -0.9215513620080635 -0.9145677511500665 -0.6945688767868319 -0.6866871128323524 -0.40557317387041536 -0.392392833643477 -0.25418596869392474 -0.24133477560343408 0.03578633455506264 0.057470596086801606 0.21401815380690437 0.23874002482203593 0.4526615722313352 0.4749429964086147 0.5706001407320187 0.5956433292170402 0.683772851427193 0.7011694670954896 0.7173512798832462 0.7322249360738127 0.7766067986744787 0.7909697196926615 0.7839094684447048 0.7946090089369164 0.8169051890242471 0.8244008901892244 0.8534799706437539 0.860785952965216 0.9489347482007418 0.9476997688717645 1.0003774643314074 0.9963117594007755 1.0913289790535927 1.0842160281268818 1.155140460358382 1.1453973437503038 1.239280165175309 1.2235404274070447 1.2780243667133604 1.2609972510783862 1.3011492868917287 1.278604966602721 1.3213928897768383 1.2991325454710605 1.3376897384347899 1.3192297938197441 1.3423279124472032 1.3249915249831972 1.2653092893645663 1.2541869468782352 1.2002444591284913 1.1919691038589733 1.099055655382024 1.0856069985049714 1.0454209337562048 1.0319656517766802 0.9095720030046266 0.8978479807574331 0.7738067894570122 0.7597992148441435 0.6044047260951828 0.6055406300281021 0.504357246820021 0.5125043160144003 0.37456486429189795 0.3789826030766079 0.3667204418240786 0.36699327558951467 0.2329662480177248 0.2307040766645727 0.2180248350973315 0.2090448098376143 -0.1441074819941761 -0.14550387291065192 0.19766378721385536 0.2115466894438427 -0.08682654488060848 -0.08510221139177077 0.045368340716663624 0.04548488229196579 -0.17907748311036187 -0.19316275210676537 1
48 0.25892400178489794 0.24987230496207502 -0.0166143111648438 -0.02516189791775503 0.04772778061974492 0.04857760058228422 0.0327387874179621 0.04304202632594212 -0.002074921508089746 0.02100753778625375 0.12909337434705037 0.15767888466741908 0.16915657355906433 0.19292774236946997 0.22482670734888188 0.24590477200443672 0.2480558223206728 0.26087720245003965 0.26529464009372816 0.26560692333297453 0.2556361441126782 0.24878006647726636 0.22129974370562877 0.212936756398868 0.20138046970062362 0.19275247829498454 0.13029342131753907 0.13072585982434504 0.06247013932495804 0.06420681959567531 0.04099938677742898 0.06747811451171515 0.01680662053698967 0.05111923080334435 -0.0024793538999006177 0.04633560567756945 -0.030274971320999104 0.03544213036754229 -0.07107596603557198 -0.024264196532804764 -0.09314659149783466 -0.04861897664278558 -0.10462036555620102 -0.08815337222112873 -0.14184440721795966 -0.14847402680523913 -0.21587149539348616 -0.25246073178202266 -0.2549433383628781 -0.30784839529371766 -0.34135695903279384 -0.3963185079991334 -0.21934455479389925 -0.27238090921009217 -0.16706316091848805 -0.21624611482417322 -0.0961832975581629 -0.1423144883524472 -0.05975246134691048 -0.10161317131597514 -0.18867484746405694 -0.22330486036702268 -0.7523101079516898 -0.7675567272973254 -1.1079005880636714 -1.119622351753204 -1.969193571808784 -1.978487837724387 -2.6674943541189418 -2.6763000940124932 -2.6985920957681513 -2.7065429339444265 -2.7285028524386776 -2.7338909428797633 -2.4779535602327236 -2.4781504311754983 -2.1139671931573876 -2.115583492304779 -1.9889497779506726 -1.9824572528134095 -1.8083668001738396 -1.8024532939355744 -1.6245180985898635 -1.6188218655985764 -1.4510899303417233 -1.4348549661636802 -1.0886533102480378 -1.0876342490314421 -0.9047446816007927 -0.9035827289695177 -0.4950180800622732 -0.4952159297133676 -0.2625134213601541 -0.27061020000395075 0.08318593133170538 0.09149561667766903 0.2494205934298961 0.2616975105924766 0.4757094003082116 0.489925665648947 0.5991422867452982 0.6138572416175592 0.7331614846505303 0.7347530149489074 0.7857569686113166 0.7793800063410359 0.8426422064226955 0.8320929353001887 0.8822485747051658 0.8712364498326863 0.941216503820911 0.9333076371745008 0.9647979537878015 0.9630965070165942 1.019539970949502 1.018024930470574 1.0810636839143157 1.0832565928325337 1.1469897774717452 1.1499493914305816 1.182344335672326 1.1824093821329598 1.238126493922124 1.2382358081129112 1.2636487977722766 1.2477864956082811 1.3235002746449638 1.3111339185990118 1.3425594898927002 1.3288367946861257 1.3209393713985307 1.3096056279151398 1.3400076208769107 1.3494670626427805 1.3323480989962633 1.3401027814396897 1.3282411377456924 1.3419746740290392 1.2255939080323301 1.2402727259820168 1.0940958627586994 1.0942949169738796 0.9052954993589779 0.9120127509835001 0.8002057148206134 0.8056572707319702 0.565420816304055 0.5660360474108828 0.4130244875646767 0.41757502953984726 0.25493358210962924 0.25199384345820874 0.18943390423857664 0.1861385180408206 -0.16459621367074817 -0.16584293749956203 0.20452829679786788 0.20519532416038544 -0.09837470077127364 -0.10150957880459544 0.03359553362399481 0.027224895315164588 -0.19459919477909438 -0.21011608819148364 0
49 0.13079331541315042 0.11606842288718155 -0.10442522617429972 -0.12123009973544185 -0.02784235414970482 -0.040474617717599415 0.019412092654597757 0.003151983201263418 0.03316038484799577 0.019806587392700692 0.17374897413621682 0.1570850345731145 0.20235104721276542 0.17446689433135987 0.22694222302458655 0.2065811751411104 0.223669121262418 0.19915744668026036 0.20871777068831676 0.20425787216060343 0.185347721718486 0.19806852074668768 0.1544816704426566 0.1843822636037089 0.13743287265413784 0.1792706959055721 0.08981434635489904 0.12809689870706364 0.04786118609224843 0.08733836487651558 -0.0077887712491318 0.03890103613994711 -0.03915080178729369 0.00826505660450749 -0.0684430900850117 -0.014830050612737013 -0.08768690477889862 -0.03347790722516919 -0.1295379782352768 -0.08772334284249439 -0.14629948748932975 -0.10658229931096486 -0.14207447895834946 -0.13198414675253645 -0.16903051521163803 -0.1823710624619892 -0.22543452967073563 -0.2650652903759436 -0.2508676957785383 -0.30849163251554046 -0.3917748922674562 -0.44567943624849704 -0.2137189393721428 -0.25901596953700334 -0.10816961363504163 -0.15840806682091824 0.027978952432881954 -0.021214240267532606 0.13900934590144232 0.0820409931681425 -0.4602760426993271 -0.5025688900341763 -1.4788168876099306 -1.4941952561524516 -1.9918504435545596 -2.0009788560525976 -2.7687782807855603 -2.7672633155918875 -2.9603865395332476 -2.9643225844328303 -2.618863090564558 -2.6286622946878815 -2.384309016640943 -2.3987006966266744 -1.9978627993331166 -2.013079982143905 -1.7115698370842374 -1.7218411550439434 -1.4718919992511168 -1.4836888976255018 -1.3155477117204946 -1.3215538188228564 -1.0420598679858237 -1.0522884239204835 -0.83622034331027 -0.8550543050739599 -0.5277039265307408 -0.5324429827853407 -0.37745172186410514 -0.38426925344877105 -0.06514649932316985 -0.055413320368799646 0.12250109624643102 0.13811345136262076 0.36856854427273333 0.3872398898848388 0.48871899357598636 0.5134923597057863 0.6115598367648971 0.6253734765599503 0.6605563843783031 0.6763409921587638 0.7213669954043169 0.722294509750391 0.734314252480651 0.7256404876397511 0.7555317454291384 0.7421177197695528 0.7704951416440977 0.751812352673177 0.8490239869493195 0.8358361181968448 0.8845276099555193 0.8753205243656268 0.9677181182728276 0.9637566081356184 1.0323206970409728 1.0327404876248778 1.1094956123137436 1.1055512672147572 1.1510636132099563 1.1458508621286114 1.1881307603995381 1.178867361438634 1.220637729101263 1.2074619059896463 1.254554037783386 1.2442806118365297 1.264822043191856 1.255221366286925 1.2218468103023952 1.2153840228410004 1.185010939417289 1.181066895459324 1.1207772584004232 1.1231671135466712 1.0871563690603452 1.0921456735037722 0.9669297310786646 0.970661771757527 0.8454629943706422 0.8450194136460425 0.6794861089868149 0.6672691188875035 0.584235505042372 0.5689601267291877 0.4413799261446556 0.4134096469311146 0.4117946276330642 0.37634701685685457 0.2759363615098209 0.240567047399189 0.25243561733667974 0.2134128603537846 -0.11343867808739816 -0.14408549869961007 0.2324844223834006 0.21896198595609206 -0.05217033270877636 -0.06354774164027788 0.0861458464315632 0.08010586096428796 -0.14130235337934494 -0.15059646872443722 1
50 0.2421396058132146 0.23663836163331808 -0.020399653804503263 -0.03363871653062489 0.038160831509216564 0.025527062236214704 0.05058410320822304 0.0409439768294817 0.030605805563013178 0.02694393074214929 0.18037588345430322 0.18239503400314305 0.2363471582655734 0.23936097760827124 0.3134829252055553 0.3229206848178805 0.34454080331205006 0.3534347022396318 0.3794713549544255 0.39006760407627894 0.37862695553027237 0.37513492424550776 0.34975807150871674 0.3485562176920993 0.3334527909021645 0.32961836227600827 0.2562227668224679 0.25353719119315343 0.19549075360305324 0.20645951416844355 0.1441299478302227 0.16101522604409269 0.11033560126178799 0.13266038974615668 0.0671745643620909 0.09726909234095871 0.01819849433814369 0.05394272902048414 -0.03580121020567617 0.003139937560405313 -0.06450476780645431 -0.02385494588465065 -0.08201521478085994 -0.051565942678720944 -0.11817141038054757 -0.10847707861794476 -0.19265803975481077 -0.21034104053450875 -0.23001458346600856 -0.26322230732465357 -0.28031356599719714 -0.32086340909987854 -0.17564537888886633 -0.208623332148143 -0.08449420766945792 -0.11237896283290638 -0.01088028497536442 -0.03289339250252965 -0.022148981998121545 -0.03923482013227897 0.009113069720918075 0.007476368269323073 -0.5072474169434642 -0.5025384747910095 -0.7920563562386249 -0.7842549969368733 -1.6359168885338882 -1.6271033942590343 -2.58283743959767 -2.5864379945780405 -2.7747243102541423 -2.7735371747049484 -2.870219064281728 -2.870073406133914 -2.6608365402035288 -2.661807418856692 -2.2638315281883923 -2.263483409167593 -2.117378970359935 -2.1130755145928664 -1.8765597327702537 -1.8728821986162743 -1.6887055544599363 -1.6802312955457488 -1.545372365902196 -1.528982765809637 -1.1763827666111908 -1.1804282950933853 -1.0146367620082621 -1.0193562440964676 -0.6070175453378681 -0.6265775581042803 -0.3778579611020447 -0.408550254008496 -0.026641403756151764 -0.02984855563462219 0.13775268441892052 0.14060117734084088 0.3748392037624413 0.39403122220063835 0.5164588999081161 0.540800429813153 0.6425071961165187 0.6530531546877896 0.6963753020339638 0.6990837643809087 0.7521664945144053 0.745526334991375 0.7803496804301133 0.7713765814138895 0.8600574928343221 0.854541191603353 0.8901688847103912 0.8892889506457067 0.9544079862656432 0.9545925857117936 1.009901952557911 1.0135683444940966 1.0767164121286257 1.0793571177457437 1.110859781140924 1.11238475927356 1.1495395385003846 1.1498403783808158 1.1676974386709134 1.1560225024102166 1.2091913588758487 1.202792413311002 1.220490170000751 1.2129125584779388 1.203351331046818 1.2004537521384009 1.208967309955888 1.2217904969313835 1.1908515695283626 1.1920419799861648 1.1838867799842063 1.18564965952379 1.0932764580393268 1.0893947502728025 0.9864099414743919 0.9662536694855035 0.8326943139200296 0.8287517756671718 0.7433033119710117 0.7391614183619524 0.5718766775219564 0.5745842364458369 0.4999602867657913 0.515929192851381 0.3595349159111976 0.36530959613857306 0.32250782047746895 0.32706980581145473 -0.05000573104657491 -0.04853736742597192 0.2873173841335799 0.2819576762337661 -0.02301325672969057 -0.023511042838151756 0.10032687827278863 0.1037111010718732 -0.13858124310949904 -0.1353487953852266 0

@ -0,0 +1,350 @@
0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81
0.22694696858283897,0.34775625238187774,0.3392840583943804,0.36117380697754353,0.39568203288712184,0.369544564332971,0.4232248408569529,0.37368255862527006,0.29799288392880463,0.28070487619417284,0.24012498017324982,0.2773396652887497,0.3125037060518935,0.29118227871141245,0.3156063110953069,0.334595075421481,0.32017439460364233,0.25496775704878055,0.23137505138718018,0.3086933589039213,0.2781874863494305,0.27826661571808353,0.24883481723974266,0.2372068586328146,0.20837800448128896,0.25156021763768305,0.2521346207162327,0.5430745741165878,0.7376549759464001,0.6975305507186618,0.44116592081731826,0.21319307838426194,0.17930172438273728,0.21080702455664735,0.27932630926498814,0.4260755455094688,0.6550001891470842,0.7094117225354243,0.7400327130801825,0.7364137895612177,0.6867654812380679,0.7024414358112681,0.6862804762093122,0.7455849440637973,0.7530837021766004,0.7058276887083296,0.7329643555294276,0.7914009938730266,0.8578189594753742,0.8416178166468105,0.7945274751353067,0.7784880812317879,0.7396857324100553,0.7358946542446628,0.6514554065478433,0.623672339230888,0.633095253380882,0.5751592216841046,0.5466132551988674,0.5751696715983514,0.578246901449433,0.603151782545054,0.5688759003765469,0.6506240553088054,0.6839450246408224,0.672703921274995,0.7184409852546287,0.7460083888927214,0.7755607238221356,0.7972462168129305,0.7747865172212869,0.751335331450286,0.7413423604521847,0.7071505450336477,0.7252306223472753,0.7116809355106632,0.7497669063085124,0.7419630862877542,0.7480898713003772,0.7785820127137806,0.7845871411710432,0.7884758141016579
0.30931059118262944,0.44802464951564097,0.42812266654435993,0.4221673656651012,0.4414862524735019,0.38252068225290115,0.5594885610099336,0.4879195720186297,0.5057109445850644,0.6809138595254425,0.5160479752340156,0.5820274984064506,0.5552158105115178,0.5154213273776996,0.49116158491535655,0.5077692777871231,0.4563023987368291,0.4515621802016252,0.39385945272048944,0.4169445271009527,0.30270813574254213,0.3533557520372086,0.2001753908479892,0.30120811865855546,0.1751103126906945,0.29198213449119803,0.19376072655378407,0.3805742460503632,0.6670014712241281,0.8135327420170675,0.9472398841289169,0.8787974724157874,0.6465783117568061,0.3855856217890038,0.24783118148289274,0.2046070265979767,0.25224597833176876,0.5076607596921753,0.6010605321914367,0.5410801365883835,0.44214060967044744,0.37990186098343426,0.3138349559958241,0.36540990078791724,0.4159711158624285,0.48184660030996085,0.49836179343322085,0.5400390136011485,0.5919194338806133,0.6788351785384745,0.7110266889631036,0.7169881816889907,0.6507655474060966,0.6269708240614394,0.5990375465614677,0.5956283512079164,0.6461703298023708,0.5834915500216956,0.5672851087995516,0.6246204635317723,0.601450486762437,0.7470264464965265,0.6878974475068038,0.7687499633424417,0.7728781831935388,0.8041658110445644,0.8296985738953355,0.8390852002266125,0.8336851770668385,0.7347507306856856,0.7749962751198358,0.6123194036399614,0.6251978397060143,0.6933076333269896,0.6313265309174184,0.5744614045425525,0.6314962071075791,0.6016952429134368,0.6023962734127287,0.6557397814876362,0.6085415338260789,0.5856671225337542
0.2509066691532393,0.3959646736469805,0.3857637615093256,0.40642478848618396,0.4367410302561003,0.45048390972104757,0.5597904262276324,0.4662732211759184,0.4937221156768377,0.5311718530611782,0.471587940444743,0.48744815661859575,0.4585168407722134,0.40205260568957135,0.37131720190278916,0.38089083926786094,0.4034934114080658,0.3263564301116572,0.26087819864540096,0.2743045097080986,0.20631282810104917,0.22560639858838105,0.212278323082778,0.1804439636317023,0.1442479339347012,0.16148764866848359,0.20827991302427196,0.5651969415621981,0.7509489650647656,0.6063309893508133,0.36838037346610325,0.26153176701843317,0.21914275734281097,0.16708594510500774,0.2727511654012147,0.48757880251145325,0.7061155837709507,0.712356064934533,0.6935056848254086,0.6245740792397732,0.6018002165600689,0.6170029674891775,0.6643695778344088,0.7391188224959292,0.7279948532714207,0.7217264584766683,0.779758718625824,0.870870426673379,0.8813063223142603,0.8713176766832504,0.8511535292453836,0.8362357371932658,0.8435890379510179,0.8606531976130457,0.8510144127194998,0.8264531949483078,0.83496589947337,0.8257021711735222,0.7814619125075117,0.844167983865165,0.8530949729743295,0.8622242193233988,0.7628710028809536,0.8167292713579373,0.7454258690174823,0.6928098824128632,0.6484126018850105,0.620340195717854,0.5661620767171915,0.5600950439194318,0.49010543080315894,0.48191783754299994,0.5016400343574416,0.49374598437400874,0.5089737058505108,0.5391531258268516,0.5620914440639903,0.563557908371542,0.6177692883168905,0.6575498860006479,0.6690185378473297,0.6784116666888637
0.2946303832094844,0.45429943045820936,0.4571638792249858,0.4693427979236597,0.48232267990749556,0.48534364830367416,0.47917634980559565,0.41383514103294516,0.42162222156122064,0.4148990658764038,0.39056221376980493,0.4459274727905175,0.3981394589642315,0.4269298251458974,0.43979151487954776,0.45338413174248055,0.44637142754399894,0.3631969967689148,0.3693939262548215,0.4397281529796052,0.4018772890145208,0.41924449290279797,0.38435020291506544,0.38916810900908827,0.3427348127979324,0.3760511743254019,0.44075002472648417,0.6656087722476339,0.7713434012638138,0.6747084975270985,0.40232773115996706,0.1592387471075314,0.10009530679362244,0.12354530253016816,0.22466593820817826,0.34747982243626063,0.5765650201699573,0.6695678701160981,0.7365444203054973,0.7227313169315546,0.6732119587008967,0.7015344483060514,0.7056218426626636,0.7630007773734715,0.7321183988269259,0.7005342599624332,0.7399265853311517,0.7959136225362908,0.8458297833162544,0.8411438522122697,0.806402485597248,0.7526593984061384,0.7094961563243164,0.6687376945729505,0.6650365033328718,0.6200242422352131,0.5780861812649098,0.5270132352399937,0.5038419172318074,0.5003916135087055,0.5319855755354118,0.5612911417021847,0.5324361711082939,0.547739397256729,0.5720935612422154,0.5672153558237152,0.6259897580123943,0.621625015243159,0.6530848737841168,0.679026598019821,0.6734160124064018,0.630638788552137,0.6251730897027126,0.6298111210384457,0.6581406923731485,0.6519181930365885,0.6786532739487278,0.6890509201160546,0.7261021019174738,0.7022809430442656,0.7223695982890261,0.7392178681335109
0.5416633908832945,0.8031041157340251,0.8557079862322408,0.7981440534891306,0.8159637967401013,0.8318371386381895,0.8708770965124808,0.8213474178171538,0.8576627950516045,0.8447313316942562,0.7274772743331225,0.8229164218350287,0.7978348644878465,0.8167821317155125,0.8308482654209051,0.8165032533087981,0.797743599354686,0.799688701290009,0.8320169237579496,0.9681953284449939,0.8017342781466554,0.9019213761635149,0.8483247306768646,0.8513890461685617,0.7257411017140099,0.8455716834989222,0.8470801583929886,0.7744180759972958,0.8275496088178893,0.8730826947262627,0.9048458007807987,0.8626972257092943,0.6205527438142759,0.24939955836876826,0.07036363308016458,0.04126583048575272,0.17960914187980115,0.36418800166618714,0.47903084079427605,0.4209250864597699,0.36611798377193994,0.3617655455085488,0.32949908276711093,0.39423228293503243,0.44072538832256397,0.4619012362725655,0.4702611158752882,0.47349291692230405,0.5544095298202935,0.5960368788418131,0.6880253625938106,0.6654039649188301,0.5562368176075433,0.48127051145956823,0.41994218965294,0.3459864036555275,0.31780889980939986,0.33695350496905285,0.13127808110367384,0.18029544548948617,0.20177984226785894,0.2297208133881472,0.13312757486019267,0.1820046136091933,0.1783186559088894,0.2349335035909227,0.2293872552706987,0.28107270942348606,0.3763196606200842,0.43096800919067335,0.4691083574451099,0.4616705758667856,0.4471691941076551,0.47808345706939337,0.4866230729365034,0.4507549298499669,0.46167243697186366,0.46548587013162607,0.4320029800638399,0.43793314145839635,0.4534453115027238,0.4300522726579472
0.5402727961994868,0.7825070985604046,0.8407316383602657,0.7958938925958801,0.8417558675325358,0.8728414396075839,0.8915492042251674,0.7489421273823812,0.776390575415065,0.7948143926817937,0.7146603250493246,0.7285725245919277,0.7651951528979541,0.7446180506208064,0.758461234273099,0.7632976455542413,0.8248071173105056,0.7158338813859036,0.6826800193917237,0.8126652948703851,0.7973990506658608,0.8046524078182847,0.7338707026132354,0.7341119204068411,0.6269426845821094,0.6608212613663371,0.6831805868658042,0.7697527871998634,0.8046271984897821,0.6455018364945061,0.297278655082001,0.07374711982346915,0.06893903510240118,0.07558209355612144,0.13788207954533682,0.33788047146571965,0.6393747485203538,0.7015892026903257,0.7561329347601724,0.7346879388365222,0.6907997911425001,0.7534968345749671,0.7551384470757863,0.8012989988639851,0.8002665942890014,0.7466537139360985,0.7601022777779937,0.7983489948748885,0.8551931314254559,0.8619970765130093,0.8048940541408236,0.7650880259023662,0.7427842989061441,0.7437784333875873,0.7015360041658831,0.6332244888839191,0.6481971204364647,0.6255509887359616,0.5683855270098759,0.5637882018317131,0.5715451256473035,0.564037919076897,0.5338200522736096,0.4758678332548245,0.4277925224444902,0.32492324060930455,0.21526311970311673,0.14437843495219171,0.12284809741980823,0.11103452937198713,0.059118402467946085,0.08790677108779668,0.11028253965954045,0.10340932955531094,0.15529796953918756,0.18950265324144017,0.23020705740621927,0.22508559807103512,0.2583326066927587,0.28380988054277734,0.35400650322214705,0.34106323736578054
0.4263401913188915,0.6366075810365631,0.6480947319075502,0.6115362972780929,0.609203020129494,0.6083875349770632,0.6828698114122113,0.6827970038995831,0.7347787498240196,0.7315975369117249,0.6497412566506635,0.7110963926303375,0.687076180251631,0.6546276486231196,0.7228954368281523,0.724147689255939,0.7375297369248636,0.65532619191734,0.666507479862194,0.7744303539360653,0.6973166933995844,0.6640305697365133,0.6638435668754414,0.7025802049687858,0.597931554461078,0.60455482258894,0.6439672862209682,0.6449735069485629,0.7774553244223548,0.8713030019525897,0.8455875332700913,0.6788617991535718,0.32804696152243185,0.07127556031072668,0.04447294157176174,0.045209837732208547,0.1594292114171474,0.4943062149692835,0.5991518065477148,0.5563016225583922,0.5298604366701479,0.535430714339446,0.5032019166122088,0.6098173743179672,0.6462124908805209,0.6299082734797751,0.6409839686282175,0.656516999639675,0.724161768617759,0.7433173293918562,0.7625083749180457,0.7599006921523546,0.6624640480205726,0.6178469006082379,0.5879189389513693,0.5485269141591145,0.5299453721471751,0.5578911359260411,0.5974037179962621,0.6132462832708605,0.5655184384062916,0.4822011976527324,0.43834310270132093,0.5079205504670752,0.4583910744701053,0.42209964283568535,0.4116300338912309,0.28720426476449656,0.3815848376790309,0.46843619898258293,0.4507805687385833,0.4436496242428245,0.4198426253361485,0.38156232173575,0.3945534835822393,0.39836516561627755,0.43581759102590484,0.4028844839752482,0.45162878578507776,0.4711546970010707,0.4974713449150372,0.47146035157265304
0.35589380969104867,0.5192127065737566,0.49837692233746306,0.4975449992702983,0.4448591544222981,0.4496412257750545,0.5162709114877799,0.5144354905070477,0.5440632872854485,0.5873041133774729,0.6570744522177674,0.6894846503876418,0.7097825862253955,0.6764122545896788,0.651200222867168,0.656638911744426,0.6251226244443788,0.5335962045661994,0.5313766859853855,0.5921133359943265,0.5296353902863531,0.4505989006425837,0.35172792211910914,0.29980300601213933,0.31039143343984843,0.2906391776471562,0.3191007246781586,0.4872836720624897,0.6938574541295033,0.7751080858162781,0.7620431807196087,0.8428000201508707,0.9921237804910051,0.9410782239435878,0.6989863681003019,0.5126642299350785,0.4236500343330616,0.4037259398816846,0.3712237107523506,0.34945039654198484,0.33485205894409964,0.26769340007431675,0.1303134147678019,0.13080418047896036,0.0682162817654276,0.16541260269537406,0.17595306792100962,0.23446017301908673,0.26250765109277546,0.21262148165363418,0.2845091543985083,0.39594217496303574,0.3616191729267154,0.37265019824216405,0.3553977904042867,0.3256978078950454,0.33232580114708743,0.31120915418896467,0.2528123634574501,0.3016358896141643,0.2988058635855705,0.2766427160597057,0.32652359708133116,0.3833121050277699,0.3679089575221711,0.44338423276029815,0.48184886020321915,0.6133868452700599,0.6956471471655139,0.8016061256826167,0.876284124723679,0.9214041900956823,0.9138888456553398,0.929862650716512,0.9197956309190247,0.8824257921134357,0.8846858326527685,0.8805116292820777,0.8625401364231963,0.823974772508814,0.7627819530946849,0.737943783518579
0.3370054388518028,0.45777178260103313,0.4970478005044213,0.4876770204563707,0.5090280528948556,0.5143956408262006,0.5734853340474342,0.6316296995431028,0.644711780340849,0.6360321321313199,0.5941263502191303,0.6374787820102135,0.5976301619279656,0.5728695373222236,0.5404401521870904,0.540569486124823,0.5138248320627776,0.4353285478158893,0.4107532687277971,0.41276959621068315,0.3129456651655434,0.3793911156061654,0.34604103056356905,0.2964846699742342,0.2754434446495084,0.2716257861339212,0.2800863607688835,0.5059556781595236,0.8515587808206594,0.8675914257207246,0.6473925987555904,0.4438098096155238,0.2607756993984174,0.17091291013212284,0.13695810725887192,0.25684354390720476,0.585336744858925,0.6399715981067525,0.6202944925303953,0.5745882207659898,0.49286388355247424,0.4858552238061281,0.5043667284645321,0.5615485833106204,0.6316795439242755,0.5961245842786504,0.6050823160232721,0.693063183906506,0.8058940929815076,0.8445009904855976,0.806124671065839,0.8050295424363745,0.8180817571945548,0.8083896879692352,0.7657442386967777,0.7497424463178513,0.7923240333657828,0.8035231453037377,0.7465726213599364,0.7614537193989208,0.7912876514841313,0.8249862702584009,0.775161457561758,0.7550948081463373,0.7459773593661679,0.6436807338412964,0.6308400110713082,0.5881953529948019,0.5547119307382131,0.46578701024741187,0.45272074382424476,0.4369103316731072,0.45836004328962765,0.4425574575606446,0.4383015482981694,0.47240169979178215,0.48774980164355425,0.4833962087234629,0.5441176031561128,0.5736470490280287,0.5756106894148577,0.6045697598817915
0.6805224483487489,0.4924033014142894,0.4930569101352462,0.487145731803113,0.4610413235592827,0.4251152356721094,0.4707480180125058,0.4552443045583769,0.49732322947502505,0.5600870985965553,0.5700357980148875,0.6951810995932681,0.6573437801574363,0.6680569761776056,0.6578094480636458,0.6084355036300445,0.6466903125592304,0.5653842361559738,0.5564871927781615,0.6182957322475229,0.5483208871539821,0.5594263044008143,0.46771150245729,0.39620796632880123,0.3489591150995991,0.41031774411672567,0.46847209802039513,0.5277529994607152,0.7190717904310648,0.7967980963452914,0.8090633593112391,0.8206235161077585,0.8726621966563421,0.9749414295377696,0.8991154156240637,0.7722216134951779,0.5535250711594257,0.4392009046263925,0.3978662575021613,0.2780350455359677,0.21352776195375456,0.2170971376687495,0.12673323428399008,0.08643497137630274,0.0447774283928426,0.02747938950561002,0.08177198447098377,0.09789799683949485,0.1285326905965558,0.1361582228538108,0.16826902310617012,0.24757961205477516,0.2797299640420662,0.4340951282951534,0.4739552324361757,0.4457729138086221,0.39006827115819964,0.39149117800780975,0.2934870810094327,0.32937701484595927,0.30939953465029657,0.31855789687243763,0.30500250882715374,0.3375282218764841,0.3532899696569427,0.38142153728614325,0.4440934260389273,0.5067837011958276,0.6072226350083594,0.7089208393998934,0.7577883491304401,0.8185434494579755,0.838768079331456,0.8552841801426335,0.8877034990799277,0.8753381070061665,0.8882252504108152,0.9053968469145897,0.9019510225532484,0.8689344214405109,0.8269979289177368,0.8022078118616083
0.3425034321798502,0.4917817198324364,0.5140531381576398,0.4832556559859068,0.45267873719730134,0.4420709679691635,0.516955333864671,0.5360881173559098,0.5685998260788108,0.6876414433000163,0.6289224955256537,0.691259063734933,0.6592589279427867,0.6293509885997206,0.5743491473566801,0.6165561741031209,0.5704155642457368,0.5117869011555665,0.44065636535601865,0.49739672369011534,0.40004186642532913,0.30203311297644486,0.2874888454127307,0.31600564175759027,0.29372135029577656,0.23835414569708252,0.31747005789328314,0.4370452541098079,0.6650546580435018,0.7986952207515525,0.8809557195035735,0.8311337202361619,0.566484200124301,0.3299526479610667,0.25812301536945625,0.2456258806299514,0.3029282261327906,0.5029694643649985,0.6335634391512986,0.5581350514382057,0.4200005335741869,0.3699772538598104,0.2595054482497753,0.3334944463736851,0.40796612224325135,0.42599012505564765,0.4797938448874713,0.45937875882293955,0.5038521808875778,0.5740838034931846,0.6909193550067426,0.7173896986595757,0.7345063098880007,0.7053240442805112,0.6542487166801156,0.7103985638521648,0.6451335977510589,0.6896278482780733,0.627305327806152,0.7582004129930215,0.7149908805654298,0.7768180611745411,0.7436337297390649,0.8302286134177153,0.7812486978700101,0.7502758540603118,0.8548267709365942,0.8225271804983605,0.7956352502437587,0.7244818699475605,0.5979206914916151,0.6040879446291716,0.5597763015667965,0.5260728763744837,0.5259074395348886,0.5248163069368497,0.5363106510970437,0.5393936838231348,0.5649723674600202,0.5735506565930164,0.5907785696795753,0.6090761726562072
0.20641333657166042,0.3086463854958901,0.29601273699709596,0.27458637874151576,0.30778792530446925,0.2779591924158032,0.3591869103403449,0.3654284887343466,0.3658681112901798,0.4028510173560952,0.3305809839046872,0.3463224347375883,0.3306876138294117,0.2989669548527414,0.33652350145793897,0.33077357289638454,0.3154192583440298,0.32080674308362506,0.32628040278670206,0.3884056251966201,0.2905340268108571,0.2712524278554695,0.26236177060481924,0.27510462371580746,0.22178931029961213,0.28875711149783273,0.3169940794804005,0.46494972528763323,0.6948701804953021,0.7797788557154778,0.814190606024785,0.8513045542842831,0.7488805445278774,0.5312538360301173,0.2865335464434289,0.244864732564802,0.3964707446778024,0.540807093823572,0.5615840320323205,0.5428105453518208,0.4511356139235274,0.41342683744012276,0.3921558942721165,0.4149972269886785,0.4340199731137936,0.46946428188823786,0.4953932534638812,0.49156373958639576,0.4963994167325688,0.5506779322458422,0.6493264031614044,0.7327961805770564,0.6456167891356527,0.6550492339415928,0.6664904280418891,0.6005652568216056,0.5205385524586893,0.507494246777057,0.4779239535256586,0.45536834586201935,0.48484324248884736,0.49109518036030464,0.4623304143065625,0.5264710818816989,0.5474505213947326,0.575608111925235,0.6504066941660958,0.732431853529655,0.7785298245766334,0.8674919211232383,0.9133603291207417,0.8831598560142179,0.8696798628669566,0.9225382966285934,0.8984576893986962,0.8858642417916403,0.8961852437139481,0.9032216808132069,0.9138726671512251,0.8973887483723787,0.883129746791652,0.9137574179625858
0.32690607468234106,0.480865519750191,0.49314160284624164,0.47584663144958644,0.4811175453905903,0.4879984075375437,0.5408147543940645,0.5396673865689291,0.5614295727530828,0.5782633769154771,0.5449061731809786,0.5633551348573278,0.5242816847076046,0.5441646084289823,0.5156032372805621,0.4894077237622764,0.49093357602983084,0.4446698613766499,0.4425120011941262,0.4919671379580102,0.3143165706887237,0.40372703367470025,0.3559313458392296,0.31187648988559175,0.301171687984921,0.3166500753540682,0.33201708151642784,0.4483317745621912,0.7163123440358484,0.866396601969137,0.8764446536369227,0.6831075159372512,0.39554697105221326,0.24042941049236455,0.22415331659690552,0.263104179410079,0.402495365896437,0.5841243007383151,0.6045342175727926,0.5366774087963354,0.433001519625282,0.3601600034395359,0.3169491204127487,0.38697752533800844,0.4389282686436895,0.4974378709353343,0.5138007487156864,0.5651757015655617,0.6262154028905761,0.7223012855408334,0.7640058420650141,0.744807431783768,0.6965633457283403,0.6341918751328369,0.6158689856196242,0.592224858542459,0.5811373882177535,0.5569905676581406,0.5304991230679037,0.5675601565700785,0.5676958302888345,0.5886866692351577,0.5789857942017025,0.612322105683607,0.6492719802168448,0.6567472042454399,0.7079980416761902,0.7474277330661068,0.7572913530489462,0.7788742277426753,0.764042280020918,0.7280563201285405,0.7075456416578745,0.6717067927670682,0.6781439796775401,0.6740299143812423,0.6639536623766027,0.6371094506433955,0.6502525309999647,0.6263835409924414,0.6367018920645898,0.6345368252194186
0.43263584118371373,0.6364891913591126,0.658739397807534,0.6217234677659245,0.6198039781242041,0.613033335246925,0.6730716693988441,0.6700204999026491,0.6878040121392199,0.7411230321789011,0.6098651141600498,0.6501242345682956,0.6451010633029,0.5962422032836563,0.6096269815555886,0.6156440920616256,0.6552106416928557,0.6005396953749212,0.6301092261828127,0.7270825843479286,0.5895982792967814,0.6332031713288794,0.5900185914914011,0.6197959844727121,0.5200995262221135,0.5390863219885724,0.5971940232116347,0.6317620195045861,0.7713946107656098,0.8200830603766376,0.8545195287310813,0.901364854285579,0.7844704542042412,0.5077286463568285,0.21806285983339913,0.10835357508163534,0.18956091510505702,0.39966427541476257,0.4223288771924748,0.427916864665267,0.3228303303176012,0.2811035182289431,0.25931579467786203,0.2670618288912182,0.3178056424260548,0.3514994774468935,0.39097887078227744,0.420092782290009,0.40388613284606256,0.4219068434003827,0.5639396582155511,0.6819456800507142,0.6476091974069726,0.6565095149735788,0.5571352930098095,0.4729885364572008,0.44104119350437954,0.38385131116046545,0.3218048278385857,0.3241922324059655,0.31616127010300754,0.2578488701580379,0.24825955470231187,0.3269514129022637,0.34471525765454014,0.33104891572877027,0.4040091743712375,0.514585441503634,0.5961589910147658,0.6368444310634866,0.691969414793947,0.7166621743890175,0.7180374245701187,0.7080265905941227,0.7126737177115687,0.7007705238390314,0.7297682421827723,0.6663414950814504,0.6854542764743734,0.6611634433007603,0.6529936677570672,0.6042213397150293
0.6778479700065727,0.4573626193198337,0.4444185157707185,0.41661384902112314,0.38226076580555673,0.3525375520264326,0.41413678157174777,0.3905834445861867,0.45558405306006144,0.5564535267128661,0.5612775512309105,0.7117433619260582,0.7061128342717086,0.6589568077665927,0.6622969955023422,0.6564313813032691,0.6452285684454447,0.5038501602447516,0.4169380802607821,0.45368960302807115,0.42709115807423437,0.3791461258266939,0.2961786243113136,0.253196539297915,0.17331271475101678,0.13971875261995814,0.15017159923724566,0.45677808339087966,0.6436432563728319,0.7270606746828385,0.7708247651601963,0.7939871068595756,0.845771967356413,0.9494670916270038,0.7900815501880201,0.7300010159218667,0.5465012947977674,0.4506557356698817,0.349913216925008,0.2294596890324493,0.33427230163915356,0.3232673728080816,0.1936030644222122,0.17978239055220868,0.11818729216906243,0.14478187276367505,0.21146511890890052,0.21934091047789517,0.28184063174859375,0.3184773195429116,0.3535552348939421,0.37916879572083495,0.4340078699373405,0.5039027427078182,0.46907792605423865,0.4641712481927012,0.4689451066641914,0.46499448036482915,0.4638181366447464,0.5295787336931859,0.5421494786665418,0.587061484726025,0.5624732227104083,0.7034678138937092,0.7122538120822023,0.7247095293734693,0.815885297762555,0.7691372081907935,0.747670728719011,0.8085060796393774,0.8853128602843261,0.8205850657120906,0.8452737944850546,0.7528371728647127,0.7433751428175281,0.709086739133616,0.7028767321321245,0.6925468005583217,0.7362715771608049,0.7461610542945255,0.6822846707520281,0.658690199825831
0.28729689814528236,0.3988263914308138,0.41300074903905204,0.403019075120999,0.40935793235613416,0.40925442176851734,0.4749655948266889,0.4943927550223413,0.5080441956932366,0.4668363637197206,0.4500503247302791,0.4913112568758201,0.46439118576238136,0.43889362179662095,0.4299474817097183,0.454525792690038,0.462912103935879,0.4135348857286141,0.4587994558754921,0.48551172909308626,0.38237923819575487,0.39702120727664086,0.4159305857962735,0.4047918342054452,0.3565485570662974,0.3720699735236128,0.41024831539616957,0.5236923013026487,0.7661371356312299,0.8298957471798001,0.6873901487927708,0.37885483635272077,0.1180349673843536,0.07245964404834093,0.12749657504310952,0.19465888031991607,0.4869887440289704,0.6560024885036189,0.7118304825784686,0.6987856604016777,0.6690573235496635,0.6421076063886437,0.6739488082618941,0.7227957463972938,0.742471219951878,0.7158207332988336,0.691180532207296,0.7361385810405134,0.8086436880471413,0.8366089431237693,0.8394121584983406,0.8275026873972318,0.8017329253358154,0.7488008214660281,0.7580826925127482,0.753593932502113,0.7030755194720733,0.6672060695354611,0.6225577777696183,0.6616769088778072,0.6552782637444007,0.6785858312856664,0.6535092112734002,0.6851129079453029,0.6518004321583418,0.6114889797367764,0.6041344969445448,0.6076773021363284,0.5803641010484681,0.5325061609875295,0.5237964042739455,0.5135321388185788,0.5016995522225243,0.5122124352216798,0.5213441387458277,0.5504615934639792,0.5847998532175,0.5951489061415425,0.6383372857654215,0.6642273261596628,0.7030463556835144,0.7122625586058245
0.3993902262321053,0.6057981869862488,0.6025278118080045,0.5679277906306298,0.574904976135776,0.5383987820750977,0.5996580579899703,0.5955759360490571,0.6604078581098124,0.7233700860254959,0.704942888735832,0.6636452231158614,0.6866754636859069,0.6946359759729012,0.6377139756843645,0.6479722723521331,0.6228470194047293,0.6355493269138432,0.6299257824589153,0.7106607053178122,0.6699027549180885,0.7247317715658556,0.5867309486210962,0.5393498029581097,0.5433853213900061,0.617408263513874,0.6301162631594862,0.5996908266483103,0.7730542344884772,0.8290033680806235,0.8703986242838366,0.892104291131246,0.7215625341526349,0.43047395218702206,0.13592166356413315,0.0189534481571354,0.023714115072500874,0.23766893813017198,0.4107455686395408,0.49702272496733046,0.4456064658303117,0.449452763863184,0.43417983807362304,0.4337906516415025,0.5167966658666182,0.5444017183545885,0.5586216204213938,0.569171083928204,0.5765184176535489,0.5825122436954255,0.6278699518963358,0.6968236813488617,0.716252690345877,0.655648412745987,0.5602654006735739,0.5234479263885776,0.5281899697326663,0.5016903352156464,0.4604488325726727,0.45830079252417444,0.4579883428731517,0.48743063919304996,0.4630546789540755,0.5162790069406755,0.5049731590522678,0.5410829754665869,0.5392630571082917,0.49896426934591664,0.5634235158146195,0.5469196081520669,0.5066626713798799,0.49088503464380323,0.47161727510020374,0.47130954072112496,0.4974803191071654,0.4913008174011779,0.5176216954219668,0.517357623220157,0.5446878743738451,0.561204032866552,0.5776888732723727,0.5803384827055085
0.6774185828192292,0.5081446189522902,0.5237075718141857,0.4791559065567091,0.47838607091545604,0.4368044288842137,0.47540699180505686,0.47343980285724613,0.49529058151549665,0.5670803642347825,0.567457744395955,0.7067240109749562,0.7270541769325958,0.7096851851867472,0.7322651729270115,0.7255686102322702,0.6639354995543076,0.6181765272479128,0.5565290835962751,0.6502173666355794,0.5795999526125218,0.5920741077906679,0.5219019586279638,0.5113631098722902,0.3515947947114963,0.3703127680048828,0.4082814299236067,0.4974327448203889,0.7148985792552542,0.808285031024282,0.80309829942851,0.8163790160433183,0.8743656012224045,0.979907984511437,0.8935328552726236,0.7940259895570849,0.5494424746399613,0.4062833843710303,0.3269605528524332,0.16584331112984652,0.14549453866750206,0.23106292980209253,0.15660407775347418,0.11403547201980102,0.10899975085649283,0.09045368084503613,0.15846894334195377,0.17409913172142866,0.20462838256273597,0.20959699810891436,0.17547280853205885,0.2420661835885451,0.27890383129033935,0.4617483955097774,0.445496614464104,0.46311990169435185,0.4199936697134632,0.36467199255419736,0.3558264886121219,0.35956978309134147,0.35092781706070764,0.3790070740887296,0.38006395596068887,0.457561033871702,0.4154490596243353,0.48100462887820994,0.5199306816691236,0.6173363097246787,0.7063207378537952,0.7390855309572105,0.7516789580143901,0.8004482406769418,0.7917913251654394,0.788127099317361,0.7975392944948998,0.7575120892916227,0.7660724735207514,0.7537626710040911,0.7813043410148356,0.7507332519979869,0.7308598642645823,0.7199445911007217
0.27903826220119243,0.4078966796060055,0.3922504890319709,0.3277184260453277,0.36792675410536324,0.3418790319731842,0.42141329991680304,0.3913426019812826,0.47776312713313224,0.5491769209589096,0.49626289087665043,0.5005827196069841,0.526454562537729,0.48699407217188306,0.4311369575941108,0.4806959013916291,0.45182144569755045,0.3852738880595351,0.37176069620392416,0.4186341647738041,0.3469484578825696,0.2842521735865822,0.1571745594484822,0.2124485024835499,0.20028515445132,0.19223402039400073,0.17556420712030496,0.41131537424431847,0.6602803398229067,0.7343884861543364,0.7761741865271948,0.8814265662228823,0.8999947139302036,0.6987663726339534,0.44487365513184435,0.40160737788662215,0.49164669158822805,0.5267382693236622,0.529893154398671,0.5263071531897525,0.43217534470409236,0.33549372139003497,0.24756676097149943,0.18992329260187268,0.1934360116939685,0.24041656648089638,0.2944591408803144,0.3192572032334282,0.30794897931948234,0.32799829246023693,0.44627706872425266,0.573336252754777,0.6025462776233292,0.6103927711710648,0.5629492340299522,0.5440981538925556,0.4719819768411808,0.49407061144689135,0.4533574933327457,0.4557187888498383,0.45231433258641696,0.5066392494257906,0.5015878197441099,0.5451688952191021,0.6090059482756912,0.6419172182253337,0.6927417010651209,0.8385275720098895,0.8851349245088029,0.9452669620741109,0.9771668184843592,0.9616833069505497,0.9472081736296618,0.9297019313001638,0.9064142486362019,0.8658668119885051,0.8748648711263703,0.8459530069729959,0.8435253368976654,0.8070624570283388,0.782687569355031,0.7634485814307875
0.30819302335025706,0.446316792369556,0.4668580801654445,0.4794589480970735,0.4963610882545747,0.4880919157023555,0.5868384587817322,0.5368014696018535,0.5008667542553624,0.5510724063041518,0.47044289491064567,0.49656184623183125,0.48515754797440486,0.4369646063596055,0.44201993274474305,0.455743342679173,0.4463612444910286,0.3375201154693416,0.30672333240893146,0.365124802682563,0.3143593354548733,0.27997393601696047,0.26313896920677754,0.26744667165235253,0.2225598643076822,0.2461425335558824,0.26929448294487557,0.4675180227957785,0.8050809243845651,0.834918641692275,0.5958977446143601,0.35122514251969983,0.24278125174704157,0.22093510879139433,0.23445808436207327,0.3403881347397997,0.5819936561214302,0.6448195811968661,0.6459427915811411,0.594886897649641,0.490094372848885,0.47300912087316616,0.47534191851876506,0.5535098540409142,0.6068820181866146,0.5871050319840591,0.6238667408497546,0.6919241912799676,0.7878220394057145,0.7845086457109977,0.7753293594669926,0.7643473600693533,0.687462030416951,0.6839176635864052,0.6536898015281678,0.6493348914709982,0.6330806008170131,0.6014952034581867,0.5619732134879867,0.5950716016255964,0.6013317095498564,0.6426003473266352,0.6274717772650347,0.6714134378343799,0.6923660780095645,0.6960672245472228,0.726514750959903,0.7643260277795121,0.7730137369000687,0.7695999825073677,0.7185213969991434,0.6988514661883016,0.6782897165365482,0.6488407792035772,0.6368486904846289,0.6443214221923005,0.6494692749907887,0.6313550203955944,0.6587716650966303,0.6648947159927561,0.6777520112602692,0.6681123226573672
0.33335301349727897,0.43736921702690457,0.45154223647621516,0.44852452714929064,0.5505475496750999,0.5058891472334895,0.5132489099764077,0.5371158928729077,0.5253892154528479,0.5949446654779168,0.5102879797525836,0.4753391177684858,0.5364037461296914,0.4995612653573731,0.5292856100248431,0.424827235428274,0.4119874995974983,0.38435765813741674,0.45882033384427023,0.36141819288422633,0.3111318589023486,0.30183242116029096,0.35213579589073746,0.38318942482775725,0.27081642741724815,0.19746666607575497,0.2309352145618237,0.4560670015196081,0.7486626494697065,0.8888216083136353,0.7867270641072078,0.4894361810549898,0.2874313348634694,0.23566247046693434,0.23591481244196788,0.2924922920725047,0.5126881010435187,0.6589008848669792,0.6524756037337048,0.550584618058405,0.46618558944382193,0.40009954292135286,0.42770609609709187,0.44298614131672776,0.49437341590817746,0.5387849628499259,0.5312531428323894,0.6395400966692331,0.6942736837496337,0.7392908218562526,0.766819143403374,0.7741820979473318,0.7353630182663335,0.6511498715139412,0.6479632591158839,0.6477294011685639,0.6840918598281427,0.6506003457530664,0.5936029853632505,0.5821434202354794,0.6261201711887997,0.7422270475850282,0.6257237649380298,0.6722987882181335,0.7195146931618582,0.7350760823656957,0.7685684436648688,0.8501439074838038,0.826182421834462,0.7708199268320622,0.689565404648597,0.6995347383319582,0.6613321165852719,0.5960177300171494,0.6072752529154015,0.6088218733432722,0.6273952367983863,0.6222212828089145,0.6124886163748625,0.6181665718291804,0.6345194873805782,0.6270671502296113
0.27810814343318135,0.4256456564341955,0.4464588238846927,0.4185664670553625,0.4014245853441489,0.35579592252601666,0.3950409826621289,0.3914578492953637,0.44578378716384376,0.5048196183730967,0.5199387649989953,0.6541896582755079,0.6086100339231535,0.6304581600647701,0.5995343411257736,0.5660774236113761,0.5526119753811619,0.4653876792932159,0.43189611517358,0.5141310333113965,0.4480075424445764,0.4120994020699308,0.32007308988628885,0.23662060943015067,0.22208920360386986,0.2610157824349845,0.26872498973786857,0.41763108337008653,0.6834610578267735,0.768134690254411,0.7747510012932256,0.8649480229624923,0.8879073276032533,0.7566065711624215,0.5013278018112447,0.3970229907969083,0.40050393368617865,0.3700344492729474,0.3972600703655067,0.475854602193687,0.42208869334037025,0.32008459982994275,0.22227352965255864,0.1860497951149297,0.20298397984232697,0.25759525583676346,0.34036878332942644,0.40549062475244785,0.4235052666209026,0.39543727679530105,0.4859199244875131,0.6534801627094844,0.6893011174302176,0.6938782224774208,0.6845448851089753,0.6173903391380393,0.5952717439547833,0.5727318080591364,0.5261006935902566,0.5797248837270685,0.6299345186366442,0.6313038819075226,0.647619035653215,0.7106109279039585,0.738189148467388,0.7089234136766225,0.8038102968366228,0.8392291450464628,0.8038234102220403,0.8597612524391126,0.8090856945743574,0.7717929504410909,0.7217662170843588,0.6940635004186632,0.6896020946498859,0.6874032226078024,0.7141278466657902,0.6923396688739134,0.7078739511620682,0.7212644072855806,0.7095945641774031,0.6752354436514096
0.6772919410997722,0.5432480592874778,0.5489457392837449,0.5103023422428719,0.5104611417184134,0.4636148465581221,0.5061193193421478,0.4952261247030198,0.5384631296365637,0.5883765048392928,0.6064689829460576,0.7392773671225363,0.7005973031317835,0.7074697984912931,0.6875345215887869,0.6622086949091239,0.6576767782816039,0.5834242212439726,0.5639380857114981,0.6479502125882983,0.6032783938396029,0.5922118101072169,0.4962244421886175,0.40788338093877674,0.3458004433853553,0.3939385676174523,0.3857890105767856,0.5152142148168551,0.7179288012169194,0.7857024624896034,0.7952160936741869,0.8091667794145939,0.874231737381849,0.958673800931419,0.8408486237765641,0.713932405065139,0.5281408446506337,0.44621463461524113,0.40203334127684176,0.2862363921705301,0.22831983174950277,0.21596773337364106,0.12807252945193948,0.08920284933586997,0.04980612335518453,0.033964809202648216,0.07665596282924436,0.10483703234539093,0.13453390637431617,0.11133392160146066,0.13411426269759708,0.1853633410060956,0.23694352521133052,0.38950685060455825,0.4189956409329095,0.43510245124270036,0.3797833081592392,0.350930096582321,0.27537907577599,0.32682246830986095,0.29626448807178407,0.2957565771591343,0.27415986842849194,0.31992133747152485,0.3268995516062493,0.38083911644202295,0.4467827075633217,0.5448843900803524,0.6519190543703135,0.7350113597876349,0.7827968927153844,0.8197676295637845,0.8529169698744277,0.8741325365642006,0.8924615499926942,0.8828943946876069,0.8873122054688616,0.8787252191909967,0.8775106269336644,0.8301891546402165,0.7786888376797763,0.7441551390106746
0.2884106267069723,0.44240056366712016,0.44399892290637544,0.4533639489065241,0.492931836607817,0.4622885037005988,0.5356074731079836,0.5226021056878875,0.46354990348329606,0.49877931663578695,0.4731031284209968,0.4737162563333545,0.4532395645987569,0.4850640920426451,0.4611546912790129,0.4760011822478134,0.4719915308813796,0.49167834915895764,0.4426180805133402,0.4585065193108684,0.4383393053242728,0.5229112728148734,0.4242982349779424,0.4116483784737172,0.38234131253043074,0.3335512015207725,0.5103752327236185,0.5284741705376699,0.8096873824054266,0.7299809631425216,0.4407397838444938,0.13284200654836642,0.04226831523805363,0.057581252981084075,0.05444489530604457,0.23477822869919895,0.6661871501495409,0.7574239772550977,0.808000520511428,0.8177535102543105,0.7776955655221431,0.8022545889026078,0.7849195374236239,0.8412848115106244,0.8438024388933986,0.7774582195580081,0.7725836056213014,0.822623243143889,0.8355501034490722,0.8157380907221133,0.7888937710197226,0.7857327606753041,0.6986219273364694,0.7114225204051416,0.6651183472424034,0.6183648904917289,0.6851483602091566,0.5895344160468282,0.5638380863909689,0.6644590702302267,0.6302878808440707,0.6412847556105995,0.6065560513562,0.588561254083652,0.6586433477483379,0.5346220945091031,0.4996923730199627,0.5045989106260629,0.48209473816710086,0.4939072504134696,0.43136800517855833,0.4779363479698181,0.480241853981844,0.4673656122983837,0.5080161265990191,0.5261118820246615,0.581592061870562,0.5714346850970409,0.6291308777709761,0.6543093004748438,0.6798848720089197,0.687377920195117
0.39075813866243164,0.5883824772130563,0.6406763803974426,0.6380879900664866,0.6806057905577534,0.6773024868389316,0.7863911974883568,0.7732898124462004,0.7238539970513347,0.7548413872553711,0.6737187310607271,0.6637453761796371,0.67416370021896,0.6168987466634301,0.5634089896279454,0.548823527837686,0.5389818053306848,0.5025949743579298,0.4070974291069025,0.40718004261014357,0.42974444511889326,0.37599784184304563,0.3608048478984539,0.3627653387919121,0.33726224281972217,0.27354030359409987,0.3215857747640222,0.7058371806058152,0.8506448197967454,0.6710329908910817,0.4209179690907462,0.25884251748710985,0.19275563724530487,0.08187070460267731,0.15973506749755395,0.443002136609259,0.6696917017161945,0.6826684680887,0.6961000523759703,0.622341146705056,0.5631956051019059,0.6151284448681713,0.5890655925668586,0.6933010415951313,0.71509134882633,0.6794966409000769,0.6998191979771368,0.7817711339864177,0.8481143598828127,0.8005281735157834,0.8009591936885845,0.8075904660545979,0.7448138705960827,0.7886558699015798,0.7475316485089554,0.814334239662379,0.8119400269297705,0.812896583046129,0.8591830640117595,0.785764828456821,0.802995429961089,0.8952236843461049,0.7730125354551016,0.809739008257089,0.774563234233533,0.6108293287229876,0.570886252696154,0.42394765049715244,0.3559175249351983,0.34383079658510085,0.25838197402675384,0.25627241313851346,0.24698387065856253,0.2527741948826327,0.3008705575643781,0.3162215133192738,0.3743222780285059,0.3406630567738013,0.38570595767434424,0.42555137120722397,0.47472970357780875,0.46137372418347083
0.40184326638249823,0.5677064984401996,0.6146878968395364,0.5949014902662574,0.623810892559921,0.657069992072279,0.713980670009909,0.7382284288998716,0.7239224039886931,0.7398212607235023,0.679088449522011,0.6859829938364707,0.7156108524008169,0.6396278337596817,0.602302366032546,0.6146675748719628,0.6352768515417406,0.5411888969884269,0.4911348605302359,0.5140725188648902,0.44604889432024647,0.4866822403990031,0.38345486274389723,0.3881641122212342,0.3907157762987725,0.37509158979594537,0.3150797525199234,0.6020399679005574,0.8638607088309689,0.7825527943563978,0.4919034016801065,0.3025390722090785,0.2227933125731839,0.14617269898238794,0.15061028281183952,0.3582723489323958,0.6165368429861395,0.6569183112427657,0.654990634633165,0.5717253925995979,0.490310247783617,0.5061785641157457,0.5473910720263918,0.6428626823540926,0.6927053026010996,0.6417694076699845,0.6824493409779655,0.775612832988726,0.8253561937938955,0.842819376495139,0.8521209637245626,0.8297167106881563,0.8025644642128261,0.8890036395637518,0.8723763059210023,0.776680702202484,0.8001135131596604,0.87706552523322,0.7835927412297612,0.8464048901892152,0.757246330776321,0.8096338313150385,0.7081982166482184,0.7539769821934024,0.8178343925255026,0.569853847788639,0.48878238504288185,0.4586374330399543,0.3865149575676458,0.24650695158409078,0.2534803576077278,0.2598945565356879,0.25838329234735097,0.284715701681325,0.30410419120827054,0.31083709785942004,0.36286066594432387,0.36927780821921086,0.3948111507947182,0.4205777015315296,0.45840018444402186,0.4656977766411885
0.6805130251323883,0.44710693557595127,0.4270840631675378,0.4070814881449388,0.4037872897484037,0.31190351010856915,0.3969458997074995,0.3942656704646271,0.37827957090915754,0.4539854110102265,0.4577454629563605,0.6050404899629408,0.7130431371401899,0.663500223471217,0.6958098569608531,0.6649821269998744,0.6041193772314745,0.557403487540716,0.5123505578918822,0.5839233319822847,0.4248452904264131,0.39823191754293213,0.4095141008473111,0.3834742718877259,0.2777346078092881,0.22475748596984418,0.20907862201994631,0.4378735311252396,0.6770243112688293,0.7557845727219009,0.7700045272681403,0.7935129197040723,0.8372820503264046,0.9365401358612505,0.8919374317622274,0.8598174477712575,0.6241472045780472,0.4675631786898704,0.4082002598816703,0.259698055677836,0.2366480182142343,0.27538971774368515,0.1721563302267225,0.15378026079162332,0.10763092091435222,0.06487724168140685,0.12009916018305178,0.18489557832590586,0.1930936085897368,0.2211725172849762,0.23558134778208215,0.312200738883887,0.33614267458853586,0.4123508483569617,0.5202635570762304,0.464295352291665,0.42189376619617525,0.4555277513927428,0.4583810352571988,0.40909164770559925,0.43676753754823217,0.5240234650966104,0.5486537141207164,0.637490133562665,0.5016048077352911,0.6800986259531032,0.6825667793433936,0.826269516054184,0.8663048397782556,0.8779712864186434,0.8693151877935263,0.8554737811260473,0.824170430325257,0.8163978941357684,0.7468154046006661,0.8006529063010648,0.8057490677874917,0.7462485015172702,0.791322670092272,0.7315141410077779,0.7683746422535921,0.739365147959703
0.49799044982649854,0.7592528172058561,0.8578776395776875,0.8123029785387943,0.8307349814526576,0.8342286625282536,0.6678901736170983,0.6526808827503594,0.6172108792401197,0.6590053902731801,0.5937817047464143,0.6605191495799004,0.6851435344213943,0.6909844946653259,0.6725215936939979,0.7338007014485245,0.7085670133098407,0.5626756151556663,0.6284928915757384,0.7035468749747686,0.686044064022754,0.7431291450237104,0.6697203239279839,0.621822248038443,0.5741793148330799,0.5984137508071165,0.7258979640494857,0.7765827919149301,0.7074166647580984,0.5003685301227399,0.18429376469889214,0.05276401317840285,0.10561626223620879,0.15330268345962705,0.20143315875291778,0.37445628800101993,0.5249897688622631,0.6438839052323959,0.6943537010990686,0.6759209765226609,0.6714504026241701,0.7240911318818282,0.7140811377986488,0.7646745103795778,0.7531649049335005,0.7695285178298928,0.8127222257978564,0.8667422937686601,0.863225121915159,0.8413926399153053,0.8091035295750932,0.7529706152658417,0.6723734461244073,0.6078308407362005,0.5315194149538596,0.47478476964880273,0.4900101251111062,0.4284736976427792,0.3910506417576339,0.4383629616812248,0.4445050163814048,0.4141407633392863,0.3759388113447645,0.4115851391710492,0.4488713589527543,0.40978484952558936,0.41788661624158063,0.39481404609646176,0.4365146320299858,0.45225523621979213,0.375050189054029,0.39232919703587404,0.38362262470595937,0.3679498533098852,0.41814732309611286,0.40887044317447896,0.4092787914007088,0.36469513530520037,0.3992162848872456,0.4168350762726918,0.45403124830426606,0.4305693631324949
0.24774229198644165,0.3725284431972067,0.3461219396378253,0.3323849922284773,0.3596844506956245,0.3657682749095583,0.4205946081676082,0.42442364726797627,0.44327871641128536,0.39691609656170457,0.3728663828448653,0.4259147586948402,0.39022558078864333,0.33887227626794725,0.39062113922416897,0.359870179355207,0.4056537129556199,0.33851614039069844,0.34429196086967984,0.3917277660150267,0.35031439745255505,0.22883332390016625,0.24349712167904974,0.3258196250925236,0.2030859430985406,0.2476947024626846,0.29633243463880626,0.43562854254728944,0.7041183216519964,0.7756406408566653,0.8317503522862496,0.8229909517340396,0.6112474815358749,0.3305115897759622,0.1673443216243592,0.20431326605824096,0.33026651397338425,0.45989276509417243,0.550734242988082,0.5605200874138982,0.5151432471947823,0.5222942380196367,0.46985581603684706,0.5050341095201566,0.5757378968644112,0.5685071883786093,0.5760286463751584,0.5663285832826626,0.59567487961431,0.653003742926591,0.7203092450315973,0.723500347702203,0.6879810184442113,0.664573833270546,0.5934852388638054,0.5527497952921234,0.5711330344483988,0.5201544018770357,0.456559549992473,0.3779289499773767,0.48527038361870367,0.4746877098175143,0.48312266914080926,0.45948268972337747,0.5375881231972247,0.5681557928680125,0.5886191974340471,0.6757606745624174,0.7608977184347834,0.8097169441020063,0.8215240644353784,0.7880447139086633,0.8132554708859714,0.8091179217167433,0.8273922855148734,0.8097510274097204,0.8448303034751328,0.8471374135699565,0.8835374380495804,0.8661075819049903,0.870037501924747,0.8673724086806003
0.3460491896329638,0.5104777142861447,0.49139647968311556,0.5751462713039013,0.4670525001974287,0.4029216659835156,0.4845253073401677,0.519750697681669,0.512084760132235,0.6112194885358818,0.6381271707796333,0.6871645941950576,0.7065932368582597,0.7221083123954707,0.718162872565066,0.6449191155829739,0.6173601780662871,0.5611402911971844,0.5397220774863923,0.6301896706294325,0.5452132049737388,0.5081567091291916,0.4268737348565541,0.35659362694462343,0.38489479339008187,0.40628427692600816,0.34551133600396444,0.49007806132024107,0.7577530762728119,0.7662166057674727,0.800812518260738,0.8559564886199459,0.9816076360167754,0.8872864426936273,0.6399742802490315,0.4627986503153869,0.3639423754810356,0.35159241738565683,0.32283166091475946,0.3381215600655708,0.30509795071410095,0.24701938409795376,0.1944533598239495,0.19547158960067224,0.09367260995072513,0.19099737414088203,0.22404232535615132,0.25120451567486507,0.3320730660241698,0.3239187581725835,0.3580559863783477,0.4415227262703827,0.5191640919102597,0.49480869449266085,0.48172302101479486,0.5107172964649367,0.38653011908713397,0.4426573601039452,0.33639029536639603,0.41665189782433465,0.3328709968403263,0.459603292485008,0.48181154567624507,0.3895493700439352,0.5073224495789007,0.45199657362579626,0.5646238700531432,0.7200750006505088,0.7636216794665445,0.8316796480126613,0.801268922030632,0.852476084992732,0.810184945266269,0.8123518747439006,0.71045464850339,0.7544822576417949,0.7629803789305821,0.7628957075113264,0.7345769872979286,0.7051111084427419,0.6951577173119123,0.6885272398670405
0.26641742127967283,0.3649939219753355,0.39703969580321463,0.3712713158635562,0.3688100877413265,0.38229259736615456,0.4534848970049879,0.46248394393500714,0.43532665179031693,0.4232995701066993,0.4270791359882835,0.42270399372075673,0.39991877959337957,0.41319909189462023,0.4014710442949555,0.4388025864705134,0.43200299519138163,0.4231019435981155,0.4160090661438716,0.46114507164056107,0.3324133345968331,0.3813318712398282,0.4073989498284162,0.3705391955954283,0.2869415457092489,0.3582463194408148,0.3709852824891908,0.48429518252321857,0.7535468104931006,0.8010292391142385,0.6070630962441912,0.276284537794404,0.09787430857354074,0.12382048207384255,0.17408287237709463,0.2652540713601472,0.5371888387171471,0.6842298479018226,0.7130921125096082,0.7340649224670225,0.692641902388289,0.6900456863982753,0.7200756721810866,0.7453767184531663,0.762465870380342,0.7434565191773418,0.7453713573121156,0.7851137912633077,0.8440966252420534,0.8878093883063227,0.8677794413266829,0.8368855237829643,0.7665244561531205,0.7851562175553466,0.8067682874116227,0.7503026184097423,0.7568940076161124,0.705064582882452,0.6864327038760032,0.7152194218674786,0.711083452898111,0.7764944928842809,0.7368345968463821,0.7409596536990839,0.7237445365981251,0.6462687852019373,0.6552991201862328,0.5693211198125798,0.5379742639790803,0.5331387401533876,0.48035425279812083,0.4554393525880205,0.5001423471828552,0.5054949151065172,0.49024966771617656,0.559412628594539,0.6064413266331931,0.5892023502927634,0.6296130025606321,0.7049363782573336,0.6728419303123135,0.7268514376444334
0.3012022880673299,0.4356336133593025,0.4468139941240832,0.41890637248920803,0.41900850233002374,0.39590300458489847,0.4676713981146784,0.4781339139990339,0.5140175925953343,0.557852498950647,0.46101352155960895,0.5128286317535398,0.5161887669052184,0.4663339283287871,0.4662427562565271,0.4675459024575242,0.5216214413784899,0.45514764439245226,0.4324217269782228,0.5329054654049116,0.44249062247595095,0.42158153043703817,0.36547181580276933,0.4153757821749661,0.3449620906537715,0.37845885281832486,0.41739955282217583,0.5145529241778687,0.7100465962021633,0.8224292400695561,0.8203933172975412,0.7085374313881814,0.43320210477325,0.15377313668818615,0.12388315604072009,0.13822584863362586,0.2910844088924349,0.5178011763188719,0.6335713925029227,0.5973194976036851,0.5555245015225032,0.542678960064122,0.48321000492101046,0.5584334870572878,0.6135241735483502,0.6330535968080218,0.6330869602053556,0.6446028373133506,0.7052194922703345,0.7503019747105484,0.8271331073801157,0.8455539334897585,0.7951635082407499,0.761541837856395,0.7645736739150908,0.7324736951238653,0.7249720709185354,0.678155386643372,0.6246267989959036,0.6948677293368861,0.6775457932551846,0.6924132829283732,0.6402588575076409,0.7323281983919492,0.7343840401377594,0.7052691600316723,0.6990867378785512,0.6921022601002478,0.6530480781637624,0.6225143703873084,0.5827526909821785,0.5406487569807327,0.5337778789808725,0.5342400882512416,0.5215236424615268,0.5448337078642729,0.5647571678867453,0.5694061340990753,0.6083202882876279,0.606820491139829,0.6446933822855272,0.6504322186286718
0.6803952546417227,0.4445533442692588,0.4388060976818654,0.440239086971674,0.43094797539077523,0.3868718004479901,0.42998435388042044,0.41915423400106044,0.45974160202637304,0.542126264970718,0.5452604946919809,0.7049998005242691,0.6829942227351455,0.6950232129197824,0.6990999861966523,0.6770251401652012,0.6147601192672906,0.5347529349912652,0.48782878546307373,0.6074015416633576,0.4609612427696821,0.5350615179966343,0.4335507327306211,0.252750510113067,0.26831922525812474,0.26231478716500106,0.343295843029617,0.40550906978165036,0.6898916372980106,0.7723591423517804,0.7785436386719553,0.8019580012686383,0.8986709247403648,0.9939309387833966,0.8454744687944803,0.7468261508352478,0.5007380175322151,0.3442307541688334,0.24627710796054703,0.20979622549233834,0.2698605545501347,0.2928411681064357,0.17367076828665795,0.20327239814181053,0.13470850126069034,0.18761113478537228,0.20799704335599184,0.2677830612481863,0.28609798317044494,0.27201678579820365,0.33891255812986176,0.41529243737685084,0.4259211927625794,0.48557524996206036,0.3820325688837964,0.45460009632810766,0.4129289865702621,0.42362692762427834,0.3856877705607837,0.37761428631350047,0.4478266097103284,0.39067081083584243,0.5003242115126898,0.4552183863292516,0.5712242490481395,0.5358416362304323,0.6910855966709701,0.6286299468754009,0.764437693867541,0.7814593941851172,0.8183546174597487,0.7834102472896489,0.7567014360305488,0.7960778520782282,0.7526008383396998,0.7610507789250918,0.7457284969041382,0.7544953736065785,0.7653744484798038,0.7496146390262403,0.7378649329509079,0.7247641992252194
0.3676478902837965,0.5537694918560495,0.5978179896101162,0.5985622244179731,0.6139865786997232,0.6244431002325765,0.6636056319673506,0.5983440898992003,0.5888157668939227,0.6130040315731361,0.5318711742729711,0.6247951492556847,0.584818758614622,0.5718249627850207,0.5696001974348278,0.5825887812775263,0.556496873356853,0.47569288637463714,0.44758158636652123,0.532803087143513,0.4923990229046341,0.49630794607338025,0.4709770386375218,0.4722354592627125,0.39129475910107225,0.41509445986899124,0.45840673298318246,0.7768287079514645,0.8964727660224958,0.7284182602291531,0.4310315355266885,0.24069933355037054,0.17754703653221937,0.1455013833161225,0.18031880194015848,0.35779299338499326,0.5764989906423779,0.6242512906941757,0.6307683085317709,0.5743610362979626,0.4843295109190491,0.506602593654295,0.5042828607934855,0.6051816464562865,0.6337824838189476,0.6157465724563328,0.6731467377956679,0.7539827601005357,0.8145577840815885,0.8093040475615423,0.780615093078208,0.7700860278954728,0.7059210827198652,0.6562112776834482,0.6230826403056153,0.6082364496294126,0.5698547245660623,0.5434986760673839,0.4885601056479812,0.5105398203981206,0.5318773055377904,0.5156200460267603,0.5045383329714486,0.5434904974426207,0.5337254731232784,0.5434366461526599,0.5619705986790196,0.5867079997764433,0.6206567850532048,0.618460211974939,0.6033384114931344,0.5830993641870287,0.5668107793959758,0.5620065996395138,0.567227887613408,0.5647331467767459,0.5866405462896092,0.570905206033973,0.5937957136975048,0.5859740577218345,0.5973853538759236,0.5850610797263961
0.3329448162255958,0.47446328858039344,0.4901821119528059,0.4809077748722624,0.537257851927387,0.5099976801047749,0.572624630599805,0.5496885594595353,0.46625248591331914,0.5004351498569233,0.4643050420200523,0.49329116633008524,0.5078795174764842,0.5091990651784444,0.535905804821679,0.5839168262094372,0.60217902435579,0.5194347353051587,0.5124495278496073,0.5722913690604203,0.5429403793032007,0.5800239152118496,0.5169408243677427,0.5870975644292588,0.5177344909149373,0.5181557209481746,0.5474228546508082,0.6164890601206011,0.8274131221775156,0.8286658512899262,0.7082905467701608,0.4462784829494508,0.19159505270556865,0.09950847584264921,0.1212247106317591,0.23683944848634675,0.3919917417236687,0.5648972155982382,0.5862420206867859,0.5828028616802159,0.5581378846819306,0.5332874074309863,0.541177786607222,0.6224886704805042,0.6581704149047503,0.6481499596479491,0.6281660378079241,0.6835799951415797,0.774122947100472,0.8479118677574771,0.8139595090783116,0.8040631931491306,0.7591178872640828,0.7023609228795841,0.6347503896111111,0.634141443879114,0.5716314742503454,0.5398303336980094,0.4790372839950408,0.4955061260246806,0.5282217084029136,0.5199818223787741,0.47466415810602447,0.5260903764771219,0.5326542395951864,0.5835611380476393,0.5469925512762486,0.5645608313048853,0.6039047157188129,0.6622664697695488,0.6162964749251323,0.6033294662338992,0.5996085547797128,0.5840321189349942,0.5751853409779758,0.5838467511293863,0.6107710520054946,0.6073755228225375,0.6163683523841249,0.6317576820019472,0.6504840722677674,0.6388512279619972
0.368187619539808,0.5282873947207706,0.5497705380428307,0.5380063830958015,0.554090307517716,0.5728130798973732,0.6093783905554333,0.6133788656900399,0.6025299025465282,0.5701801893723231,0.5538276427625812,0.5695154057543964,0.5511584135607354,0.5438972027997157,0.5162059466243201,0.5775992833582023,0.579838682786307,0.5437030987644083,0.5211739352581218,0.5446839419829117,0.49356709991440195,0.5237497522016018,0.4627708131475402,0.4771056810184289,0.42048497263825135,0.4364823094022985,0.455912171528517,0.5396595316694954,0.7844814078397182,0.792761724544051,0.5818849565912307,0.23279932553752436,0.08158779366490987,0.09435830705233417,0.14832331973062096,0.25214872461459015,0.5686733452782583,0.6716291148727469,0.7017247650143873,0.6933126797906248,0.6570207849522207,0.6545407196634283,0.6751909681266257,0.725595388238964,0.753454556600996,0.7213033161886713,0.716448063370686,0.7719086233550706,0.8577791033174179,0.9017652530971505,0.8855873527900012,0.857217170652954,0.8487282838042955,0.862287386011319,0.8320654382838033,0.7971154184173954,0.7898024029131063,0.7758732592891029,0.7301619356394264,0.7449211204103943,0.7629403276132493,0.7825464753381627,0.7279435372829535,0.7508363107169875,0.6789121645698558,0.6158592657820805,0.5426513947377689,0.44925976692312286,0.4253319201710632,0.3601314652845139,0.3097182110125781,0.3063079751345524,0.30586066212636986,0.316216141025379,0.3333422848812764,0.369556608870641,0.40733761793851375,0.4017880926817479,0.44106557603581753,0.47948213592620487,0.5217433577633037,0.5226760451739044
0.3389006881707881,0.5033253441577907,0.5114063565689877,0.47004794499245184,0.4841841766440217,0.44290742808298594,0.5128677473799306,0.5037620626346445,0.5574845483769285,0.6114972380399335,0.605743267903462,0.6013348220902132,0.5329536967388143,0.5512912707193749,0.5220694002752125,0.5105176131993997,0.539308211343974,0.5029233875856878,0.5445178952062606,0.6088970291073406,0.5409117276584978,0.6015056721302244,0.4680612623329272,0.5086858809095562,0.4484066622325873,0.4902820227685869,0.48768965469529035,0.48882691963641656,0.7632632793560805,0.8336452133271487,0.8248014058223092,0.8520375692899731,0.894969526748358,0.8346441772480943,0.6517268423841303,0.36361452941442873,0.2005057678397224,0.3139878778824179,0.40093625122905363,0.31044312303056065,0.25729985371001374,0.20841704399291117,0.1767119226741597,0.20750989532625141,0.22191898925987952,0.2876120394331191,0.3349394144855271,0.35141235499085405,0.38414347197218407,0.3900477409036685,0.46950348534327396,0.546148657949684,0.6155572554734111,0.6105528354852411,0.5580209509861505,0.47755489894541986,0.46297147111078096,0.42309382666149964,0.35654437349841445,0.3958636853924653,0.3420578431891247,0.3475343136947199,0.3282306046758874,0.35673168735021865,0.4064443018674925,0.4653493224818033,0.4980065421259243,0.5748877520477529,0.6781355886056295,0.7474875535242812,0.7916033908937057,0.7819256356411417,0.8183643013994395,0.8325027281021231,0.8056748641366223,0.7947714600192897,0.7994465857280375,0.7852852016538674,0.8001609447293039,0.7714935765204326,0.7408576781769003,0.7224332710954116
0.2800293065971583,0.4413497733732812,0.46389812262254587,0.4755694165655851,0.45722571329184886,0.4918054164862701,0.4651877315828327,0.37243429336789113,0.40692860994142244,0.3903573937867888,0.35615819752178524,0.47603520232164476,0.38215302973734155,0.4221983419017684,0.40831534519812085,0.46250893246936725,0.42581624219363545,0.3427642268142238,0.3486125288727634,0.41498988621978916,0.4149078941762,0.38916720682214234,0.37703246559028547,0.4051770847763943,0.29266059335572514,0.3682083590987341,0.5095469031936368,0.6759510599759581,0.7141941397914509,0.575446194076138,0.2764214270816908,0.12947872789336778,0.13323005090845996,0.19920370917540808,0.2526309838345602,0.406568213667998,0.5963100269735205,0.6980114333197465,0.7430465608693722,0.7093032503901819,0.68729102759018,0.7158360981333738,0.7117448675937558,0.7604690854644447,0.7374457265549653,0.7351853441708546,0.7887843052744417,0.8322832679196626,0.8592097264619998,0.845598419895381,0.8235439933552382,0.7863810326109473,0.6980178002214037,0.6357768724063996,0.6064666391673943,0.5860323654185566,0.5651683041169948,0.5333263062764882,0.45213401089035826,0.48734382347878724,0.4832462029195037,0.5291533016105342,0.5012473319796822,0.5527185452527263,0.5398232639754951,0.5715422629493361,0.6113588822932712,0.6442071199381438,0.7037271891815748,0.7267491485660464,0.7176617657091244,0.7063790766857347,0.6727228376426475,0.675065290211224,0.6715801312510696,0.6736143214056802,0.6825207625590171,0.6838672878687988,0.721117869771624,0.734111049671432,0.7183100987662805,0.7265281067370328
0.3997237844346603,0.5861932811843337,0.6672235850238319,0.5991552765410064,0.6601875643925416,0.6533760668783917,0.7412168533102788,0.7495286311409964,0.7446788622361673,0.7442904847525383,0.7146941607555335,0.6995065277304662,0.6752402740443262,0.6858117095375188,0.5977340866712328,0.6098258109132607,0.5720997237102736,0.5359165494173669,0.4976065499059173,0.46525201948974404,0.40917769624364414,0.4275652751465247,0.42522496451310227,0.4165702582190525,0.33436715939612044,0.4198588690293297,0.3848598892356006,0.6347511705215807,0.9025093078871079,0.8013793785121391,0.5660160594146796,0.3244876872388195,0.19713141904959963,0.09598669663923687,0.0762639484942953,0.28451723741967094,0.5922815379836004,0.6489606585650817,0.6620257285019084,0.6046469247176385,0.5318752386363261,0.5622446211172855,0.6054478204162819,0.6770301600309225,0.7084053294466758,0.6620523243495463,0.6969964723972466,0.7604782102534374,0.8222538312444089,0.8220353825543625,0.810608488349875,0.814468688314043,0.7965653785643846,0.8051098504132665,0.7807775023748971,0.7701059370018368,0.8242008123772988,0.788366457043403,0.7628588353509504,0.7528191783736888,0.7516598044750057,0.7611493969987501,0.7026316243345154,0.6912295510810262,0.629754824315017,0.5643508899516039,0.5118616287016364,0.3976569850085433,0.34594275509032385,0.28628619790087484,0.23875503686870092,0.24677332447371964,0.30471853960005724,0.2654162164282588,0.27853276616489997,0.33511976439824115,0.3801362763879258,0.34448484219999453,0.3915520052471825,0.4450972734287536,0.4929214916208005,0.4885524170646756
0.34526858433719504,0.5029753324084494,0.576010272754611,0.5632825851697494,0.5805640923569919,0.5897740489486536,0.6042310873854452,0.5016750880092882,0.4988426087936126,0.5001039591969784,0.46385936207376627,0.4925289163088289,0.4826582281494866,0.5084643360770938,0.5078309303959743,0.5254170012144039,0.5392141476517134,0.42402366617099435,0.4472883699083778,0.532454040983307,0.48057391002405503,0.4627272990358546,0.42614817406514716,0.48585220641505633,0.38417543571945767,0.3970432900120542,0.6247207547189151,0.649706861135594,0.5565057173920622,0.39668615865075646,0.11639285362000962,0.08352574234145038,0.09853619373050737,0.13337598527549932,0.2527177874940578,0.4832110638197946,0.6950246865603545,0.7613435711689366,0.8279177997485836,0.8155161884971014,0.836303880165097,0.8220465675033944,0.8247781808233285,0.8612893947869623,0.8399559026792512,0.8328805531682906,0.8588648229222187,0.8776737912302361,0.8840121625759374,0.8641212804796098,0.8445433382670124,0.8248332432708152,0.8060827587309616,0.7953880358814486,0.8505867009482959,0.7721259376158047,0.7867277644895936,0.7736640815327362,0.7877875731439699,0.8616574519721045,0.79903843564929,0.8010416245970643,0.7459271392734304,0.7888972535594563,0.6781741596016572,0.5237976529202195,0.44262643535341195,0.3717986709401314,0.34202550123921344,0.2958698533338219,0.2912188721420793,0.28919113097259713,0.30087171660788653,0.3217367512142383,0.3580900416166816,0.40136627187137036,0.4569898823468393,0.4443558642789551,0.4926183241190382,0.5390618503049095,0.5752942111291661,0.5780953107633868
0.38313676004587804,0.5713176698043434,0.6213938996115675,0.6303384859047942,0.628768925311739,0.6193873044725252,0.6414987059570475,0.5216495654281441,0.5095664519390961,0.5190929232140865,0.47052756430269055,0.5359624781862907,0.5272671008335986,0.5161734868333324,0.5293108937771269,0.5481576933081317,0.5804470674783802,0.44315781828516776,0.46786627800348524,0.5773622051578737,0.5282848689897803,0.5138857227735333,0.4990837791522952,0.49118269396032643,0.4329311885309362,0.4480888174064729,0.5523437990846334,0.7325919692568672,0.7068375900290443,0.5604100995411561,0.2360307837578457,0.1006031468943055,0.11526289883676177,0.15305558074560222,0.21587803439146658,0.38239806792605024,0.5721057343664203,0.6727116610711478,0.7140142288216667,0.7128732498265467,0.6613297944423324,0.6836055599168193,0.6808497781416609,0.748688540044281,0.7492384999480485,0.7476315459001601,0.7809852941274047,0.8507465571074448,0.8645407949819028,0.8294263645022613,0.8082972041127944,0.7689734699432494,0.6935974804058885,0.6757234781447503,0.6056611375972956,0.6122109259898916,0.5724480388980098,0.5035943165555589,0.48627622687879485,0.5270083932280127,0.5043006630423817,0.5584911863764014,0.513306606776152,0.59145357245456,0.5798280820753033,0.5373582170658724,0.6394297611445525,0.5910247360499461,0.5738925110159971,0.6179748099610349,0.5538240509248413,0.542835736555109,0.5518575137456978,0.4879791576854927,0.5221550657431588,0.5113380898107864,0.5359270599109129,0.5251062366565563,0.5507355942643968,0.5562921508136889,0.5721970924282329,0.574277938835346
0.42056591835551865,0.6180440434605124,0.6245244175331401,0.5889790077172936,0.5376027214254461,0.564266068065331,0.5716066554412976,0.5266799967744542,0.6244768198398827,0.6183086727439309,0.6579460178165034,0.82162806134321,0.7376732793025453,0.7656222996525084,0.7620072944114463,0.6832024835175899,0.6990589822673641,0.6234759349146347,0.6136806941459706,0.6697190913877921,0.6522476265086902,0.6015213595108937,0.4321587161070053,0.4110302837299751,0.3760994252525004,0.3514304087315856,0.4041282620382105,0.5391139795873587,0.7085778119352916,0.778703942421322,0.7850070519706482,0.8329262768562126,0.8934084513563099,0.9123021754070659,0.6921406628301106,0.5331436008958429,0.42586053325721585,0.4087258110538873,0.3788287685721342,0.3223788539246286,0.2912764184535146,0.25704428240148913,0.14614202973602353,0.1138802504600096,0.07085396023293156,0.09918805484069859,0.13640999226620332,0.1703354061801155,0.1925740090466581,0.17161419202436345,0.22206171041120493,0.30264458041187003,0.3932856256316955,0.46371868033604746,0.4615197394466796,0.45026523319661454,0.40747918017515694,0.41286753097163786,0.3554125619757837,0.37150136755683383,0.4092284126627588,0.41435341592536323,0.48456000494341156,0.49152497989684707,0.5457159821202745,0.5705121537196471,0.6036733736779938,0.7201778183789733,0.7738113041670005,0.8218456014855023,0.8370492260609871,0.8210924136911898,0.803870644003752,0.7659589809318853,0.7451531298964054,0.7216611169811381,0.7135027455545849,0.6863555232336386,0.6720132781618545,0.620973463385805,0.6305943120102714,0.5829473217922158
0.3331049320483589,0.513091117083693,0.5301508519802569,0.4682680349969736,0.4759294219072186,0.44254139031832723,0.5260521757164913,0.5032743112402929,0.5647569830932238,0.6940094633388795,0.618830026516483,0.6625830283881946,0.6459406482190411,0.6532139791515146,0.616393001444677,0.565676553436813,0.50217258146587,0.48866459958697206,0.46175312735447516,0.4937253018316372,0.40970832557942516,0.32654915594959344,0.2464048669542071,0.2892510185495487,0.30281708609150354,0.2631051926822221,0.28828122493721015,0.4176476537211422,0.6673296754866713,0.7850564160703792,0.8660015119472017,0.8456266756192758,0.6350028637095384,0.39252558867032084,0.2943557428808603,0.28206642225003986,0.3004251797183888,0.44201945175383694,0.601537536423742,0.5646010092299653,0.4380587325384647,0.36182766323544113,0.2516041293462983,0.30508761598515066,0.36578376192501155,0.40674664863719573,0.47004844594669526,0.4688226040461311,0.4828256658962343,0.5542811962009057,0.6655886786520486,0.659097034530103,0.6886068291437494,0.6715310937163682,0.6513275781736778,0.6488661920940775,0.721219814573699,0.652869492331976,0.6911013116652163,0.7827351883849745,0.752051312441088,0.7753879414436146,0.8250582775476702,0.8465932583388318,0.8664698886853207,0.8054188677451837,0.8300100979470044,0.8110291715722882,0.7726501211986572,0.7655817729366464,0.6921940455019286,0.5960903804776477,0.5578572403864176,0.5608571735031916,0.5346290015539004,0.5175369815970147,0.5208142839328781,0.5221863824775008,0.5466985048545009,0.5480938239401604,0.5794983326526265,0.5719896305604376
0.302194623719931,0.43055715979254894,0.4381897787368238,0.41763374874495296,0.44374689396288464,0.4385762163237395,0.5674448035255817,0.5942145593525167,0.5658965238912155,0.5870515546089299,0.5670686824590213,0.5438917428510515,0.5487046611673675,0.4809228001200732,0.4569210547923528,0.46171813237986786,0.47065340541536926,0.3913909792486927,0.36568412207906986,0.358209851360681,0.3227596019376962,0.3135079919783002,0.22288017047927544,0.25842097084446825,0.2123047737281133,0.21902591054037984,0.3107173550195275,0.5268898178025758,0.8359763090444604,0.8563663877778915,0.6447775007806029,0.3800796559418005,0.21036970989280046,0.16580286060313165,0.15312045530319474,0.2999519964451348,0.6050951065929794,0.6649559004232902,0.67735581375731,0.6224975127563361,0.5206508493178077,0.5327158850906691,0.5489733957147971,0.6362492930464256,0.6800819672752954,0.636400037614301,0.6461512123655152,0.7283327732697382,0.8224376973876973,0.8573638417949524,0.8288575864573844,0.811945853790444,0.7635201275786484,0.8339717126566124,0.8400243366099371,0.7766223195455795,0.874822894239468,0.829508637510366,0.7745192784311421,0.8295465717864603,0.7938461583266551,0.8671287897728733,0.8160982295207346,0.7972560655002878,0.7750381578798401,0.6952516560210837,0.5934121726029338,0.58943479486341,0.5439637623314653,0.5248648084976019,0.4222755473223253,0.4338104370393627,0.4625787749448576,0.4672569231669439,0.5011087329729302,0.49264695373879086,0.5257606095266346,0.5297254552011875,0.5640693773759299,0.5678030974812734,0.6265934910353561,0.6164717227298444
0.45246846869579926,0.6667972349883335,0.7144357611349393,0.6538152076220736,0.6531992360713021,0.6788928877871973,0.7167642966516986,0.7058985071208571,0.7392625503344504,0.6580218219219658,0.6405935097695286,0.6885856556911689,0.6373421448649909,0.681705905637033,0.6672265525307907,0.6792785229489,0.6887932718291394,0.6694522651061233,0.6808745745358531,0.7129048246232783,0.6308055977363309,0.6801700202760952,0.6578892249523468,0.6449406426514499,0.5012885230415707,0.5718012356477578,0.6065524619122464,0.655633935394767,0.7904981626127614,0.8699591016749113,0.7990742812987851,0.5713916555477835,0.1910305957899393,0.04047102008777392,0.0677937247371121,0.12276425222551945,0.24079765044931034,0.5550053351725126,0.5982724493438928,0.5849717706522362,0.5643795723117998,0.5426696865646096,0.5638539204017033,0.6247154830891026,0.6558764225574174,0.6489556020311722,0.6308235328997738,0.6561640833550324,0.7370269855279262,0.7964030554520227,0.7968770369082457,0.8003672590597473,0.7352339802595557,0.7191455269847121,0.6764563302801125,0.6098525549603748,0.5692176538257893,0.5580521654514492,0.5201272132897132,0.5376531369491895,0.5324269927725492,0.5250051845541385,0.5371080835633044,0.573160162337145,0.5027172425529253,0.44552100884795465,0.39615001949442097,0.38232123256744077,0.39766837103717095,0.39155756278157117,0.3494763077588145,0.3515703318712285,0.34474529178850005,0.3513870871829794,0.36451323460670076,0.3782621436535069,0.4057323989889007,0.4190266787653091,0.4670794206817377,0.45695752389243793,0.5012118326738013,0.5011312889694095
0.34309733014455374,0.4996572412094592,0.5073479520221686,0.48312611399137284,0.4755770087908631,0.4682821769196927,0.5416308397810338,0.5226436166043067,0.5754361455392755,0.637559671946205,0.5904759319075642,0.6426093970940808,0.622243108387463,0.5703175626573398,0.6253119184313949,0.5880021279665696,0.5685718712889098,0.5228075108422259,0.5317277423094838,0.5635280893565217,0.4644026835187088,0.4624794473093148,0.4393816872844266,0.42066476704756767,0.35722603606512615,0.40615456324949106,0.41607749305736696,0.5031554090997846,0.7075636939902855,0.8260923827583532,0.9130126419164072,0.8844659788008341,0.6223937588330566,0.3637296062916584,0.2262308041803196,0.1989249361580827,0.2534496415949341,0.47899549486683923,0.5639049145314919,0.4972192692860379,0.3943297788595669,0.3237798195218755,0.21413354557993247,0.2673241636068393,0.3290332366593437,0.3953884390779258,0.4400412273257528,0.4488270160002842,0.5204381676056405,0.6173473475904666,0.6872365956341993,0.7010012308791631,0.6500300189507956,0.5961726729523567,0.560364471179184,0.5274958561254759,0.481287239104232,0.4885863417668662,0.39728903755325545,0.44716473611700736,0.43190355358863786,0.44776095362160195,0.4542053094389582,0.45944240343717846,0.4870171001692055,0.5008489714151976,0.5398764380571943,0.6215359831319187,0.6978416655848294,0.7504936364296295,0.7716512606121688,0.7649007017947654,0.7618253106636708,0.7491684633117965,0.7327790279969373,0.7245938402846417,0.7364864142236802,0.7198204019428671,0.7439735288040816,0.7007888399819061,0.6832893420762328,0.6563839548282434
0.2861532833994864,0.41263585929109303,0.4264227542144612,0.39939152445457793,0.4113801116893685,0.42261353029841864,0.49178354340506925,0.5121494073734,0.5881060407127943,0.6000864697764277,0.5653166014332642,0.6122220495237765,0.5505883559335889,0.5471430869143201,0.5116556273727281,0.4985181147522923,0.4769519791805855,0.4066686479009587,0.4022449970072857,0.41120558990592027,0.2511688880118976,0.23109326662425062,0.2349768145888878,0.2746302362874001,0.2258567932389663,0.23283306426703748,0.21662310534917129,0.35904064723149787,0.685822855865792,0.8210809188616568,0.7603314628147566,0.5878808680191724,0.3857134772716426,0.26936464596215615,0.23232606114619447,0.2525910880940261,0.45707209484407985,0.6299098089790289,0.6432349115913111,0.5781434909845687,0.4790691568779276,0.40993666512629656,0.41762163017760234,0.4931119886740174,0.543359912798101,0.5728853382787409,0.5654553525142991,0.6001674089985367,0.701296434748212,0.7668240992592423,0.8024564267221838,0.8136122850917501,0.739190968550734,0.8141238020850469,0.8377804494236103,0.8054712150403944,0.8240589604012252,0.7726417339668503,0.8000352486313618,0.8590671261120635,0.8360642622408981,0.8883962986724817,0.8116126087610551,0.9140590429886075,0.877323568900053,0.8038130630852791,0.7452498170944171,0.6921097273095775,0.672470740083235,0.619956721486025,0.5710484310281209,0.5366736453228822,0.5225690739141517,0.4760564753454003,0.4933966712389447,0.5278277332668597,0.5590091131513435,0.5291443572994408,0.5754108746023305,0.5904615143088845,0.6419095735040368,0.6249215939667307
0.5276383724409955,0.751055331866172,0.8193693925817267,0.7646438696680934,0.7797744124517205,0.8132218618931553,0.8393599473641971,0.8017774676137661,0.812899691001187,0.7279230372978565,0.7205770622083982,0.7526446781228918,0.716011890204946,0.7128791282606703,0.740954164552064,0.7873939949442538,0.804857829637355,0.7701059875470816,0.7331166908027331,0.8329228318349711,0.7786627803860507,0.9209523464837371,0.7971589396088457,0.7741856154342421,0.7061039095908596,0.7192227931194869,0.7988254228228778,0.7269927557632347,0.823387812269761,0.8818387328633666,0.8993528688027839,0.8588916446098109,0.6312455096261445,0.2382554521776742,0.07422886269846996,0.05601478558449968,0.19649573501983753,0.35527743780644416,0.4591722667416329,0.40886806109029594,0.3505963960304803,0.3417869929294779,0.3244681894470992,0.38447090273884543,0.4698449502434945,0.5025721754159593,0.5182644948970118,0.5000546197650484,0.5684372329989795,0.6225695033284349,0.6867012563967088,0.6754172092320837,0.6295600652922566,0.5393640707896341,0.38529598930741665,0.33851807583736765,0.3508717786030442,0.30168544908029726,0.20722260367442508,0.1866560859491041,0.20318843722108948,0.2040117019917096,0.19028805767435542,0.17398201442450478,0.18784928451568006,0.21837222789647892,0.27293440249644585,0.3419300059410266,0.41186955686235366,0.46621107686654506,0.4743775630420942,0.5253884176731554,0.5371567743896117,0.5325692759854548,0.5439676654055672,0.5236030077566537,0.5204082729727832,0.4996522422206211,0.5065393698297059,0.4749855224177704,0.4997164512634348,0.49031722409776124
0.3354604404308815,0.4979098994979417,0.5163938456135583,0.5275249215072209,0.565515548965784,0.5630427552898905,0.6111823507956954,0.49742960381094053,0.4829939087710548,0.5274422327372631,0.45854562872373306,0.49819110939375444,0.5133151051324488,0.5291555714760817,0.514465217255936,0.5471924368743801,0.530896202176768,0.4784843109039182,0.4541524491768828,0.5212834775373374,0.4892549080133312,0.5188348469537365,0.4575683806273252,0.44602640650660735,0.3930061771040898,0.45452305894553524,0.6375798947292362,0.5876632506977053,0.5411632562472832,0.3252110247299811,0.09261085967255023,0.09734607282823016,0.14433634801746553,0.1805550390025088,0.2904131766688397,0.4771498046832413,0.7071272340849923,0.7715209017046959,0.8060709665359778,0.7860802898946404,0.8211567632310222,0.8473179085964757,0.8274113999161337,0.8736710655724292,0.8700816031454441,0.8778207749974407,0.9205709985564654,0.9457517475353543,0.9830526458161082,0.958427774251762,0.922511128091267,0.9433950168772556,0.9443880459122577,0.946675790633044,0.9478730233931196,0.9059538613853537,0.8960337435914378,0.8932419136833978,0.8155036454183513,0.8504944243937478,0.8261633821103186,0.8294322549026457,0.7171258263909885,0.6424564847383405,0.5905592088792165,0.49330417791678993,0.3089104156278252,0.24315404812639385,0.2625256040301957,0.20430532778047264,0.17764689396814082,0.21214124422428782,0.2410179326252914,0.24284959447973442,0.27329580904300993,0.3508249104559127,0.40676844873014273,0.40056047460572414,0.46843746942567416,0.5061475499231466,0.545559132350195,0.5736992143715465
0.3562999394735774,0.5405081816086656,0.5525456044853811,0.5200937606913266,0.5026558282285417,0.4743397732627803,0.5313650146727068,0.5628615867617124,0.5675221560413051,0.6329342488655346,0.58284228825185,0.5492417214412582,0.55430485161828,0.5320628836681129,0.4871875913868972,0.5496642553701854,0.5322314233637654,0.5290871808563782,0.5381145571310509,0.6204251494386445,0.5740354447545037,0.5666686125536589,0.4557033876317499,0.49547963849370974,0.4367303396407718,0.477659964543097,0.5284379165387637,0.5869395005257878,0.759246525821359,0.813216094776053,0.8160751662250224,0.8833388488494275,0.8651193664513116,0.6996596748929339,0.39126369502527625,0.17595712329188817,0.15285262461640414,0.34508579549506746,0.40398514101302285,0.393898111332333,0.3354455650694239,0.301818700692559,0.22365245013877022,0.2662828428116817,0.28313369172779657,0.34751990820206013,0.36506790318943516,0.41349347965573957,0.41835366327274537,0.4217815093000163,0.548749875578499,0.6713628367153925,0.6655071943470836,0.6445345022621156,0.5474748288669515,0.5571050366573955,0.4757067596287635,0.43518778859816,0.3494459967713233,0.3695223274978714,0.3559991472024554,0.3629982605243489,0.304922155542258,0.3538877125227492,0.36557717462565487,0.4087765978910898,0.4582636618492215,0.4986619048081302,0.6308625879888836,0.671689791515712,0.7513688513901295,0.7452177717340337,0.7848471813819244,0.7889400848290603,0.7946635352075941,0.7833941539238178,0.8157787914130544,0.7805569727138986,0.8043626514823912,0.7741184886622194,0.7596822875536616,0.7410261341271602
0.5740104538560078,0.8207945266145178,0.850949061677926,0.805672182892761,0.7995659456804378,0.77487355182126,0.7829412003092671,0.7594692478227941,0.8118419912132249,0.8961237963940785,0.8982999610491789,0.999263402016167,0.892641973864119,0.9385494217202552,0.9084205412595938,0.9023313185229453,0.9110375713922394,0.8258375261779978,0.857252456349137,0.9998541102435072,0.9552351154439698,1.0,0.8465837231059619,0.8536612695947319,0.7534172623478552,0.7685426826854053,0.8252332309597104,0.7804221489361326,0.8223676682350601,0.8512698708203759,0.8526948362703255,0.9384889588770982,0.8900738018775082,0.6800290142764027,0.31709083468777244,0.043698965622899655,0.0036795412781989167,0.16415161572201753,0.2696457086992441,0.40792074870513195,0.3692140520280047,0.3310960709096422,0.3264324078481292,0.3728927107229528,0.41015900169686825,0.4514699573625232,0.47896801161804126,0.5226608530119081,0.5051150526047304,0.515178275655493,0.5738995432799338,0.6265240872315999,0.5669235160855399,0.4929163814622345,0.4554166728629678,0.42687698358107357,0.37185500795422644,0.3208061801036971,0.2498089475223762,0.2715985093325264,0.2443509657629538,0.2689717077903566,0.2543584090026747,0.2612546701729165,0.2752715929480667,0.26435836637006105,0.2398889268123301,0.31122995334315284,0.33292376420971886,0.31013630864971287,0.2837630216548426,0.30226109294733294,0.2829993717866809,0.2898369835368464,0.3032354773955583,0.318478394489006,0.3245373674704234,0.3011940665767117,0.32846219601915255,0.3394455495619953,0.35856891174969263,0.3433936150422725
0.30034490844694756,0.4280256135641628,0.42112653280182394,0.4009913416702754,0.4525594086082096,0.4534446576581333,0.5436997788565221,0.5879763581878727,0.5816446134769137,0.6034576910753982,0.5489709125550009,0.5880297953559522,0.5475049243013036,0.5181529482934247,0.4693947198197503,0.4660005673428025,0.4651859856896412,0.4080680007139234,0.3634721919267646,0.346753527198281,0.3093658393800301,0.3286666768108766,0.28299403202241413,0.2755115645108845,0.24224517793861383,0.25210906966157354,0.2245516101937685,0.4111821165501833,0.7368426737682734,0.8705758796392328,0.7971131077132982,0.5804337129066786,0.32928988990420993,0.21938150203986162,0.15236809025140485,0.15574313415205188,0.48538993531169705,0.6539969636782623,0.6616156977899624,0.5863266898722891,0.4893979351186477,0.4172635147992202,0.42337673834124423,0.5239582903478512,0.5890545575421791,0.5896100849178555,0.595861527195921,0.6563709163134771,0.7267649545312913,0.7923761561808431,0.7650454614996858,0.7940931164764513,0.7022107673583103,0.7076440110417335,0.7728055962109082,0.7270363105725386,0.7535892228876964,0.6927188324634255,0.6534546718511529,0.7184992134775186,0.7360858277285575,0.7907901236819656,0.7055433029963036,0.7456527690630708,0.6870361718142796,0.7418095667667706,0.7000452362407843,0.7045048352765213,0.6574347474557751,0.6253854598331686,0.5663811040956159,0.5644219048855338,0.5400575857009595,0.5428806280006149,0.5478666143715385,0.5686462487282109,0.5965747213253136,0.5870507971437368,0.6161354702379351,0.65003340692561,0.6727477336702541,0.6653481609166759
0.6787215297625784,0.38687969126346095,0.37557285388078687,0.3641206854889839,0.3447689496770452,0.2888257850056187,0.3474667351101626,0.333998377334605,0.34595137091136485,0.4346548362946864,0.42362990624637,0.5394588116237847,0.5996022822892689,0.523016996327127,0.5272947875166466,0.5460232552327835,0.4298381986393802,0.41314388901983956,0.38912630744425747,0.4878723011018949,0.4201130618069091,0.4101746804502779,0.346934183560763,0.26676055544601873,0.19182955922697936,0.21292319613473387,0.26653811286448503,0.40498389655867484,0.6570654362964954,0.7495734136439245,0.7638173884986904,0.7805113495945638,0.8291893149984092,0.9133104265435954,0.8928544495888373,0.8296075989323618,0.6466495746483297,0.5299580697699497,0.49196818777469464,0.39126609718333694,0.31022423068804306,0.30927238632442167,0.20043429678603597,0.1801048093749147,0.14302675969961498,0.09710784115337823,0.1208841988363949,0.12275613918149636,0.12048906414802135,0.12530219728758019,0.10798793254834863,0.17516646159438723,0.20373808452968012,0.39450477189322153,0.47569019675550067,0.5052924271632944,0.48721426434671533,0.4380080498072725,0.38283471206886216,0.4374935666315344,0.4003013343620506,0.4304604132791383,0.4658963411785628,0.5220802321532787,0.5524627224621611,0.6011548208215227,0.6622464207209653,0.7890540935557464,0.8435883286265191,0.9262828235276458,0.9691660162928848,0.9697953319040028,0.9753495513333961,0.9824632663316212,0.9604911150131366,0.9375441023063618,0.9265321643897404,0.8981219096007877,0.9117716955416388,0.8594525733238318,0.8176426604904765,0.7759308353529151
0.4221149137578565,0.6094054532007165,0.6287738358712507,0.5930457909767397,0.614215069835648,0.6180694768001218,0.6519115044669711,0.6367375132630338,0.7057604967131021,0.6976071291480113,0.6568993504096164,0.7175413181031356,0.6683469986261201,0.6805590500023069,0.647842631514536,0.6572855080996381,0.6635379447306785,0.6190580734448644,0.5935799564667839,0.6422458742984615,0.5402423857661391,0.5769488241912671,0.49849020064040456,0.5031602196690862,0.46827682987941593,0.4716203763612199,0.5516317173401581,0.5727688302930392,0.7308946902879246,0.846059272685373,0.9295665501962781,0.8838134214382514,0.6110341123813379,0.33211822314652517,0.20891320743263675,0.18475225945148477,0.2210678900470806,0.4173114801537231,0.540974771830843,0.47791112174747274,0.366009930962121,0.2815106199509221,0.18749467701265465,0.24118932455241904,0.2971793321387938,0.3646244878622459,0.41817604771427397,0.43752085382112815,0.4796195506300662,0.5349589457555202,0.6438402880156313,0.6788561867158602,0.6064542858286014,0.5830381275643046,0.517287855963438,0.48545968790571153,0.4513938614536298,0.40379733288949493,0.3397815074419897,0.38481558902106894,0.3403505349671405,0.33858105356061907,0.3231006727860042,0.39833178043523754,0.37996681253635034,0.3751400006994431,0.4357185284730021,0.4982123788064745,0.5807968688406795,0.6321014076056167,0.678658506779549,0.6989063618166896,0.698239709744163,0.6927459032100469,0.6903151455658898,0.6994851122456899,0.7049579192553463,0.6962462625380228,0.6750133381651237,0.6916124529408387,0.6594662144502261,0.6397060819613708
0.9743039535321093,0.6655982147026438,0.6682363060215178,0.641678920073337,0.6405699908191924,0.6075167924669844,0.630700356547174,0.5641947549207187,0.6263307218684967,0.7241238126216947,0.6837931219036069,0.7729463431946553,0.7627233556457971,0.7361105406130999,0.7499274404164304,0.6596719766155162,0.7001370843795969,0.6482194596492656,0.5920646759147312,0.8048124095253768,0.663672439655359,0.7176306476170256,0.6246078668324773,0.5802557453705647,0.5347696613757008,0.5836400809363529,0.5632688258225464,0.6096459795277054,0.7528957169423431,0.8323324945105023,0.8232327467593267,0.8447899394653011,0.8719732465118408,0.9062371282477225,0.7595996567888641,0.5787982954454015,0.24302855433164017,0.23487945088858542,0.2504986840057608,0.21426614215176532,0.1619627649878954,0.21700106617644677,0.16149524235838453,0.1850421399229718,0.24493986476510488,0.2220092226457137,0.27985028435138903,0.31081767441855673,0.33937145129496527,0.3028450401610874,0.29726094137610043,0.3372700343069143,0.4028219124659323,0.4676202962838101,0.4263079442486882,0.4437014106488328,0.3665566534908329,0.3551885736027084,0.22253691009028792,0.28463117363806145,0.2955081399080213,0.25962861419088556,0.20523314045879837,0.2903952813383909,0.3425048609935021,0.30983421406364753,0.4542099823157535,0.45567364021687307,0.593459395983615,0.6366748785371563,0.6459536262169164,0.6518606564330379,0.664179753519778,0.6301819968484748,0.6563611020319531,0.6269490208796895,0.6320813364002569,0.6072671538403088,0.582617067708221,0.5879523594751631,0.5659198887748854,0.5771076515105297
0.300725498947478,0.4349049884992025,0.4423852240647394,0.42745266309232444,0.44425020019219386,0.4218789302954207,0.5064153003792734,0.48962805649321717,0.532519793259632,0.635474052206616,0.5946073690046171,0.6469677342138427,0.61873489211057,0.539940604506089,0.5277203255204186,0.5105754424852876,0.5135802098234333,0.43816127635138613,0.4357524597527517,0.4951877959945056,0.36597397519119534,0.3355771590884205,0.2902282466410475,0.2989823797586523,0.2629969407562489,0.2898548521723754,0.3017919193337532,0.43918761341670315,0.6535690291700994,0.8094787640929384,0.8815932271852105,0.7919719281203943,0.5274509334814804,0.3025623034497178,0.22916152773474008,0.17900697422881406,0.23372652999930077,0.540383238371284,0.6247973101134839,0.5461305279223871,0.44848163022070087,0.3722633922872144,0.30527000180058006,0.3873410624546989,0.46180089495454246,0.5014884788348136,0.542853186112835,0.5468354311904904,0.6247427493431531,0.7159414050472495,0.7506573610764439,0.7835089812303178,0.6655164704309042,0.7035775661944168,0.678348935531714,0.6903995880058433,0.6764818107840536,0.6214595266129059,0.6000913037465134,0.6861939464724913,0.6569796331057559,0.6938141488643902,0.6811798672017766,0.7069684551862165,0.6850237280910977,0.7252513735536998,0.7095465989772511,0.6915108571213253,0.6892275445108629,0.6681370638533424,0.6270184029113524,0.5901548950585939,0.6015849500013537,0.609713676685615,0.6068613645815737,0.6131882472196863,0.6308805028305211,0.6311047052007177,0.6553949441777468,0.6825092636801453,0.6816507286466578,0.6862642390189664
0.6821888791064425,0.34407259285368913,0.3746802367886036,0.3498728405015563,0.30546341202386695,0.2878900875256863,0.33994281895556394,0.320609139536184,0.31951061751039944,0.437496446086087,0.4281726540828565,0.5361529779323428,0.5853580612075563,0.5956561501227258,0.548925500280403,0.6007444843177278,0.4947088314473115,0.469536510001232,0.395768498176304,0.47112455928830227,0.3267656405347848,0.3841554575517434,0.30205737203391864,0.169822230218736,0.1327503749936894,0.09701084968922735,0.12178709190411363,0.3218413850718135,0.6466426183797427,0.7376957816815931,0.7527935134777726,0.7918189798450875,0.7884175713367811,0.9008642880449526,0.9583471773197505,0.9332063559444781,0.8390466069878957,0.5572324743526325,0.4667759858784698,0.32484787598454434,0.21414553613115606,0.28619000817840456,0.21534559324698332,0.2129150492641173,0.16921232477199166,0.1339072926511654,0.16401625282149923,0.15309033928278842,0.15133491138527588,0.1596242344151385,0.13046736168943077,0.16389577041764802,0.24093557946268393,0.36640810850016836,0.3344865308936676,0.38428162614243017,0.3906314475031005,0.43332950327081865,0.36995243882587786,0.42012534730318507,0.41102343328787916,0.4775963897737733,0.4830688718455911,0.5899593067038216,0.530426101868963,0.7085027390369028,0.8114698249743562,0.8208453351969955,0.9566418363638587,0.993563119008594,0.9840749820380374,1.0,0.9846439748422109,0.9497421587529341,0.9222922186680842,0.8826594670787333,0.9031193736279176,0.8558691044700557,0.8775471313855818,0.822859384616297,0.7961513402899432,0.7584338845957705
0.25683694760336856,0.3955934697763257,0.4331609557994294,0.4254349540686654,0.4359332448370365,0.4350451830124619,0.45428223327100853,0.363996718097036,0.3546383116939052,0.3914943906210184,0.3376259998694607,0.39775071707463516,0.3609065483844184,0.3710993118064918,0.42276615576513127,0.407849262463314,0.3978679434696672,0.3308212640517284,0.30616541093021976,0.4366000816501132,0.39789799789151925,0.414709017842338,0.3799904646049635,0.3371994816572941,0.2967866590002043,0.3488799957483655,0.409474450751762,0.5914721062460976,0.6851302172388782,0.5504887647673511,0.27646146590302556,0.1343618722192289,0.14331439629030218,0.18713992048136197,0.2702297257681888,0.4137840242591806,0.6212708506001694,0.714707952183223,0.7741718055850443,0.7606234325015553,0.7192945904724113,0.7765549249841661,0.7558207661363755,0.7942846997652357,0.7775960250083662,0.7476948504117337,0.768576408422568,0.8156833808487396,0.8662540699615024,0.8642740573542194,0.8313349351109925,0.8089585105070215,0.6921888745819,0.7085254593366138,0.7278637976720117,0.6778844038464014,0.6719875157629538,0.611974553766783,0.5540182827796973,0.6055317993601212,0.6108824253210404,0.6412405788271928,0.6609585947004295,0.6622472413224969,0.6651245557001167,0.6559687375860068,0.6647295501770327,0.6949457734130471,0.6559679536781613,0.6827088526941085,0.6519087333040827,0.6143284469693482,0.601456520362372,0.5986501013400588,0.6109067345619481,0.6275878406343569,0.6470569411747177,0.6474252529233596,0.7039491018574706,0.7178925149625679,0.712814443809902,0.7045761291972467
0.3027133491096638,0.5214613892918312,0.5314721532682828,0.45168937514404633,0.5181572755451562,0.469861087254301,0.5535412357494365,0.5598343400423789,0.6319654951773951,0.6568432912956715,0.5959242027601691,0.6811006944463248,0.6447073383965798,0.6087409085928921,0.53687414900331,0.5223038206695148,0.5723088649393124,0.4750109125511799,0.4209568117819916,0.4419135192887016,0.447272400206344,0.27386476336639504,0.2446035241387456,0.32904253947304635,0.2895746841396051,0.24473873966067722,0.2677231802204526,0.43044937241933484,0.6975830856158869,0.8599128088018682,0.9298541793288676,0.818548868132344,0.6004062388716335,0.3427869526839554,0.22102931822767435,0.1776454303938706,0.21460020611300457,0.5116608137104016,0.5994841149027008,0.5605830136709721,0.44011805669143855,0.37841883705348156,0.3337467037909221,0.3820986341652767,0.4315794030721116,0.47424163141317877,0.5032914015707788,0.5158662214165393,0.5730528812343474,0.6538153656214141,0.7067646940963515,0.7204156656214069,0.6887586142350554,0.6419135296003408,0.6396210162925278,0.6911221962441603,0.7061398000487134,0.6544281062015618,0.7003739047528128,0.6302554944421619,0.6246830811254357,0.8099299223566384,0.8222981679108385,0.8146869936258208,0.8235606714666365,0.8050349587014753,0.7983064232984705,0.7640300965297637,0.7413127809242033,0.6161942304796052,0.5915510262104952,0.5562228669443453,0.5423912267685775,0.49384889601008963,0.520969437842892,0.50776908050894,0.5147325075463209,0.49906932449563524,0.5660385782594854,0.5867153040289388,0.580883876472208,0.5655443022013406
0.39685338746885707,0.5921832460417524,0.667122038767504,0.618758669693932,0.628152199246063,0.6546193657984025,0.6844962450107631,0.6765418131614562,0.6255870445807304,0.6217746293490424,0.5717766734986123,0.6111701264423404,0.5410277747059355,0.5607141095694685,0.5885594291437952,0.6108837173645771,0.5813956489899472,0.5452696394396089,0.554573123599647,0.5994914924310697,0.5088208724623666,0.5411355384712525,0.5956844229537893,0.4941570138462956,0.458901208348764,0.476395846803588,0.5552643735180125,0.5491956083438239,0.7757468666908315,0.8307142206551412,0.6379126083605773,0.33778786191720034,0.0889252111646529,0.08001789997689324,0.10207997018807657,0.18744724040306293,0.4631727188001884,0.6266613413480439,0.671832722903753,0.6523151048993577,0.610357380862175,0.6029522418761737,0.6226119760408634,0.6708417539905193,0.6971754979748942,0.6575239969718106,0.6494995944354011,0.7152149737321305,0.7792456479864543,0.8507988521150481,0.8449046142145288,0.8107688784922242,0.7083291422630177,0.7135434047611213,0.6227443662087451,0.67264169367629,0.5652340511815952,0.6159558044741288,0.541738663220134,0.5814823835578151,0.5553271251491815,0.6106512948831085,0.5830976893776156,0.6426925149798335,0.5698132507782435,0.6437409262957408,0.5036212254217884,0.6011348779619619,0.5322371066370617,0.4992189697219491,0.45993969780951405,0.38158893947294514,0.39312950307504924,0.42916230174430303,0.42472925447161425,0.43181944999039734,0.4477484345876075,0.48364041930636753,0.4591250230184955,0.5069934493313705,0.5280795687457459,0.5286497995061064
0.21462767058485846,0.32017057633532026,0.29944749370239876,0.2867887940143724,0.299097029719798,0.2578527291587053,0.33926824791272503,0.3367289997405475,0.34190891796308975,0.3614925791968689,0.2835830906115019,0.2750944350603599,0.2990230308662111,0.2643530809802505,0.3003579902241164,0.24318346669561608,0.2758549281541627,0.2649597254111122,0.2556943704117181,0.28796864588674703,0.16852380955648727,0.1334030321138192,0.22419780610046558,0.14531852343224427,0.12713477037714188,0.224880075741213,0.17674730660686533,0.35767027919919014,0.6593625841402735,0.7692670088209435,0.8072705478036087,0.7925699039579336,0.6378929301338703,0.38939884779876655,0.229344268772131,0.27464153394137847,0.4702517490373559,0.562016534420551,0.6227215247126285,0.5918645803313496,0.5277923464907585,0.5113307045538187,0.47314852270084573,0.4994006976528092,0.5558907884572328,0.5558240269680254,0.5624454195762403,0.5607005545533895,0.5971832357622198,0.6612361728915706,0.7277512017917165,0.7766162806600505,0.7697843792410181,0.7679688772132223,0.7260481144453479,0.674380461559132,0.6986732450783728,0.6025310756625539,0.5576952780296995,0.55153077646023,0.5394216000872328,0.6118728480843324,0.560896196691135,0.5915596201785238,0.6085761943150859,0.6314395838134532,0.7075010290987993,0.7677146473733889,0.7941999251066085,0.828047795838004,0.875511507916432,0.8733523685685042,0.853404551872246,0.86930688356566,0.852146285723729,0.8375759137593617,0.859099382018472,0.8498856151594737,0.8723173883266744,0.8593644883473711,0.842995680222328,0.8416950235153655
0.3159666347171005,0.45235743002740014,0.4485550382709223,0.4391202588327804,0.44908474665110654,0.45336627886499803,0.5027936319339764,0.5264879216648014,0.559301513014748,0.5447081834285298,0.518298637967583,0.5555598060734853,0.487671002289145,0.5193429620441372,0.48329726188199407,0.4994433721301224,0.4832304278588663,0.42770077154161856,0.42543789227273954,0.4267781249922012,0.3320295434351218,0.3258532228581473,0.321071534805593,0.3033554508472121,0.29313088135291154,0.279836993329644,0.307009561078003,0.4425890254137335,0.6988699224339879,0.872828775764539,0.905190706746404,0.7483555518628034,0.4649509452151514,0.28189216807482176,0.2469425440194183,0.2722156521508916,0.3908327859531351,0.5899561747686841,0.6205068706425747,0.5450662680802468,0.4414817735798354,0.3589348220489349,0.2845687918388232,0.3417142503305254,0.36621516322332737,0.41369781908473446,0.4563182317501973,0.48515983050613626,0.5600459785316559,0.6541998362830191,0.7253045610083637,0.7346580022514887,0.659537177700169,0.6063214329657928,0.5843811586179615,0.6002446436451379,0.5756816450079774,0.5176952197395494,0.46362120939522894,0.5235843301504619,0.503366434581894,0.532567468193012,0.534865158964154,0.6003346842470489,0.6135324876836742,0.6217956765452533,0.6932865660569651,0.7777576992815798,0.7932643496014038,0.8221590420300792,0.8296236767860713,0.8023055807345179,0.7832262294850116,0.7512120553349465,0.74178942388896,0.7282386060536734,0.7299959954812798,0.7139397773950448,0.7273699443920442,0.7193304107780534,0.7107873242986444,0.68558327456461
0.3981968143220272,0.5589434894338776,0.614293736370919,0.5791880293826563,0.5892679672805141,0.5101700824397016,0.5552900809640997,0.5485016799967745,0.6209761377221089,0.6490568390727751,0.6612458836064039,0.7057057099341261,0.5774313571162376,0.5693714420780234,0.6001665063185533,0.64169209587753,0.584629635223279,0.5284673297617767,0.6394760535000849,0.6883881238941377,0.6462401038634831,0.6683582214442388,0.5672829393868476,0.5943011810250394,0.5241035812702045,0.5721100908156893,0.6002513645688189,0.6337551187017098,0.7520285362749511,0.8271050559939372,0.8420920496499705,0.8624485587148079,0.8952175622685921,0.8591074540523017,0.7047191931199833,0.46183322987492104,0.23541830737432878,0.29545631013059226,0.39471082430485194,0.3349432565325611,0.20462821511464346,0.1495305183539697,0.0978751449474543,0.14994783020079738,0.16536849188768965,0.18655274453461823,0.2427886540776748,0.27540014145330655,0.27706645482024095,0.22016666496914591,0.27498403737011246,0.39956645255101153,0.521289378605226,0.6295649476407479,0.5843301819560969,0.5239995147228316,0.4132339114769775,0.38231145912979425,0.348141675019858,0.3516598189353598,0.27238444369136383,0.23564897056843193,0.25295659540561954,0.26349245488217354,0.2847495819469724,0.34298921557462403,0.3958476792394656,0.48683016906508647,0.6141942706161028,0.7102446462284221,0.7075965491876769,0.7925123676707365,0.8136963259867998,0.7821783143517169,0.8051307415714111,0.8065845437334028,0.8094674204564338,0.7940943991240506,0.797229267762076,0.8026377635066102,0.7351866257042138,0.69697969219295
0.3187219890950913,0.471293594952001,0.48579839856570617,0.4938533803931139,0.5356986424574224,0.5486639122591481,0.5959145907812651,0.500125529490887,0.4574018436578122,0.5120852991658346,0.4479015951044455,0.466293610945784,0.5009209881452069,0.4765546790082046,0.4770915085806864,0.506083943177582,0.5041866085791583,0.45327951263091426,0.4319126523006511,0.4795090071290443,0.40592261442631805,0.4658030388829463,0.4291047377469046,0.4393539608897668,0.3471290069774069,0.3808012807353013,0.49258024064378025,0.6739338068195333,0.7111764297820411,0.5979577690672975,0.23068370243011416,0.06573970716984756,0.08111541035537007,0.13175957158749918,0.2170174157592194,0.4049715707344327,0.6323532648506254,0.7199612028707064,0.7753214192519735,0.7777068772975759,0.7552982757560533,0.8088782227289117,0.8154749196818328,0.8661274921147479,0.8545686814409353,0.8090367286985213,0.8189005070143991,0.889645983827279,0.9403401598624799,0.9299420452144052,0.8913005383944169,0.9031620630835594,0.8715671838372658,0.9388565909378742,0.9344947785659943,0.888976761376419,0.8358900215187428,0.777605333841169,0.76474977755421,0.7400865987205765,0.7184439853946288,0.715687696907945,0.6787451683803942,0.6457476373426148,0.5785949613273961,0.489529091002024,0.41474406601361413,0.3556286014565999,0.3239468659404349,0.3173358980546441,0.3048252276610963,0.3204466365470038,0.3151987967754697,0.3489259069867563,0.38732614662777354,0.43092359631465427,0.4621622257877517,0.479803400318839,0.5469501860544717,0.5911276983366854,0.6229270778574246,0.6520183297194952
0.1520208067771457,0.2076558105765161,0.2277742027243928,0.24050198694192776,0.2555873149170347,0.21368911489227382,0.3242923289515194,0.2569490053492801,0.2021915254269226,0.2629525896999626,0.23045316120755271,0.2563546920392576,0.2723793474846788,0.24640813983469972,0.28631425785135733,0.29089879675674113,0.3025224518844119,0.2646815281063668,0.2370115850159275,0.28213963226327443,0.2960481550606128,0.3218211482885344,0.31300041857041927,0.33416422986962296,0.2941030357632337,0.347379122621307,0.3826112089636452,0.5616292247112256,0.8032211395024192,0.7940905514111808,0.6131396535850838,0.35202281031892924,0.18576124290356766,0.16270429636038464,0.2825112435365088,0.3913152416432042,0.5977923096234597,0.6733679083433745,0.7296669366672051,0.7517773766094071,0.7069481036357015,0.7167757882175587,0.7329300036574143,0.7686056120264997,0.7810011084230962,0.7476305013891104,0.7821314297078077,0.8279591084504115,0.8753042068489614,0.8886813560860004,0.8970120461863537,0.8702609704388532,0.8472073605577408,0.7983567588895091,0.785460464628015,0.7755660586821709,0.7491565696870097,0.6646179716950035,0.6123340835906605,0.6482451441337262,0.6543095442087213,0.6317114216171805,0.6385946821545005,0.7163606103680431,0.6825809468196399,0.6738041989897532,0.7419374874666851,0.7496064349882638,0.7464670285593202,0.750822364497072,0.7106628267323577,0.6985967292128634,0.6744247990041485,0.664613998067001,0.679974689421111,0.6706103682333688,0.687004265852297,0.6873772495662929,0.7043949291030338,0.7172261041713837,0.744050685204773,0.7354029178644171
0.4580763864054925,0.6647497314974236,0.6900069784093958,0.6291625416587915,0.6392441978288919,0.6307496198352281,0.6630366980569092,0.6147627477633644,0.6969311396185256,0.7720218811593615,0.7648598875577004,0.7108594046308336,0.6568847871657624,0.6903344818828904,0.6294664807296932,0.6068405321781181,0.6778177302931774,0.6422846626275677,0.6532434337616659,0.7569291982537268,0.6750864738818948,0.6554622779555702,0.5873269535291146,0.5897661230506344,0.5439762308043382,0.5677756432108031,0.6582040219355944,0.6338581488683546,0.7637142000616659,0.8281918719583419,0.8362544094854699,0.8458767947598403,0.8912592998704015,0.8797743646669202,0.7097686559969224,0.48862944977517575,0.20237683372366422,0.27696802677331767,0.33010622153883784,0.28770551558350177,0.1975403752507532,0.17473108154733363,0.12047461567420936,0.14651306491066896,0.16591674389532518,0.17542400601828823,0.23794372764827082,0.23296296102996045,0.2641643057366177,0.2294429277946577,0.22005360298719295,0.28576715223208776,0.3442555847646749,0.4771794066636075,0.5127436205432292,0.4341945386792146,0.3566496255875198,0.32723331851666027,0.21365817150172633,0.17163575566949663,0.19063111615203632,0.17173967344000585,0.1808550274828794,0.16419635701777924,0.22094156501639362,0.2714381535420963,0.24744755402564778,0.3994602586216255,0.5475120241773861,0.6256280218626401,0.679942269566145,0.7342295347488154,0.7748140707997764,0.8247996854547697,0.8271975508071516,0.8221451099897927,0.8335116333230025,0.7970857111984077,0.8092227684917217,0.7468020675867759,0.7341358343047119,0.6851672929661838
0.2521033584895097,0.3781408926788047,0.38260482796867545,0.3481707932695184,0.3254767724440736,0.3165398676239377,0.36600490758936133,0.37136831941417386,0.37216836330227915,0.45721371302173186,0.49833806029779243,0.5753682854528396,0.48263916170532856,0.4810337502687433,0.5063769996293868,0.45869181892395483,0.4533638468214317,0.43056906286890484,0.4091966206941935,0.5042029990342033,0.4505596725697433,0.4333338938720346,0.35810040727913367,0.31511021105622766,0.27725639132569374,0.2626206206250936,0.3832142174464947,0.49226729868480046,0.7002638066358637,0.77855203141291,0.8028548812157346,0.8300748328167347,0.8487633800478732,0.7534012883538975,0.5091027295892416,0.23940223719504383,0.2131191271263284,0.3362918202464542,0.3993169173399701,0.41652286511647074,0.43307432378151345,0.35717285714158653,0.33204991823568,0.38997155391449034,0.36972618759530207,0.4217261631270339,0.48055684520624514,0.5042045140212865,0.5183299518202329,0.5116061368725527,0.5806084520623027,0.6646355007290385,0.6756128672945613,0.7800482600989733,0.7195883518538577,0.6881965109122001,0.642119022207887,0.5838346729775508,0.5933914935750801,0.6230371828878976,0.5913456296110219,0.6353712253277698,0.6340960403934306,0.6688729135332476,0.6697800679832949,0.7084860375923736,0.7574912139160621,0.7831328263174784,0.8074395417376765,0.7860019194643103,0.7879509195151827,0.7504850945945613,0.6988399493200352,0.693503345982273,0.7024675039539685,0.6725201087727355,0.702070297518725,0.6814454611356013,0.738129653763402,0.7269668512822958,0.7226423668871879,0.7238674839224668
0.3149702380130971,0.4566736710817077,0.45979074904771833,0.4313254015153872,0.4324383254847062,0.41110497890151465,0.44172006795612734,0.4263203753923828,0.49065095585656254,0.534947880409461,0.540273501072535,0.612706504768192,0.5717090405633025,0.5530702112804593,0.5388818846311717,0.5292401831960121,0.5276953673544192,0.5069690401222982,0.483622442023373,0.5947507212646871,0.5872247061068648,0.5843758434744621,0.4765808346693321,0.4677340096391204,0.43417692654596174,0.4748997351555489,0.472162324627732,0.5849253743549656,0.7499084990693952,0.8072979543495824,0.7998689994387653,0.8487094463206598,0.8744795035378099,0.8321801651569606,0.671659916062628,0.4203788577094213,0.16930578434710442,0.2760850600312441,0.3259900077161292,0.2705190928751672,0.255216676737793,0.2675793703766093,0.24297813896940323,0.30506510371919415,0.32496105115647683,0.34819439451688233,0.3915793324593198,0.4015915899823942,0.44809492663198075,0.4388513341587796,0.45447243157051553,0.5383843630679228,0.5793980172407761,0.652685742049082,0.6033072111339779,0.5629357669880672,0.4825146439586454,0.45897457744928827,0.3934353095821201,0.4109035150998922,0.39382569209925666,0.4192036240596,0.4146926238425729,0.4452045189601186,0.4344062047974876,0.5080687032415598,0.5630333814697206,0.6727821770809632,0.74467548630394,0.7794559874764612,0.79293313972326,0.821218909011929,0.809272453547901,0.7926298034560091,0.7604499481699207,0.7637129596853177,0.7521024569842986,0.7467532190510195,0.7539209476141902,0.7375671252009447,0.7203335255618589,0.7022736769572615
0.1900072704648406,0.25699578379404314,0.29669106198951456,0.2291192619724915,0.23044857624121734,0.19603432613341792,0.33909463876057944,0.3198091981715713,0.30443385301519477,0.409631843873445,0.32907364782050824,0.4182543851715699,0.42811858904987476,0.27387333858913127,0.3107244608561723,0.38148691197301127,0.32854893736648755,0.27684494865280923,0.3386179628173366,0.4030923108699612,0.3431384946465438,0.35229580060996096,0.2607092581433955,0.2948431492136048,0.2985235396422627,0.3070788432433568,0.3612095222330809,0.3851920821731192,0.6724615743907838,0.7739921749147098,0.8224302132212968,0.8400263919736866,0.6648558041213697,0.39361090450837377,0.23226952542940948,0.2458510063769156,0.3794438387916599,0.5195942498165375,0.6269466049573201,0.5986343651684978,0.5309728454223009,0.4894187499917583,0.4534295234128902,0.47497152252966746,0.5064221023836709,0.5543149793002311,0.5431336653902127,0.5418897393593387,0.5961656066847983,0.6754816193038176,0.7140345775301344,0.8545602446968175,0.755859145842914,0.6615771022268191,0.8341704580119471,0.6431545204475755,0.7081461907770765,0.6106075869020609,0.6034429835029063,0.6150925935797131,0.6663192909068935,0.6955318322149185,0.6751523999704401,0.7626198124519341,0.7450221430669844,0.8127130274854215,0.8347958227500649,0.8566251005416656,0.8848087949621763,0.8323354364177794,0.8061501951815836,0.7451464757519365,0.7346694267888836,0.6708089502922846,0.7171138910377914,0.703011218505053,0.7406743546314978,0.7399207374496561,0.7790316359108038,0.7920736997409195,0.8039157090612712,0.7926597426262884
0.4350872721917731,0.6504017747530756,0.7078765362850288,0.690278028321997,0.7359506540806693,0.7432858521471845,0.764932508726943,0.6506166832965139,0.6433144348934199,0.6623323154572068,0.6011870588111959,0.6687568203099148,0.6539028538782112,0.629450467872565,0.6429378426750862,0.6684537763408199,0.6769017496148033,0.5922631921831213,0.5857226198572989,0.6972467804209428,0.613547599134249,0.6365054227319799,0.5931928900510377,0.5974916846157104,0.5726595654477917,0.5504397299127942,0.5545633097923539,0.7482737536116014,0.7751951024700077,0.568588583344963,0.225815754551699,0.04450358959260037,0.06031539503588912,0.05659710022237252,0.1516130584205213,0.3984007639950039,0.6386547286197878,0.7285175502839107,0.7823001703178751,0.7692534880022186,0.7597766079669317,0.7848117005804124,0.7992709677121073,0.8389795914551842,0.7938461907279503,0.7538899228192631,0.7920805173634113,0.8419921507728749,0.8635851168889046,0.8403090280876545,0.8194276950418964,0.7967145371595871,0.7702653766829496,0.7145089415492899,0.695471187656729,0.693907592834895,0.650551256926297,0.6330281570599576,0.64206801761942,0.659304174763713,0.6666258274824374,0.7044338685988226,0.6342004368431746,0.6344888052408666,0.5428530177260088,0.4456807374281839,0.33425092754836305,0.3032313084693261,0.22890160831387668,0.20062724243060306,0.20068438429266783,0.23107391504849256,0.22181422654454488,0.23415223175043906,0.26388325708256827,0.3229195871292467,0.3312682943732971,0.33008610985902964,0.38863794500330906,0.41869056945655886,0.45790020369797096,0.4561185866549923
0.9782022868844994,0.5873359837136053,0.5704208142359817,0.5480263043518135,0.5656439647518335,0.5167930828163286,0.5589576418460991,0.5373410665495159,0.5731334933286244,0.6381860595805504,0.6433275646564643,0.7156336621884816,0.7156531802847752,0.6838031359856305,0.6687463590656415,0.6349825103638143,0.6244249617936672,0.6050228442133894,0.5651254920535221,0.6926553800040605,0.6719449089684422,0.6546684142793882,0.6338474492587599,0.5649027360148353,0.4521168381060676,0.5440120995042166,0.5748814794278214,0.5446563477567192,0.7397568981010424,0.8171964494468289,0.8256345014390201,0.8415586206787352,0.8520825478405846,0.9028194698432147,0.8246739335452484,0.7534887124099277,0.42691643252550326,0.25682655879834804,0.27030284453392617,0.22800660316319876,0.12173722297150613,0.16520027922310754,0.10763646918703107,0.1388715383608531,0.19820935288352337,0.21898955607982795,0.23614587349010163,0.2627001417788548,0.272840742410161,0.2597300172655675,0.2629112254980362,0.3125963030412916,0.32893007629301996,0.4739172109507942,0.45686490224838366,0.4274505227459257,0.35097434655012494,0.3603720207919159,0.22812736750247536,0.22802233006438488,0.24214547850128165,0.24448385350410118,0.2681517613702753,0.2949674785992433,0.307097955073787,0.3329625201650327,0.355572259592823,0.49850061308660587,0.5965029758088032,0.6553146308866981,0.6922674693140125,0.7189147933420126,0.7490668572809778,0.7554271977727754,0.7427251741073505,0.7263110438125187,0.7499404232249444,0.7118512169799414,0.7267045140488935,0.6893436528957798,0.6925757186815082,0.6718963199967175
0.30746012678365914,0.4543553753989882,0.44709267551669585,0.4676609949303674,0.4594837199090544,0.45939667815340046,0.5249468854368716,0.5315441446375526,0.46076505313079014,0.5056528984509752,0.43053271893316614,0.4459945182986038,0.4347397471944456,0.4532246782735624,0.4275871007948538,0.44046340101498305,0.4184680909154539,0.38134016798538795,0.37285082707339573,0.3188855596299056,0.2157458122189449,0.3367933621599545,0.305093818827631,0.34689344064245986,0.24355527561146761,0.20203039720880633,0.319625284867033,0.4833129883275774,0.7405669872391083,0.7332804557602708,0.5521823801621963,0.2397314250619912,0.12249870886765701,0.13512360158925507,0.17689292417752844,0.2791089608161973,0.5895848737357237,0.6963997877581128,0.738772815562268,0.7155376344914219,0.6622003070023932,0.6844677500407939,0.6904940022089593,0.7193289216873244,0.7097660461848572,0.6913921948539826,0.7043643675106985,0.7368476432553195,0.8469330701447388,0.9059539391611859,0.8175702395709419,0.7931036464405407,0.7435620719469974,0.7441299181386284,0.7017392779996081,0.7130932085014714,0.609330563198766,0.7121624282607852,0.6415627872365686,0.617804775677155,0.6392435684637706,0.6880980520880992,0.6184462815732157,0.7081986087841998,0.7100234567228308,0.6818743594043257,0.7295820182227069,0.6867519471753529,0.6646984791275117,0.6348655770430697,0.6214321244029306,0.5880879569620621,0.5465339405565236,0.5271931852472641,0.525528237164675,0.5664181374362953,0.5868669027614191,0.611373271731024,0.6413643472398053,0.6921189199589758,0.6663107147889972,0.6892936454165549
0.3712535544056691,0.5356738449681939,0.5084091878979394,0.5298231669533636,0.5396221953466181,0.5500522854313549,0.6154133825575565,0.6501801104629543,0.6890272782504837,0.6756678373198627,0.6396135238575158,0.6778913736404284,0.6449928626495314,0.6131268527889369,0.5182656166604334,0.505194710141929,0.5286670656013241,0.44706606361483836,0.44321370072244437,0.44560650605483587,0.3157105585802123,0.32103427282937846,0.3376670249075372,0.3011441593227438,0.26490828198170147,0.3089696631887237,0.26328657764449104,0.4140857498562254,0.7970891966838679,0.8717284760707354,0.6573598502807901,0.4284531127449133,0.24640921302868624,0.18426490635146464,0.15813066652534957,0.2199975402088138,0.563833243345175,0.6565828135515321,0.6447715227488988,0.5850045632087395,0.47621816826565344,0.44728330470477673,0.4989638848139437,0.5829091772504995,0.6405525989363114,0.6197342954341475,0.601738902205625,0.6708442239133394,0.7431041499287299,0.7929684959839626,0.7593866292158111,0.7857073679455544,0.7432925928495094,0.8049945989561565,0.7959234068975782,0.7516846689141476,0.7584230531818912,0.7266389710846393,0.6953214785332165,0.7559944870683106,0.712999649121835,0.7614846904942577,0.7955510893266966,0.8156593149921327,0.7939770951176707,0.6842378940307916,0.6715766748239322,0.6212454512489163,0.5765916128082693,0.5180155813212598,0.47608259388207197,0.44257278157392693,0.4439689909496448,0.4235212176465389,0.44353749470961973,0.43513679181012516,0.47993106420388343,0.4587863437719488,0.5123683327278816,0.528839508834543,0.5564228540774033,0.5672670045904046
0.6803246988020688,0.39240111347604273,0.4094832370513273,0.3632702599891383,0.35085279069561326,0.32437278534213365,0.39958134512129523,0.39556581125250867,0.40074019216797435,0.47426289351721906,0.48274034198409554,0.6271338352178826,0.5965265521115397,0.5642497711412671,0.5863366401721074,0.5246730915507126,0.5584707587548225,0.4717521640801495,0.4592763072025515,0.5100750103530641,0.4308402493619442,0.4374625813752876,0.3449830193280564,0.23340474628856694,0.23321290391657068,0.288138741880259,0.28218451952982276,0.4041640650770069,0.6771881497969913,0.7673443632962932,0.7774849582733941,0.7977509694898067,0.8830038818493529,0.9709419200838952,0.7879733863113446,0.6476559472931939,0.49789507953921475,0.4632175476506313,0.42787149706784144,0.3356914501512098,0.3256070383902476,0.2735267256644006,0.1791135416753673,0.16881136154486487,0.14203795171661315,0.135725539396219,0.16833500808877966,0.1896430538928624,0.2281334992357154,0.22928892229483266,0.2291558820067059,0.3579979302697821,0.40666900575133824,0.4924182247451059,0.44936880169934396,0.4663891994312572,0.4362192368395267,0.4393245438722151,0.33284646161264936,0.39982285893624914,0.40052998049626776,0.44245896977609245,0.45284233040745336,0.4463511377587779,0.5380221957065924,0.5516721396590483,0.6085592743688872,0.6893465152171099,0.7884751973843345,0.8548940757652411,0.8941727809103217,0.9111492615184466,0.9075086137117583,0.8910858088546846,0.8880187251172531,0.8769783298924543,0.884750679274001,0.867095295700244,0.8753277198255235,0.8306463960070753,0.8137732645622696,0.8004105415085835
0.2863811901955968,0.41937913015709477,0.432678790241933,0.44600675313034077,0.4792282383043792,0.5044431741323943,0.5909126081978038,0.5318522876869135,0.4898600700429164,0.5551766120405086,0.4528150386617976,0.48838094033762125,0.44246384905816116,0.41829882399062845,0.39521536331633667,0.4061916612789703,0.3597274933078663,0.30164794072884205,0.25444045909136526,0.302887040547458,0.23667924323020662,0.26114356863254823,0.20335810490123818,0.2187497808463441,0.14890561475755604,0.13542338576979251,0.4934650029287432,0.7229909992792966,0.6310654891642447,0.46403997683165277,0.26180932252490574,0.2214075666519424,0.18160630715302783,0.18017699979381496,0.3276100781615452,0.518941820135771,0.6932591418224837,0.7168884908256608,0.7021591676305676,0.6882892568525101,0.6651157951142945,0.6984293960857306,0.775396409039248,0.8012265342955709,0.7704855539131854,0.7741165341040296,0.8260157018157408,0.8653516084073927,0.8820479047626759,0.8577753422112961,0.8536434810020317,0.8869409200276023,0.9253037146598331,0.8971298974706298,0.922073348103909,0.9361080122399139,0.9029081960347574,0.8780218035013332,0.864270004516231,0.890453915395506,0.8745951331665293,0.8852918433195168,0.8328640252232786,0.8280030330833945,0.7801663761761773,0.6540623069245761,0.5914537279538277,0.49116195463739265,0.4624935237735221,0.4016134636935924,0.3765668309745275,0.4110710429111906,0.40616401951977993,0.4014056219461444,0.4337270555048489,0.46874567446515103,0.5089866397618091,0.5064431513025802,0.5607957335015394,0.6022344356740525,0.6515677417937104,0.6430552513890755
0.3533605508382523,0.49391572784910237,0.556308254310691,0.4934458609164576,0.5099240520709166,0.552832691825845,0.6337006608876412,0.6331924555202175,0.6305123777188141,0.6407676770688544,0.5820475142894597,0.5704352619116345,0.5854488630220167,0.5357723868638483,0.5289135398996065,0.5265030161695387,0.48324627485845917,0.42352145844064015,0.40736005003017384,0.38748072700603187,0.3117634424070893,0.29967924150510117,0.269417764719134,0.31479608602588155,0.26091408671798955,0.2355061219617689,0.29626470713337283,0.3722259695566303,0.803473678944433,0.9869652698447,0.7724483610169278,0.5309624753369552,0.277488756714833,0.18323404758703277,0.16815768924791585,0.20217806213515965,0.48512008547155516,0.6030610488205862,0.6434009082766927,0.599182342715008,0.4812790260003459,0.48904756468058896,0.44320806855702655,0.5473733341477327,0.583169488829449,0.5735940702720846,0.5849250480980728,0.6427223374531037,0.719778925779077,0.7250621310429576,0.740822024324457,0.7024965508208756,0.6334444401629541,0.6722531859462502,0.6685456664229983,0.6180140703513637,0.6309485264589146,0.6660493964112111,0.6174479501329779,0.6514695355002422,0.6555998758892337,0.731318816739661,0.6872053927048352,0.7737434485167627,0.7667752567698213,0.8028073895261094,0.8129398366456326,0.7269115179923269,0.7240836509462885,0.6763010643219745,0.6001810166216999,0.5690002989989263,0.5253366026446938,0.5069373849989138,0.506332408261253,0.49176388272135907,0.5223143064937457,0.5026904445765523,0.5135688941353159,0.5364614716890665,0.5875184135323802,0.5803911978406547
0.04683054651894952,0.06113567928515812,0.0694005747654769,0.03511142904308595,0.06424553642694603,0.000886308641907585,0.1163967995778965,0.13809724870832035,0.09868725303850628,0.19747425729465984,0.13061543303521017,0.16235017432012622,0.13146689284873808,0.0891661542024777,0.13095772770246433,0.13700141862571913,0.12115239670262867,0.09365107772355452,0.13019994607490737,0.18272784484658156,0.06481815990978168,0.05186829326702247,0.06349454901566232,0.08367984999255607,0.0886416978074347,0.10137752884439888,0.165352235812251,0.3754909701475504,0.6596228278429423,0.7672101273867656,0.8048907486880686,0.8242391264989242,0.6929445554701399,0.496884968896262,0.3447918025144078,0.4209369120680865,0.5917083650011407,0.6787808138692275,0.7022025567072494,0.7018975347404323,0.6316435998485646,0.6253491170503009,0.613817337062299,0.6103413241790648,0.6336002646010253,0.6087423253732267,0.6140017928303657,0.6190491229858834,0.6351613934480556,0.6747946575529504,0.7315489108285198,0.7549996280187835,0.7308821971143071,0.7324186316664517,0.7173944569524766,0.6480030985399323,0.6446591578382076,0.6237665997312165,0.5289664807546146,0.577771296192269,0.5861182901689043,0.6029549412205987,0.603776181778662,0.6588971996469262,0.6535433750952563,0.693817685686436,0.7668998928093831,0.8192101312339064,0.8733675272830153,0.9153504842971428,0.8816941518927333,0.9000645965276228,0.8934863156226494,0.8946008239003821,0.9070938468672978,0.9091564088917881,0.9294944528625593,0.9474423115287385,0.9963175727702209,1.0,0.9740458320693881,0.9999999999999999
0.6817039580268653,0.48610959725366687,0.48634057857733637,0.45673415012077967,0.44211955541216696,0.41124815324704794,0.4578978456985886,0.4426805983417518,0.4690752279005888,0.5435745714705446,0.5582036462914913,0.6665733192454726,0.643005984217973,0.6523702371932522,0.6506527105218862,0.6119323000331592,0.6062228246552512,0.5790063340084565,0.5265416357505015,0.5843892822555748,0.5582779969944263,0.5718291297434018,0.45697883471744993,0.40141950253892505,0.3535669040581991,0.3877606218432996,0.41300689932964324,0.5020382868117164,0.7163117739174948,0.7948571764927944,0.8040581568876412,0.8222509780943452,0.8663041896943531,0.9438661092506702,0.8566355809950355,0.7593951125952869,0.565074277486797,0.45365248185715157,0.4123658474812927,0.29389001448295715,0.2102675383188103,0.20853843361086666,0.12993192594832192,0.0980029866144343,0.06875702488065072,0.05274220157932452,0.08916511110780401,0.110309757110504,0.1416856425763332,0.15108048150427605,0.15769981897964108,0.22725796165792467,0.295168558019661,0.45252299926528805,0.47617268207097013,0.4705295192312701,0.42533377135236194,0.4214936029467137,0.32493559169356206,0.3254397705652371,0.33620612391895244,0.3552931425670074,0.3490478735391208,0.4028571152661149,0.4159120780821629,0.4398995716359704,0.5048965647706294,0.5637370257955894,0.6635717242329049,0.7433994846066457,0.7966797200856062,0.8314014026936152,0.8510221734031682,0.8616918164158176,0.8830452204144994,0.867584755714859,0.8773273778286693,0.8682699170181487,0.8784688170695408,0.8536050439548063,0.8199941040935347,0.8015898138962985
0.38874291336673383,0.556981584790327,0.5845253671647971,0.5309554566935979,0.5321976297038443,0.5150716319843581,0.5793927652788052,0.5649945913651598,0.5976843326376665,0.7079122096518299,0.6521124499592624,0.6956112089835926,0.6997228355041303,0.653669250622021,0.6323215538703034,0.6387349536371475,0.5915665726788955,0.5655092106327291,0.57515802582971,0.6483270204476135,0.5264549362611592,0.48788655128054537,0.4221302671250253,0.44734552469552735,0.394172477784144,0.40142916159035014,0.44311081205873476,0.5202863859118234,0.7151966591996284,0.7869577652563737,0.851406397950492,0.9508739773464379,0.8470314861286501,0.5733371115076613,0.3293345508624401,0.2656551814304534,0.28972759380835633,0.38190903422327316,0.48064891474646876,0.47483486763740357,0.36225267362940616,0.2714537795935108,0.19236285791823993,0.16057932489556404,0.2023236601869769,0.24023806519653468,0.291059076101829,0.32241812189757035,0.31902186870499877,0.3579608557157391,0.49805545435571624,0.5801995734912375,0.5529387266843077,0.5440942738890999,0.46191630271966816,0.4234395490342732,0.4206620666247659,0.38902802480625875,0.3298665447651499,0.33346387623172524,0.33785147383533587,0.3768433591931354,0.3536212147292197,0.40453480210813386,0.41153727146852714,0.4530353138033292,0.5268390719072551,0.5638554672235749,0.6802017662686952,0.7530410009973486,0.773607804335798,0.8040523702596833,0.8171131436695056,0.8194253017038441,0.8274483996960091,0.8096488800199193,0.7893454969566532,0.7606467341526735,0.7520274749944504,0.7289509660969592,0.7011393725223497,0.6618223194695712
0.41050241612844596,0.6084423762591001,0.6341002978356863,0.5981433277748404,0.6334606409516199,0.6335361496070538,0.6665602296141551,0.686137227490464,0.6929891435868681,0.7016600422590873,0.6540722108172541,0.692967875742325,0.6612683875445818,0.6641887290547923,0.6209975579538608,0.6538141442662997,0.6311917210019912,0.5767703992562975,0.5298546197851818,0.5969595315203642,0.5012518129796649,0.5325085545553239,0.4801184689618141,0.46716299341188183,0.41169412780381265,0.42250064746957977,0.43524888679575,0.5159385128794122,0.7699871601990397,0.8921262676645585,0.8628723925789777,0.6280431866993588,0.33446220635182344,0.19238083997225053,0.1577929856226189,0.15560196589267883,0.35301517647422953,0.5597832865557163,0.5776555507750136,0.5110579813547939,0.41719812720304805,0.3422175482639802,0.3445484843705803,0.4258549236982275,0.4936871751447741,0.5304411229059189,0.5440470062510195,0.6143841648619839,0.7026922849694301,0.7738186091919828,0.7651380923560853,0.7196978532451686,0.6622357500085809,0.6214775790523587,0.573389605943021,0.5766316437342189,0.5646456117955414,0.56270366271094,0.4875079707191579,0.5231272781413874,0.5246048280709841,0.5426299445871537,0.5110131972417866,0.5635023546445614,0.5655821234491013,0.5754023142597606,0.5848447778243209,0.6079854106812914,0.6192052816808318,0.5789154669937516,0.5562192997887729,0.5599864064465897,0.5293003815348198,0.5177782313330479,0.5113458557781065,0.5214969295713107,0.536531025199967,0.5100166725641867,0.5258702395312769,0.5234438810946115,0.5448131746300016,0.534640389654356
0.14680042376874247,0.2150024929692243,0.1924047400119181,0.20788396865233266,0.24825382248998096,0.15902405699377564,0.15804414764406316,0.18717683650394606,0.12015636486678921,0.1298353761109568,0.15132402120604604,0.1683319189511151,0.14596835030738176,0.0946222425511633,0.18177041830488888,0.1346568973353161,0.1063690621834818,0.054986599387151114,0.08101628575287417,0.14124571179095458,0.064949604639581,0.05330886587828143,0.04997713036213036,0.014216217428018485,0.09739515339080024,0.09220904460520585,0.3680955072618994,0.4144368809403706,0.44094360987563663,0.3336801388914443,0.20190051993424074,0.22867654739915233,0.2780745668710235,0.3250001480354171,0.41388938221987204,0.6178516285327256,0.8802433004675945,0.9202260099897501,0.9390244879562337,0.9304406992512557,0.9326087497377546,0.9400680651557792,0.9281840289330274,0.9460757024670224,0.944783526796389,0.9080668748943584,0.905919226517965,0.9293454066612035,0.9473790452575821,0.9277959396678781,0.9087968449633766,0.8950461457177388,0.9058841445564667,0.8786756281220508,0.863059670573342,0.817080124758037,0.7640241220358996,0.6928033182901945,0.6490665844198602,0.7179522575644797,0.6784713418424452,0.6868900006383724,0.6753811812492552,0.7224126769567716,0.6885425283095462,0.6612450489744641,0.704341440511141,0.6887771692257463,0.6762371121613373,0.706637717348619,0.6852669062948364,0.6676469080089826,0.6611215682378564,0.6387720819934919,0.6645717783468879,0.6903935390466369,0.7239366741420881,0.7274164336422787,0.7697284393918211,0.7923384153959061,0.7984649497534121,0.8112371929651957
0.31605136973743925,0.4701257593765017,0.4877296731993813,0.4455691753253952,0.43649456389770014,0.4063956300294897,0.4726437094891451,0.4809871805911473,0.5019798390993462,0.6041870267728621,0.564115320265751,0.5992359447685097,0.606637242740475,0.5450702036775776,0.5334433238689663,0.5613034348199794,0.5211984228969597,0.4657057255973531,0.4639913615276922,0.56383703711968,0.41617639508430404,0.3659170688087446,0.3197036283575854,0.3316860259581398,0.26536989607922795,0.2924200074271747,0.3210940533958815,0.44130263164435657,0.6840221768928407,0.7653961276772581,0.7788649818578255,0.871349834990787,0.8957584220066236,0.6765286586254716,0.40683241804335746,0.3517714463214041,0.424359622485347,0.47158147149531704,0.4949319530724693,0.47679769417260875,0.3898138911460447,0.3138939255787556,0.2236554436007131,0.19569794580905686,0.18594692012812997,0.234078175849238,0.27408332613730363,0.3078067404924017,0.3029110289996284,0.2671112058240682,0.3790254964676389,0.5056993090950075,0.5527012707551683,0.5656832540984931,0.5405723075999276,0.5217183319871794,0.47563867573285645,0.46046136685579,0.39127510700040263,0.45263119720746314,0.4480814667775138,0.46423865695946,0.4808479915733561,0.5334157266878814,0.5595160797661635,0.5702612957810134,0.6737169828158474,0.7822333147935927,0.8356458016098527,0.8799216037297107,0.9245882745313341,0.9307322709056532,0.8795622549416033,0.8802831399472688,0.8684309910729429,0.8278721394816344,0.8336504976498461,0.811235105380743,0.7942863882140574,0.7671935524676765,0.7230436290340845,0.7083649463595325
0.34195833952676535,0.5077985180013468,0.5163554949440863,0.47499561780217037,0.49978162277943355,0.48224711054333064,0.5688744488298785,0.5660193466800785,0.5821036768543765,0.5380417665528117,0.5223847417095784,0.5574123421501606,0.5132716222074605,0.5152160298025164,0.5422262696319625,0.5177604989320449,0.5309732559527357,0.5104458577410729,0.5191551725617765,0.5602219497289559,0.4486858989375312,0.4725955236161474,0.4804728253202569,0.4215354800906927,0.3713524811927154,0.43101483123798345,0.44933157523333855,0.5178364461450494,0.7352182655817759,0.8477464729598836,0.7458796800941478,0.48330064928222116,0.1634562485773179,0.07439002588590549,0.12350247332510467,0.16787734844664848,0.3533456680159157,0.6307115738478566,0.6593405273761156,0.6493037184332342,0.6104660334527487,0.6066844083677508,0.6114862166266808,0.6713671172929725,0.7010699130214391,0.6818198893949097,0.6705714221427346,0.6814016315342384,0.7350743936630808,0.8158617723271295,0.8430997952327416,0.8233207720993595,0.7656764330252439,0.7306276626547356,0.7578725983532286,0.7287109296101404,0.7042173457745813,0.6991781998021316,0.6492985155185769,0.685260039297118,0.6706771583111514,0.7069578670738353,0.711565287700739,0.714745722736863,0.7001325794469991,0.672375608986229,0.6415187123785313,0.5786742015786943,0.5347975096566309,0.5061871152958568,0.4565595527002563,0.43525283296258127,0.4336041124660948,0.42549938610008475,0.44505879024176853,0.47207192713577295,0.49921933613370273,0.48863801564803355,0.5557033920173188,0.5722706384841966,0.5966008429083507,0.6177062619730307
0.3365508253396991,0.5190764368088789,0.5288334317991475,0.5493259469973372,0.5876932680816713,0.5518595465304524,0.5904178920409803,0.5470796369582204,0.505990073827001,0.5285081780918869,0.4812246792708742,0.5000496996942515,0.5028121800489107,0.5035445032659525,0.5166428931182211,0.5493263067336085,0.5492553699757419,0.49714222715954537,0.44138900571343564,0.5254314119230598,0.47311298675801966,0.5004367757851832,0.46239651591387776,0.47668595985277473,0.42011387542721496,0.4120015312916526,0.45494473822980924,0.5390288560904031,0.7847346890486222,0.8205185877461488,0.6444902838613362,0.3297458477685058,0.1271112047301607,0.09216339091456416,0.16277112882617262,0.26527755406995945,0.46624813575487467,0.5944153400766956,0.6197922108142154,0.6131592308841395,0.5852932351755219,0.5712030179107646,0.5738616725168236,0.6240015924087303,0.6612242583049732,0.6365966139987096,0.6328047539993416,0.7070076951859525,0.793348490069399,0.8144488177171033,0.8028679590062808,0.7627747927708235,0.6853763886407338,0.6639234029801966,0.6156655008479879,0.553201130579168,0.5552991707754109,0.5067038323732135,0.4044918750680801,0.4615803411506906,0.4415348437093175,0.48817572269013165,0.4628270398683645,0.47599663088158306,0.5218065119746939,0.5193651567962996,0.5360202101530616,0.6099835210178104,0.6426983481232655,0.6685388940755799,0.6627269071720329,0.6684799093077999,0.6470695978758814,0.6281351878108635,0.6257228207957553,0.6391706941530071,0.6467520096738291,0.6351922519444438,0.6816614786992827,0.6482469002021404,0.6904106082159269,0.6623945693940652
0.24151786330343272,0.3711025250539642,0.35773527815941175,0.34778024733300006,0.3714780887681217,0.37068671833690675,0.4504444880603977,0.47791799015968706,0.5243204958557443,0.5387440809605007,0.5483563198137319,0.514073484422209,0.4923916998572077,0.46390760614376747,0.4394230272581641,0.3935052371276153,0.36521942466642493,0.32776405221340493,0.30059529711236366,0.2928316573431593,0.15694129548606828,0.1872979749786901,0.16139095242677892,0.15611872216988087,0.16668788835606901,0.13709367598303757,0.11092867549577246,0.39759782293382556,0.7834021354818956,0.7847737783062182,0.5620274000277556,0.36029606779259593,0.2864980611200433,0.23181341655962107,0.20785789627581053,0.37589045596939785,0.6844789914906739,0.7113974377689197,0.7197132777366494,0.6075983814151203,0.5098221768864868,0.528003328155936,0.5288646121662145,0.5834414278671953,0.6571437024442975,0.5946882893349172,0.610841380129612,0.6914766270036916,0.7679048916311365,0.7935122249633425,0.7850110398110175,0.7226624767177625,0.6583370178871293,0.6923132493397025,0.6549101476568893,0.6477981367545265,0.6547051956254646,0.6295142833275366,0.6163642995007668,0.6600323963858266,0.6979939756540404,0.71634276872838,0.6709716305503306,0.7644452551730405,0.7557859507804493,0.8002676490553484,0.8522243729626848,0.8096125845223474,0.8520168932343017,0.8132511414336295,0.7433570228054552,0.7099442554284168,0.6758994347050717,0.690489167565502,0.6762557991462566,0.6598780027645844,0.6724202099433348,0.6448447584869321,0.6973832663001245,0.6909351719049295,0.6802323889465643,0.671778220909106
0.32720786895736254,0.4440907892695375,0.4458689956296944,0.39315788592249856,0.39918989838306324,0.4078691714313996,0.4325819911494932,0.43132655519048346,0.45482044074828654,0.5683269016012105,0.600521623255753,0.6398977908017678,0.6099556118440826,0.645000705543208,0.5816614700002661,0.5687008907322306,0.535745384052216,0.43638345201339,0.43102323603238,0.4216269746607197,0.36282993828086646,0.3009025905562715,0.2351057553295962,0.18201696474438023,0.19476631802785344,0.21609782070401695,0.21437821732555284,0.3822020959569787,0.6505441650948973,0.7441308971954343,0.7593880689059122,0.8817695602097475,0.9185305082669568,0.6978305559338684,0.4558025825438758,0.37077195056499723,0.40583031557758065,0.41365569415264236,0.46292664243847403,0.5419668861439695,0.4622132876420354,0.34608459756063403,0.2830552670384635,0.22731354506440715,0.24721624207373083,0.29481408298476625,0.3215915772423721,0.36055002981867135,0.3732849781270965,0.3015365454036134,0.3851166190876765,0.47086262221364905,0.5436393049458458,0.5009727158593795,0.5426016006179637,0.5191339001649358,0.5427599234567748,0.5661865161023338,0.531288178367866,0.4768001609036898,0.5854991639483292,0.6679685987159835,0.6879903078061931,0.7364304087286637,0.8538545907282157,0.8782023058305752,0.9856081446742828,1.0,0.9424442511824909,0.9561754898296048,0.9143515078459143,0.8797954297493477,0.8177368160216132,0.7345694547267174,0.689863950551197,0.676342977682959,0.6581339179800858,0.6648072945914048,0.6611872991700927,0.6266429511041418,0.6558047767207886,0.6214488645517515
0.39993654853606986,0.5738111398819342,0.5964218327484325,0.5688118103222092,0.5857456203611104,0.5940233146762207,0.6385358124499885,0.6464751993445788,0.7252426780686754,0.7231647506095745,0.68021577086648,0.7414392146902232,0.66781632222918,0.6787759297672011,0.66565099113155,0.6547192201750469,0.6377210041844755,0.6019413640737474,0.5810023213760903,0.6049399786523562,0.5049563381407254,0.4917434782447939,0.46845481694994207,0.4834794836730287,0.3975373579098342,0.38894529613670803,0.4464298288004863,0.5447510392950908,0.721135716956075,0.816433186945003,0.9302733586404555,0.9118907450292748,0.6241256894837715,0.33989031540326153,0.22317087517881273,0.1897599699856516,0.20441125390760684,0.381376705983834,0.5155512140230188,0.4744201705200277,0.3820006856647451,0.3499322166678335,0.24257635549268275,0.31513219843115603,0.31087915205266703,0.3730446634115218,0.4459644444410742,0.4449979870265399,0.5330761604619716,0.5334531943294067,0.6379234627989369,0.640221148401795,0.4979164833775404,0.4991896019749077,0.5018515602497209,0.4333179470023732,0.4446625241384412,0.39928879393633476,0.27736976671036034,0.3587776568023556,0.39856358947934256,0.3415206454216212,0.3685198102543128,0.4338439047411804,0.4658272652859995,0.4946386121256523,0.5093636359956253,0.6199260528004074,0.6568912968591734,0.7218023841216189,0.7536058415950703,0.7302392375782711,0.7199966958398953,0.6990105464730975,0.6939946325860784,0.6672343229805948,0.6582736853060067,0.6518923670616887,0.655115396927537,0.6272782341216895,0.6303128104634511,0.6041899269553819
0.36022290804350376,0.5459570120973026,0.5697094050466005,0.5578331128278374,0.5865869039267678,0.585712834672271,0.5790107981269155,0.4859939870999151,0.4812411618607064,0.5147055871130101,0.4454046274977607,0.49546539312695087,0.4727627625278349,0.49818969969331445,0.49713958615253917,0.4991367369602071,0.5109280186136086,0.44196391243574934,0.43302595487912093,0.49585952305000897,0.44169546608011667,0.46462804073876773,0.42797526743669767,0.4380874204172839,0.3859869085103492,0.42280651755643384,0.41225552169294166,0.6361974949050179,0.7898128803517009,0.6910070941983962,0.4144302810074877,0.140689012271072,0.0890812138915662,0.10257563661716262,0.1913277993944762,0.2986634394109594,0.5401091550627799,0.6381093655714223,0.6998529318977533,0.7013119955783648,0.6458778735423873,0.6953015281126413,0.6969499609920833,0.7343677963680224,0.7403632398417511,0.7434970914384612,0.7647790611934882,0.8112627454084906,0.847547916608562,0.833041371621521,0.7981656359110243,0.7425237344063024,0.6979938714701469,0.6787695934720545,0.5854984264207608,0.56886773323896,0.5298148885396204,0.5416500018661123,0.4825376689149909,0.5005346700585953,0.47864015966626805,0.5286710285219766,0.5219315353462506,0.5378146336735414,0.5067044302357709,0.5240618495964304,0.5814520899753481,0.5965863135588036,0.5978190357850728,0.5946467912809792,0.5649113884531547,0.5806215440807849,0.5766576410036979,0.5707447002764252,0.5702447648166797,0.5774640766021155,0.612427773124981,0.6175670102920551,0.643946438658185,0.6578873531080793,0.6819929980409689,0.679440014175381
0.3595116759108978,0.49542674963509264,0.5107758068985856,0.4801191806286919,0.46437274390625854,0.46455336223293725,0.5547743907429642,0.5378072493543289,0.6212536181987084,0.7030859780664637,0.6346703624886552,0.7147862965046978,0.6724301182697767,0.6004874974622796,0.6035947007581858,0.5287492724594393,0.5428007574938112,0.48284072258548894,0.4550800821168865,0.48459158721977547,0.36902047349922656,0.2953098482549448,0.31509829433237607,0.21828857616899672,0.22462079641984795,0.21273057599501816,0.192003009200302,0.419627997756909,0.632323182512957,0.8029114948824381,0.8847657926731038,0.7741908764974554,0.5526247715923605,0.2951909380768184,0.22275399093700132,0.17745530204454152,0.21536401642943037,0.5694309941266958,0.6481643753040951,0.5747966244262385,0.48310854185028473,0.368707422286372,0.3331580065210159,0.4026815783701739,0.44141453492446936,0.48496701606702003,0.49314451393813286,0.508145857147663,0.5669210045851076,0.5886273072602206,0.6786985981174398,0.6860306129404024,0.6410845063975898,0.6050593329310049,0.6140153335689509,0.663242085914699,0.5996807762119921,0.6124111406072924,0.6359853032789795,0.700931990642826,0.7451877026868176,0.7547647266505272,0.724417358730987,0.7713144224371391,0.7651061960320006,0.8302095280283868,0.8564297059813526,0.835272787783232,0.7802198582707676,0.7039014360589395,0.6435219218746919,0.605381256781519,0.5728410102424457,0.534121157196211,0.530143844386866,0.5325853732112036,0.5413080596307857,0.5359907038655641,0.5810483812566339,0.5948373349223758,0.6276054992025548,0.588769382392655
0.3580335140361568,0.522482583578488,0.5871196715214431,0.6128099418072838,0.6337971742950269,0.6983572961499731,0.6910558230343619,0.6377444921031834,0.6672996299228432,0.6387438344128766,0.5349967618336608,0.6204349978996379,0.5140313250528655,0.48650234271552584,0.5390850919170549,0.5271123957684504,0.48472346829047924,0.3913411937651988,0.39801832436998863,0.40520147334267664,0.31622616878039816,0.3548497950632587,0.29051025538536907,0.3376647867833723,0.32886536583018877,0.22412952014070836,0.7044587321386384,0.8765421050214952,0.6487759522165784,0.47741042177976384,0.2639594272166803,0.17005394774765892,0.08792611458793731,0.09638822191633412,0.3035701313441206,0.47091632389692584,0.6477692107522667,0.7258388047695125,0.7119195443674472,0.7014922913330391,0.7114691125541299,0.7092508340246291,0.729059178313596,0.7625289064015986,0.7667551515920016,0.7702290068158064,0.8126670707185986,0.8409743215276959,0.8499521816073279,0.8121025352912801,0.8260078024523296,0.8100120860483878,0.830856578948899,0.8106268539629471,0.8351262880000692,0.8648900821986527,0.8530721736980609,0.8265463388213725,0.8160787611085205,0.8336190971442967,0.8527376134568642,0.8236478203139536,0.7625136106585806,0.7399129211923816,0.6648736130017728,0.5337523864010338,0.4385911234133706,0.3725898504886629,0.37423192841801717,0.34913528906458935,0.2999555792347587,0.2857359333055999,0.3248076389186661,0.31804324110596033,0.36588229729854305,0.38975217343624674,0.4414612012196018,0.43186458031862957,0.4856401988576323,0.502721671717515,0.5449568439444878,0.5491121631064598
0.4161224923500437,0.6248271039229244,0.6458364151641608,0.6093750403728417,0.6593002556265849,0.682330871531823,0.7059174434765058,0.6995350387657551,0.7133528760254985,0.7309557709723964,0.6869492062273148,0.6828245799591697,0.7026489583428996,0.6315357265488277,0.6069107456417823,0.6202231022499702,0.6195382442208944,0.5399433520374461,0.47137000318558603,0.5346647009179252,0.482922540999433,0.511617407521069,0.4731439299907483,0.5060035934493224,0.40023805788676026,0.4217098024312186,0.41039762748744596,0.7387775025733487,0.9917316041688622,0.8758856938163485,0.638441740371311,0.3501424290707895,0.16108571237287816,0.05809927714139562,0.04058304424684034,0.2323982243263376,0.5580478645294192,0.6353184384255814,0.6561869053380869,0.6104000558950603,0.5343001522278158,0.5617571981323343,0.5659388412766717,0.6461556152289081,0.6530829731454364,0.6451146879084305,0.6732800223255437,0.7387850300917701,0.7843812144042375,0.7743504080424597,0.7384053890712523,0.6992122462453285,0.6543154515092257,0.6316658078608833,0.6367464247518202,0.6318909267814319,0.6121456238744329,0.5916279725320924,0.5775077014587793,0.5815892963084759,0.6000799804634324,0.6154955811965134,0.5998903266181135,0.6522812435404939,0.5931660950036374,0.5570243361343936,0.5357857816580123,0.4947223200458555,0.4820011214279148,0.4538483350798942,0.410126769865658,0.4042046855640081,0.39538702228377287,0.38735808514107795,0.39729062234295887,0.40118367060097343,0.4278373349173066,0.41871147643035056,0.45978633367906646,0.45879856900930943,0.48813318607042344,0.47231082879688185
0.6811607234033661,0.41911757927416193,0.43237830965298407,0.37126094851655234,0.4084540757630233,0.3335506360677862,0.40170440991720835,0.4042913324397134,0.41808080820996313,0.5057876472408798,0.5213043440794994,0.6258429745098899,0.5703605289798802,0.6325903038373538,0.6730051233136427,0.5862952858170749,0.6047390220301976,0.5584694424013724,0.4738343865793804,0.5765093049860738,0.5009145452670509,0.456716445821529,0.37687871409480517,0.33202034665653435,0.26346102827047524,0.35250615503573474,0.3187843486736611,0.4616026747326147,0.7141389793081612,0.7786990882356284,0.7778540349292915,0.7979850629379278,0.874501317962657,0.9849315663870318,0.8970555183655619,0.855767813664063,0.6449775144238982,0.4579952330878825,0.39337072392922345,0.27219746402963596,0.21506144748065392,0.2405141468553712,0.12955535858322298,0.13055181694963036,0.10479734264412,0.09716583383525412,0.1470505267446327,0.15788734469345228,0.16899427828715086,0.18475688498422696,0.1824222688012447,0.27172593604506895,0.22209289905628593,0.33564189299037417,0.35358625562320917,0.3506619305729301,0.32518545519563347,0.33931392846979846,0.2654431842242792,0.2959868264052504,0.3036135996824765,0.30571548090692446,0.3102451180667879,0.3989515967973114,0.4194301779954067,0.46223881855102333,0.5385114358509684,0.6480519285820017,0.7228309228420502,0.8132675407763402,0.8742468917350827,0.9176060655882778,0.9275463411747744,0.9300171987173631,0.9367879915899024,0.9151631195311789,0.9275543029077107,0.9110161925783493,0.9052255753441543,0.8705857195968109,0.8380921165936235,0.8192602380020508
0.4032705362046676,0.5847666098781835,0.6015133158757546,0.5162087269934614,0.540180236377329,0.5177298896670479,0.5634705143353895,0.510985516669642,0.5628234187802044,0.6656610547040198,0.6815778811785419,0.7007458045560256,0.6957164257019599,0.7092188961930441,0.6941106344027903,0.6106686741546243,0.49951061693538357,0.5731065056507615,0.6389380111032812,0.5470720096159817,0.3259675520543277,0.34888457301740666,0.31671652967667,0.10430219464063695,0.15247319646416613,0.1537309429585435,0.16585580539411449,0.3870143129881672,0.6201074465892282,0.7193656177665197,0.7652112691128017,0.9060422704514358,0.8410886899092282,0.5761511483523127,0.3813662777666601,0.35259778383966156,0.3995599177840674,0.4308124587759228,0.48546399981337185,0.4949636731697993,0.3771559796866716,0.3010251050252952,0.21672674614549126,0.1709706373555937,0.21927267042302434,0.2550865724087198,0.30209838595029154,0.35278038115914734,0.3097945383568287,0.4134769988761819,0.5116545537059776,0.5619088561377124,0.4995412751295509,0.4633851593596062,0.42171779467648257,0.4767017651711281,0.4485871375815432,0.4430460064174122,0.4202502163262359,0.4671463647401991,0.49306662290944603,0.612542250711181,0.5845182349415832,0.582949374416182,0.6174798746873867,0.7331094592498204,0.7664483158578368,0.8177566676578907,0.781122584066648,0.9024110322918345,0.8522359030581306,0.7789895926893631,0.7762935247786531,0.7474874747757752,0.720969397761334,0.7059600553600135,0.6782893371018871,0.6967551865484394,0.7148793032763263,0.7069630669973639,0.664142203137922,0.6544739153867865
0.35345277280605647,0.48129758294959696,0.5172924729008322,0.5080737289208908,0.5090713285956644,0.5008213230988433,0.5769216319323872,0.6257469304479688,0.6381085929342398,0.6420639156327553,0.6067341997070038,0.6421532836503372,0.5829478803159429,0.5546840886532542,0.5007389793297936,0.5280724850743341,0.509254009061929,0.4726843687646895,0.4135823876464381,0.43902634662131923,0.32468448430027774,0.315126005307792,0.2842660103868892,0.2595442255430748,0.2742635571188151,0.33528251191898917,0.31324729712624455,0.37387164595381694,0.7588211684871138,0.8756248363005628,0.7195392237839926,0.44031362521788975,0.25905026614047255,0.17981253327054403,0.1358187258911192,0.1834599850771459,0.543514834289959,0.6592765689769441,0.6513278012260565,0.6007543596321688,0.47706182910269335,0.46289340115377164,0.4761537048083884,0.597053484897164,0.6746229639184991,0.6386772681066436,0.6030883888166969,0.6514319486042998,0.7516477927215879,0.8004318777887567,0.8025318112270549,0.7826108359242084,0.698275817151623,0.7675652395681817,0.7697836996955707,0.7711764822863512,0.7323819103614879,0.7146364587247744,0.6811410030928227,0.6984493064840187,0.72337015607754,0.7705236393757972,0.7108975616118949,0.7543880208017053,0.7730159098837929,0.6787747282260241,0.6941607184967524,0.6316769129224018,0.5990286548113086,0.5420411279764401,0.4907767586496151,0.5011225378452229,0.48330270838176886,0.4701217730246936,0.48855671520409727,0.4849810739790229,0.5170193244906585,0.47889520037730604,0.5728823205835747,0.5817572162371566,0.5986145568899258,0.5987978708774535
0.3341127455309707,0.47935489337472725,0.5212428189314086,0.5249312006903059,0.5625299815258531,0.5863525485321766,0.653051517768954,0.6093706903102775,0.5830245375314175,0.6254950000141827,0.526991136375682,0.5704692562768513,0.5023237937431755,0.5029995206902972,0.48841090937410603,0.4950870634734243,0.443474475508902,0.38533939974178477,0.3273481758549954,0.3896767069490529,0.3152762045549498,0.33605078466411625,0.2894694681449046,0.3329330988796386,0.23388214948720648,0.19446001183557182,0.5870792154555644,0.741776809611958,0.60253908400396,0.4515211440137915,0.25807978293096245,0.19036029181760905,0.13551079902185503,0.14409734223532955,0.3132638066799833,0.4876636666673768,0.6479662676236364,0.6831787177962412,0.6893827382149391,0.6905145926559909,0.7005926422103528,0.7397661428274096,0.7681704329079339,0.7849611715773828,0.7836204936086146,0.778830100011189,0.8341921846093939,0.8878189862747301,0.8959234557838063,0.8822308244189155,0.873073720075873,0.8623669498921254,0.8947972155574476,0.9344942910931163,0.9649447910447293,0.9072858508910218,0.9037979603441622,0.8808634739254031,0.882441285938611,0.8966690694699919,0.8568661494737554,0.841765868022274,0.7541840532252848,0.7589576705474013,0.6481541763926416,0.5490995567503876,0.47581039302480965,0.33991328502125473,0.3300048258491897,0.3140601061852808,0.29353193591250853,0.29478577755923907,0.3206337623114368,0.3473156763555427,0.3751096885789358,0.41378316893430267,0.45999974405619903,0.4537762436038061,0.5018182073583664,0.5386667178090083,0.5664002641159822,0.6010362305485908
0.3114474287039056,0.45761363345368883,0.4468380682365509,0.4390163221916253,0.4227079375561684,0.36353047312270614,0.43543756292417957,0.442133499601828,0.4743855819189395,0.5397732564993087,0.5747550595091364,0.6317758340477453,0.6248337544012968,0.6042989542609791,0.5999501706763002,0.5665407681686293,0.5834767230713803,0.48628298985472246,0.4428111246499334,0.5147991344089755,0.4880059647335101,0.42786359313223726,0.29221098819800917,0.25367230631654974,0.2229359591757492,0.29267632150546535,0.28696000561662727,0.42951859976471163,0.6683224170585689,0.7792071136875638,0.7469922063784724,0.8546351523605417,0.9531816732482561,0.8441190260972802,0.5751381135309697,0.4261369269555805,0.4012710684059029,0.439347076724927,0.43913399418991916,0.42321752672250446,0.38387684600261185,0.3000402495638558,0.228157407416392,0.19199930386728303,0.14412629813031286,0.20805650715504942,0.24125469120312149,0.27024777168669517,0.2790725031196666,0.26126282515566335,0.31426699504058137,0.4480464972065769,0.5407951512964537,0.5860736835402311,0.5077596498908801,0.5626710465235405,0.5159997944851603,0.48839636375994266,0.46209407468059,0.4651556007261928,0.48623567688863545,0.5319947096821417,0.5278371305733456,0.5987611493037612,0.6279866703907343,0.661908511056132,0.7404176899500683,0.8151275206929294,0.8349134405226912,0.918128458831002,0.9078149935762176,0.8754563972797909,0.8601099309180265,0.8182129468254591,0.8127030728279749,0.789138748894898,0.7794446764493637,0.7614190552020708,0.7577244750379011,0.7456593960998827,0.7206854478445243,0.6923844273588506
0.3431890783640981,0.5056185124430045,0.5139435276152818,0.49547804435151055,0.5140866635932301,0.49463618569392465,0.5710057697549146,0.5906606508438056,0.5727194176910771,0.5899016946182958,0.543956858484666,0.5771899998212842,0.568955562108819,0.5284614912366306,0.517115651431079,0.5265931917878429,0.5218521869486088,0.4853600184009863,0.43645450457529655,0.4287901352805265,0.3704401639197505,0.39715221690330654,0.3895268677918947,0.365354657199612,0.30858655077975305,0.3532911214788451,0.37338563219598336,0.4445473201920471,0.761318712932192,0.8998089821886562,0.8346273681082877,0.5623660322323094,0.3120410425608693,0.21344318603620838,0.19783394034920188,0.23178921520738482,0.43930866167547644,0.6011653494197108,0.6152544299824031,0.5516056609406235,0.46189305085597543,0.38529501427655855,0.37538286742920424,0.4283806663040934,0.4923667929879237,0.5209183603021523,0.5214859188312497,0.5708677838544493,0.6706554013791011,0.7574532144859828,0.7626259388482612,0.7426527918415387,0.6701054140886099,0.6302407461289192,0.6103353810834187,0.5988769430867054,0.5742510621450919,0.5497179379093056,0.5093506174018088,0.545250867276537,0.5678015876915742,0.5534434262992091,0.5658295571477474,0.6551401479916723,0.6335518791347917,0.6409217448772522,0.6787391903842748,0.7304617739481587,0.7336196354846309,0.7572435873589974,0.7284972057121633,0.6979625822027713,0.6814195867019825,0.6486724768245704,0.6337487211285215,0.6341471948442101,0.6423687816062023,0.6099473507237034,0.6302047737182134,0.6247926122879722,0.6308245657897594,0.6287959294218961
0.3552021156697837,0.5278167493686613,0.5491928135082752,0.5680333700975407,0.5852234094426051,0.5716697117002139,0.567512330556657,0.48717003355496974,0.5041421359546325,0.49528681338630576,0.42803354632572305,0.5224540307726968,0.47778625091312027,0.5432383740630784,0.4886305763483551,0.5338136819679039,0.532793539938681,0.46526218495464744,0.45738197374718137,0.5444695113456517,0.49333928629691504,0.523490097165414,0.5283935166148671,0.5015353306350848,0.44208449055917176,0.45995654747500425,0.5349163681125212,0.6768699560987257,0.7763605745772921,0.6656591917782545,0.3481296236854611,0.11845565160461313,0.09610238140954241,0.11972944847592393,0.18423696712347237,0.3150618962070574,0.5642791719255288,0.6538810732025286,0.6917198030285536,0.6753882346426856,0.6517479739261927,0.6956338285118342,0.6844048186188159,0.7343580179237342,0.7534046237522236,0.7132563295026163,0.7536690509458995,0.803631015531288,0.8747499993252343,0.8643902603709679,0.794452831989438,0.7388810359520959,0.7484222672022842,0.6907053305472957,0.622021974175645,0.5591247751718937,0.5600858223402526,0.5292411172836218,0.428456109946356,0.5036650268012345,0.4258812633886686,0.4517985695012725,0.42718878750148337,0.4577361607275894,0.4652526648655596,0.5007258963407473,0.4965504269891483,0.5534806414608526,0.5944194361372057,0.6236458323826887,0.5945245623860131,0.5962767067184004,0.6155040190850951,0.5886750586428089,0.5895616091931555,0.6063354043137743,0.6240796076085235,0.6215163399691149,0.6399630048809556,0.645543340759942,0.6629209637568119,0.6603967192230541
0.3480253519512169,0.5309403702567683,0.5945187362425903,0.5665504487067532,0.6016473021680708,0.6216430134256227,0.5934313394397434,0.5537723223285564,0.5440554051776885,0.5222858138954306,0.5026315456796476,0.5164266718638669,0.5199550828872561,0.4894247328361328,0.4941415036883874,0.4932693373070619,0.4571070888895445,0.37241893914482466,0.36905054347831456,0.4508932995086754,0.38162656583456395,0.3961633341989094,0.33521964557939327,0.34918195089770127,0.29402429301788346,0.2800797188793485,0.6628324046595457,0.8747308320192421,0.6701939010528577,0.4701244528716251,0.2507730644492201,0.19545517862584316,0.17920743056203292,0.18101132075069992,0.2895256725864801,0.4503064380296955,0.6334195385498952,0.6736496059756547,0.6735886811994481,0.6147898270399444,0.5956068804864296,0.6006981927010504,0.6304848824242034,0.6941678023828579,0.7003966971005248,0.7391864151666574,0.791602001137652,0.8321370295704795,0.8412209239731042,0.822792180074719,0.7892825552881158,0.764825500715674,0.7346783014803681,0.726490843593664,0.6888190496902569,0.6472038262066904,0.6589134498631107,0.6050722113540722,0.5693977012507145,0.629982623944453,0.6150179280782849,0.6376537319492538,0.6035677315371053,0.6494203247750054,0.6281441223442531,0.6253345893417435,0.6264431475553971,0.6585474933755802,0.6421264869672478,0.6251171406439595,0.5717468974779958,0.5648785712160175,0.5586921890272143,0.5373903332490508,0.5338690860470579,0.5465382568451136,0.5599968389388553,0.5508737702283422,0.5824094357062015,0.5887995258787987,0.6131526797221398,0.6101718650851273
0.37881830747600137,0.527924351782106,0.5604643562973977,0.5555426109924183,0.5799374492133574,0.5818553777421505,0.6212418600844366,0.6513870371727671,0.6448399129613415,0.6500668432662285,0.6007073463923038,0.6287931303085592,0.5963026394950375,0.5894461679810238,0.5566104892932074,0.5574951678117426,0.5632118616828564,0.48459965608488703,0.46054494285528536,0.49693142667645135,0.4155816653878827,0.4348643245108097,0.384435724834923,0.3557823512471208,0.31321673601833444,0.3441422508705357,0.36107853592565964,0.44281090775964416,0.7168501618130754,0.9006976775385653,0.8771810998026331,0.6022902572915338,0.3392133350269,0.2208666465693342,0.2083529838145427,0.23619272196476138,0.3988914834519228,0.5793782890494777,0.6043601494167034,0.5303551980411914,0.4450576203027262,0.35564307318499233,0.3212787318518121,0.4053080607963018,0.46560718337678314,0.48974543688534533,0.4948360390562891,0.5348656511386517,0.6369295418701085,0.6835974901287978,0.6980952029039109,0.7112669769331552,0.655778945752764,0.603810432085439,0.5117709858348514,0.5279419494231239,0.5244491449139514,0.44728526118566014,0.4081439637330749,0.42590604683635,0.5390838844933864,0.4863513281282107,0.5236757784360109,0.5845345212890214,0.5272318931128835,0.5920206999272759,0.6935294533121452,0.7348716780180693,0.7875445542679171,0.8145068492966651,0.7644505984729834,0.7627493702114378,0.7402836565294375,0.6084472890949528,0.6607218213775236,0.6463772949924946,0.616561138526069,0.606221889138218,0.5947290970631207,0.6103107899431317,0.6082131218332371,0.5564163698156963
0.33388280820915917,0.5139751957093817,0.5231893971675576,0.5521410086790645,0.5891182733456065,0.5753180303989957,0.581434619641959,0.4824294329409469,0.4666669579695731,0.48034590573945063,0.42436829953619604,0.4947543930242344,0.4735183672215286,0.4576044020498119,0.4838533986756655,0.514104876326614,0.5270386146671056,0.44485839388586734,0.43694864527756383,0.5385968541071606,0.4478944076474757,0.4940361467114416,0.4562438930001684,0.4457032374958828,0.3714270394591282,0.47612160392545116,0.39789232987025897,0.6530017084031938,0.7965485834876167,0.7049825793363196,0.4189467399984452,0.152593859993034,0.10462885443643655,0.14355935824351362,0.22285892869433555,0.31567888400733624,0.5620976755542869,0.6235307276985936,0.681619400823231,0.6696930918470341,0.6361875388466174,0.6453976379378619,0.6382996446145492,0.6935694155601815,0.7267576539561134,0.6948378820648823,0.7032544826209485,0.7628984549324156,0.8538045536785075,0.8502480362829765,0.8162439483157279,0.7780464259287391,0.7613270132134528,0.6845365445951992,0.6152853907320701,0.5940259405742527,0.5925023462260002,0.5580369142633743,0.459075115078214,0.4939215697173036,0.5251212805279922,0.5163490221711785,0.4707578576889071,0.5021686167105264,0.5449424950217056,0.5585596360385339,0.559288688359882,0.6127538556791774,0.6301372308938002,0.6723477109088657,0.6542640221771538,0.6383944474864488,0.6328479825332918,0.6065839483616656,0.5978888920097691,0.6058143330552654,0.6156073880788375,0.6039558213743847,0.6328068021834096,0.6391298027872689,0.6574839711521423,0.6466725016508227
0.3780201716464488,0.5313954338745562,0.5584180004897151,0.5180792376331507,0.5119498756190953,0.46377078467315674,0.5455802890678202,0.5791214179691383,0.6018793216158385,0.7465967357556327,0.6858924449071128,0.7284192261388664,0.7237723486975616,0.6794585944820195,0.6728518608905135,0.6894049963249014,0.5772790172662159,0.5063049446951906,0.4913323379980612,0.5989376530480874,0.49148455561855736,0.4022541974986655,0.3680182331024407,0.29748123230364176,0.2616696985785986,0.2533565039111338,0.3362406622290529,0.44885208358534073,0.6757481043993863,0.7663316835942094,0.8801446637673774,0.9433228302406234,0.7843927711803801,0.5316043972041067,0.3294581560734299,0.29144445548061293,0.27763054874435,0.34659298254807647,0.53505606079353,0.5340292304914306,0.4046902532063271,0.3206360541210508,0.2455248647698811,0.23182668901214665,0.30545541734636183,0.3571338378728398,0.42130831118204237,0.4036650999182565,0.4004608949311904,0.4743678732169888,0.569577283730069,0.6989973435640789,0.699773638813631,0.6993287149906797,0.6650950034469012,0.6306290488839428,0.6438236459096784,0.623729996879837,0.6607411024743806,0.7240722835892299,0.724368341498648,0.7610542925561882,0.7571451888484946,0.7903874906815744,0.8113691748758972,0.8328555300388372,0.8161388188876137,0.7701525188993632,0.7608791726529425,0.7099148063411347,0.6301255379440148,0.5857393276050604,0.523085357596471,0.49627921912882755,0.4883137438829761,0.48122961998722646,0.4980456348643654,0.4622798972271234,0.48006881126134265,0.49680386729616755,0.5332822196698862,0.5111573530681676
0.462396093268551,0.7042358183190308,0.7460128469930407,0.6698793799050511,0.7189867909832832,0.638405868071809,0.6705460090475732,0.69888053174742,0.7575037329393166,0.7721457651561812,0.7181153806994055,0.7988271729631496,0.7317623603751445,0.7590263984494751,0.6478463224188744,0.772956670201139,0.7700188457580558,0.7350527633974603,0.7475943597865214,0.9116403231770789,0.7681504148182317,0.8104339764098769,0.684604296997174,0.7258604140188593,0.6153785551553288,0.6437062068690121,0.7445998870524955,0.7278567876541049,0.7882912957689174,0.8454751645547395,0.8529474449665027,0.8678851123692304,0.9210864058634431,0.8782894176566135,0.6560251402598716,0.3355444405069854,0.12539546069924823,0.20843338395323974,0.3503167117143322,0.2583948786383147,0.22020692043874834,0.13134866950581714,0.11702772035182529,0.16641894500724386,0.16217145236624175,0.22800784662887774,0.27926693200505526,0.30154151239080645,0.362040923187377,0.27219586237488774,0.4157750524033512,0.5183853164090046,0.4922610264138149,0.5305265375494076,0.5250545195398642,0.4445445191184035,0.3888842555769664,0.33632388988400486,0.17809315919530316,0.3148865101409326,0.22173304347505807,0.16123785715833838,0.11034573385735624,0.3099969293555681,0.19602400552867627,0.18825257381590121,0.2683780913520717,0.3181406832576953,0.48106307972831613,0.529771223146829,0.6080359114240859,0.6710061711995369,0.6146025158135708,0.6736416956587785,0.6945061040975407,0.6661079117139086,0.666001184565477,0.6159025731077441,0.6490243409320724,0.6288649731026952,0.6262247830924723,0.5502850314397452
0.3061684955854794,0.4305344594625129,0.4519280722517362,0.3969302365270345,0.37888951531995185,0.38358224527353013,0.39352458840534343,0.39008189618928446,0.40901276289058586,0.4618696453401708,0.5119662084668328,0.6227294471850544,0.5755190532355907,0.6290815442632843,0.6247510648946434,0.5737498432927121,0.550631793361681,0.5347435714161,0.47115322007090776,0.5484972459601765,0.45820626853490787,0.4085786027896199,0.34531078785287317,0.36153110372391645,0.21840706543339178,0.3342105198579131,0.29880350465242256,0.4147266215464916,0.6924858719767727,0.7672080925948941,0.7738460140075084,0.8361437742122442,0.9319581887224705,0.9341812642617155,0.738152585949436,0.5751824568019007,0.42022039647521536,0.393956320417181,0.3691688324292792,0.3440829682910539,0.33659649820082505,0.2911901907964256,0.18714489859511318,0.17218815004047505,0.12982396674650998,0.1801693595808147,0.23379947807536422,0.2951742533279173,0.32734358857168905,0.3115016574332218,0.39447255994267966,0.48412834109296543,0.5273336630060417,0.5853618287302824,0.49217541638879986,0.5071130356055904,0.47579252765347757,0.5003551944150955,0.4235151820016572,0.4653206472850251,0.474561932651436,0.5201335394284897,0.5045683726500949,0.5374391417883544,0.6046509836428547,0.6042841559112353,0.6911852892010817,0.7321929028311005,0.7948582017141828,0.8708799141452715,0.9091376479047208,0.8524905112297911,0.8389970688578023,0.8117961847357423,0.8454630867504582,0.7892160996357256,0.7792881472030718,0.7924604066875343,0.800705053191568,0.7813279085197061,0.76353818239507,0.7309851675118048
0.39171749552200086,0.5850092940302802,0.6017818226434717,0.5672138632164135,0.5509034399928484,0.5387694254755627,0.5914813355063614,0.6018273196838186,0.6359457661186665,0.7015677559377078,0.6845593829951054,0.6025727224429693,0.5962667599996508,0.5923591378557206,0.5746966237912605,0.5633503998024602,0.562360504225256,0.5616996001777654,0.5712834151474091,0.680058287686511,0.5916218348848324,0.6094267505801398,0.5420912745975053,0.5379374283020253,0.4742694696012006,0.4913684091470063,0.543782132258248,0.5773347103473236,0.7464263142503154,0.8160345531111631,0.8184027891269451,0.8639762518072136,0.8869132793109407,0.782866590415675,0.5132739721085409,0.2450349142108158,0.14997896455154391,0.33154415048605146,0.4099398389977832,0.33761333874586374,0.27201182970651105,0.2221711648199246,0.2007337444536208,0.22209049377102508,0.21731547247268979,0.2868787034017135,0.34565163279414135,0.3730723602337314,0.36682975002781537,0.3298439546261942,0.4484952441234715,0.5869620360870783,0.5822413437234581,0.5568459784034222,0.5274265866635419,0.47097063263899136,0.46069116585871783,0.3595344140325203,0.2704524063922414,0.33855365211374555,0.3072924383200071,0.2718491205326228,0.30081545734496984,0.3538382433330788,0.3682935417970743,0.37425123725197795,0.46823315653920483,0.5081397464101249,0.6074888853551064,0.7336066680653978,0.7958506036976988,0.8238104686082492,0.7930305585240347,0.7943566180347637,0.7968291109518879,0.7611350476747605,0.7192506168682993,0.7713438639841439,0.7599052539512744,0.7161525271274515,0.6860496276110026,0.6523350484742614
0.4236277096182651,0.6114899068638749,0.6372942800842074,0.6012000363654634,0.604635595767089,0.6087774220298396,0.6614758526102161,0.6406216879886939,0.7238094467389575,0.7204525453378817,0.6670331687614348,0.7150796251156011,0.6856239842488874,0.6603675040883973,0.6424040416692736,0.6595391707927555,0.6566130228256566,0.6028655116579996,0.613151706473665,0.7080038507085957,0.5507744961165787,0.5889530034161339,0.5347404733536594,0.5292315816561253,0.4665721798899025,0.4826052000258878,0.5186867546502446,0.5805826595124799,0.7342016403420748,0.8363714162680816,0.9000455245895448,0.9055858590639938,0.6541449174402176,0.33913244060103853,0.1975117934346916,0.17218973503660662,0.21522129635679788,0.4065372438543958,0.5265125074821057,0.4710733883698224,0.359231531830705,0.30696637611234834,0.20985345310453618,0.26147297897497646,0.32987855279419326,0.402119875349063,0.440420879108692,0.4445546083708589,0.47920467846516906,0.5511047459619719,0.6726334620813794,0.680526048263115,0.6203529317253089,0.5631450178179397,0.5220462636761154,0.49038859948557073,0.480170675842877,0.46242560477651096,0.3574101680062371,0.41501516080512957,0.4111088044094212,0.4347093789443027,0.40602120801312425,0.4419601695412807,0.4666830382461181,0.4795271675336472,0.5043368365288414,0.5745890636745596,0.6375583057678567,0.6506912207137966,0.664098881104229,0.6643103471599056,0.6592726320668323,0.6426131644335088,0.619072827851651,0.6170276282497773,0.6325761798945732,0.5964626693543169,0.6074282199808521,0.5932353596016612,0.5986494822061118,0.5709736464567775
0.30392933336855543,0.4490920922413677,0.461682104319754,0.43313546852832324,0.4440306925181016,0.4329697839368491,0.5111286462252644,0.5097940207193358,0.5287101022342184,0.5315666322907265,0.47533827247282406,0.5287633973677507,0.4862475335031816,0.4460423390870179,0.45896307670063025,0.47368093470219347,0.46866319097979625,0.4468014463737835,0.43921213525707614,0.48662150709784935,0.39340186446894254,0.4315130911502767,0.39614342789762275,0.3551184426112501,0.3126297400235754,0.3660991520868043,0.40356502091629953,0.48904924296747615,0.7286128191639019,0.8300979179785398,0.7353665665265877,0.495244498689381,0.1695114921369426,0.07551948621796922,0.1175327549850621,0.1785074906444295,0.4301860404866469,0.6637703356205192,0.680011366993138,0.6664946569762482,0.6309443477624782,0.6075571967768822,0.6127495590399072,0.6655908707518965,0.7045950422820717,0.7024403111035987,0.6873791505411619,0.7355145230958153,0.8012513454077399,0.8640994501243333,0.8672934609911915,0.8500695181662706,0.8375950334695099,0.7878816891639872,0.7715117733764645,0.7186432958248241,0.7309919378372558,0.7190614902292689,0.6491678018439442,0.7002901496635756,0.700177534814929,0.6975400400954644,0.6980027725595417,0.7189472269201496,0.6851288905893337,0.6752511717912828,0.6854403409992054,0.5906334542810632,0.5660823693143862,0.5267346115215759,0.48138291271258193,0.47422299658702666,0.4625754818771914,0.46692176278277,0.4964960856196342,0.49546094635969534,0.5333189304980517,0.5362294139581457,0.5937404545291975,0.6193359150092566,0.6399727182165629,0.6538397864541868
0.32196299150057434,0.5066208310550157,0.4933332874461361,0.46342632046107585,0.4875220825110181,0.46918830136971124,0.556643537850657,0.5347519439834203,0.5578953601320735,0.5256417177017499,0.46781379562558356,0.49686770300175775,0.4625427091183598,0.48608794678323336,0.49913240481601895,0.47243455404294005,0.5293021868329197,0.4612530652143759,0.4691230441671766,0.539315160776002,0.4472133062242356,0.44775131663786005,0.4562888325904232,0.4198958562666258,0.39198060705777604,0.4292856818187063,0.474291333841358,0.5342261001951398,0.7186614094316358,0.8189818930941388,0.8273589688104827,0.7188410932589047,0.41763761671747823,0.16596513403326263,0.1444514231645816,0.19611598699710675,0.3695511023835971,0.5137545217629635,0.5855243291352826,0.5283693702919653,0.470133946152399,0.45679158567304423,0.3977932426871199,0.4708386971023509,0.508051583467903,0.5413835754059606,0.545802033763866,0.5449073489627853,0.6248330104954549,0.7188133431974726,0.7870994871395478,0.7737995587010861,0.7192475065031828,0.6589120249571557,0.6102101542768241,0.5694652545053014,0.509291888640641,0.4647943157153047,0.4396789437160135,0.4569863731498589,0.41862563172845424,0.48376988799112774,0.45860629368960004,0.49093431184772873,0.5175648800674816,0.515305360692915,0.5906977564770084,0.6245649129963848,0.6873467260184298,0.740636612292345,0.7570573590944211,0.7398763435715605,0.7573830663735814,0.7325537653800167,0.7137059411567581,0.7018328225299563,0.7272086630796721,0.7202153930852505,0.7177362421814706,0.711485693505344,0.7219992901693482,0.7213377884429075
0.36977652130238314,0.5653858302943211,0.5869736602377258,0.5926818970969036,0.5964577575134853,0.6479228892613501,0.6806226821851169,0.5860369387951179,0.5795980162055463,0.5948121894200823,0.5407148623006846,0.5566232441397008,0.5307229776899173,0.5434239215994922,0.5216007849760353,0.5028934292585151,0.4950047304800154,0.4181684519600397,0.37422263170829,0.42115360365167726,0.37524736344767246,0.41834493494385466,0.38348550026683514,0.3405779448359352,0.28573912636889215,0.2992677467923106,0.4815939332226066,0.8663743505290993,0.7571374496009244,0.5128587379024079,0.2695368816628403,0.1893528482876532,0.17176056954186014,0.17703518924947514,0.2867580892431122,0.44661004190485043,0.6310395523748276,0.6688471762201295,0.6950970244916966,0.622051922265266,0.6045373852398823,0.635918943848991,0.6535022962485066,0.7076879471763043,0.7236246135990182,0.7232220807552856,0.7673881274894432,0.8101304316888893,0.8606550145134595,0.8248120399288239,0.8246007030658589,0.8060401730804099,0.7549944021308258,0.7778765749610608,0.7754658045212361,0.72926160059625,0.7287171272966435,0.7532670850499192,0.7046884351443543,0.7307901705753452,0.7351498861351958,0.7891313032305071,0.7868489485027392,0.7560337155929195,0.7337474627067054,0.6466210848002953,0.6732090946897169,0.5721483201449971,0.5138979918864175,0.5009753671217545,0.43481409495722545,0.4402040314126061,0.41301720530796754,0.42981707908053457,0.41028312101772374,0.41835252089110553,0.4654639678394621,0.4303073732994592,0.49178852398312933,0.48118608278104563,0.5316312324035619,0.5193339275902022
0.3355650765744756,0.5004876936946708,0.5150939310370757,0.5169204214406307,0.5243422541612807,0.5066472099918703,0.5975338409912441,0.6126701149430456,0.5958626740658769,0.63132364146652,0.5835877448467732,0.5974147719631354,0.5969900944059204,0.5568090934398147,0.5614075144586154,0.5454458524858554,0.5114056037979197,0.49471707634808815,0.4526408620398622,0.46666266392229117,0.37234296207049095,0.41470965778081287,0.39399054812766976,0.38427997174139356,0.310653446197935,0.3563752962601403,0.3590922177427001,0.6079219013162899,0.8759754970242764,0.8788814452485187,0.6498306698454004,0.3696905737135393,0.17819945312685748,0.10856884215745288,0.1044656707652366,0.24873575301049022,0.5564315167188827,0.6296260605740228,0.6470240536717367,0.604906901742169,0.49475568432694583,0.5227349500440813,0.5453497846644907,0.6337389184029365,0.6749060903070576,0.647775417625871,0.6667201431989368,0.7258279635524428,0.7865517705700811,0.7951688391015923,0.7835950831354133,0.7681442413966536,0.7167008965360862,0.7220756826057285,0.7282877828734518,0.6984176039371008,0.6723937454646922,0.6653959549417748,0.6484370046985937,0.6743969748794219,0.6697883849762473,0.684150803194325,0.6497317502384614,0.6627352978308856,0.6417105514868472,0.604790467488004,0.5909874085917679,0.5542502235423992,0.519973905690359,0.5075286185902486,0.48589775061044493,0.4784993128891582,0.4703131856405195,0.48452638202161624,0.49422965850913436,0.5140096938670058,0.5431335569215485,0.5375442511649628,0.5799421781304932,0.5852845962527631,0.6146971353803469,0.6276497077280851
0.34322936113550157,0.5127918289732734,0.4861078038256322,0.5249810955414825,0.5120069921789691,0.5246916062770051,0.5826455450674197,0.5752459890892015,0.5958678306635897,0.63100482817758,0.5405190290226621,0.570272197271208,0.5925427045832292,0.5312578163791962,0.5081221787055084,0.4872739854604748,0.5188529283712726,0.4198812738681745,0.3846941724101429,0.3697153241349484,0.3612399062207045,0.35766531103996263,0.3251570390913604,0.3227913862218408,0.2985928630747009,0.3126106563145764,0.27329614538455194,0.5812357184286838,0.9219040599439846,0.8987212479813097,0.6648583353968288,0.43081758157633737,0.23546120416163885,0.16364467055532983,0.15151772106792405,0.22231915514106115,0.5460278539142556,0.6472622696804968,0.6521947165530805,0.612935802577668,0.5294227351301174,0.5134489386673005,0.49916155477546703,0.5664341048082571,0.6133658439230681,0.583856275279548,0.6227749664946223,0.6668584667017605,0.7678757417548886,0.7910765199892338,0.7810269765323588,0.7474005195263409,0.7157130231508637,0.7241602530947753,0.718924319309513,0.6775575002826577,0.7083729265714236,0.7015722334682948,0.6773739280071183,0.6794301356002965,0.7380477074955815,0.7566813831810103,0.7458781391892508,0.7884903620688501,0.803737132037761,0.7237542964185826,0.6785514059093742,0.6957569421065537,0.6371269190445055,0.5940348271080764,0.5623468545370323,0.5349048368043109,0.48865082359102374,0.49995810495197823,0.4861454395095448,0.4984775113752848,0.4897339869127779,0.4921388260212885,0.5211053167477991,0.5574560192777958,0.5724579074789957,0.5435382291975904
0.6796211906450724,0.39249545466185254,0.38878370017425345,0.3503531676631283,0.35095674158976187,0.2884162088051755,0.37284692628047483,0.36387443363716726,0.371627686040624,0.45865526213767976,0.4601081019979879,0.5707524260671635,0.5459780315117113,0.5345036782132981,0.5131735487966954,0.49452269330902743,0.48629168254981914,0.4099986492686651,0.4169941165809993,0.4484688842164106,0.36589025481749304,0.3782275652502601,0.31703189282410094,0.20421614270021454,0.1653830763408206,0.21422659607615302,0.2168407599050709,0.3729014251731321,0.6626495800520467,0.7536021377316475,0.7642120556907694,0.7880027982875761,0.8485010600586093,0.9241373231916543,0.8163687667465915,0.6844871722977646,0.551022941821796,0.5140538473139926,0.49036413062041373,0.39803301214424014,0.35793932726306776,0.31163644177418337,0.19192799415021733,0.17027404205762875,0.13197531585339473,0.12059644854339802,0.15611193161120884,0.16865797997092713,0.21288199608276043,0.1791104083928849,0.1960235239454471,0.2880716092798399,0.3692193579092564,0.5007929493408035,0.5580888729935454,0.5129141486961715,0.5063282181253921,0.5020549824897657,0.4245201963642506,0.47672125200419646,0.5187348353834915,0.5273653854649382,0.5450016658886427,0.5661310348190225,0.6298533339138087,0.6849272489559917,0.7391602348369322,0.8125839594349022,0.8830473402783998,0.9433457373823154,0.9318313327249941,0.9291094710916327,0.9103195762716243,0.8946706134181837,0.8796711548659211,0.8526449882271432,0.8443788885926864,0.8379054204449504,0.8595367806738633,0.8107756174450178,0.7912281728758968,0.7503041992982551
0.31243498374988027,0.4196101628790105,0.4187835275139522,0.3991091019724277,0.44665910822116306,0.4419019745472256,0.5080570294701694,0.47916213542676056,0.525469172159635,0.5981464450669135,0.5279766723172025,0.5554984041038927,0.527546360937652,0.5125611651769851,0.43248123994757354,0.4949831666954191,0.4214907584636716,0.38438142324887503,0.3692028552280951,0.37481130705800786,0.18938421918368153,0.3180502041688153,0.2418984000275584,0.19565444407208282,0.21643161866826505,0.23951792442294817,0.24381340293304793,0.35428169586104163,0.6657129179206613,0.8618585259887498,0.9421641973908895,0.7748521634038938,0.5094919766137285,0.29802596601093523,0.25236523929788013,0.2759835844071725,0.38045354031756085,0.5711483199338968,0.6233347989942948,0.5694933041461292,0.46291360087868816,0.4234686635602283,0.3419314883194069,0.382206672482721,0.43238594040642114,0.45465346039666416,0.46580488168542356,0.5098915903596168,0.5763914080139968,0.6441825165848378,0.7071626868239318,0.6829526577055575,0.6185648336313873,0.6201245011913716,0.6378973019951315,0.6027934954643521,0.6666567614492815,0.5767604813286465,0.5733674559667488,0.5902633221563951,0.6445685564796922,0.6738006447441648,0.6927394325150624,0.7996437388920192,0.751760596463949,0.8207450772212024,0.9008613978379043,0.8561532877921638,0.8701423369026728,0.8408718965344159,0.8163709778706592,0.7500276310246612,0.7052257968105842,0.660537285731039,0.6688281314819394,0.640773764769593,0.6475040950302684,0.5925242586166914,0.6521197115468458,0.6406771497291119,0.6294849230435461,0.6429725323526921
0.4188090306349158,0.6008816750945597,0.6193430918846791,0.5916851404815393,0.5725933260106847,0.5275700478552857,0.5503372974407589,0.5550521610632551,0.6153510719397368,0.6888827569901941,0.7459552537147305,0.8991965911854112,0.8298187962184118,0.8785791557486,0.8216853045702532,0.7823655230060462,0.7694451361689894,0.6295934565433111,0.6521880912855333,0.734040118655436,0.6347824217971897,0.6505330207542003,0.4588713724352651,0.43590124893153614,0.40033643549481723,0.42071705236905377,0.4449986957740517,0.4940143214871537,0.7140953621889562,0.7850118144671944,0.778541590096654,0.8658158167084137,0.943212717807237,0.8642345692372292,0.5978256700005378,0.4544228935929966,0.3524224009757697,0.3038259935922949,0.2654106670785086,0.3620141238849186,0.33308934944284474,0.26818460115166187,0.19150414023374773,0.14642234767456563,0.10320766897582678,0.18753357314434127,0.23025083226704135,0.2887204139279059,0.2962074571501318,0.28288950464181734,0.35111013291825544,0.42896332621594424,0.5265828910499399,0.5417789429406776,0.4255986303660803,0.4547974572288885,0.5353455366664148,0.40064298433406587,0.36523560895070456,0.5040633375433268,0.4628805364207338,0.5185695865467598,0.5372875221000089,0.5481883523696898,0.629101789711653,0.6176273770975444,0.7000225184278619,0.6870933709619411,0.7249702971547216,0.7203178266738643,0.7214292021950428,0.7120930814021497,0.6046800869688771,0.5890133047347312,0.5825288065386217,0.5953167528494937,0.5702597338573888,0.5455392119849144,0.5765691741628879,0.5492181878832678,0.5617227076437349,0.5469513686847162
0.9913841048871008,0.33931495314573556,0.34802285289082335,0.32436116009018,0.3103632618187254,0.26942152725102075,0.34038149832453823,0.32915221953376783,0.34169170154197925,0.4336562277138264,0.4354248021795842,0.5137365757797471,0.4146511696724945,0.42803996976074715,0.42943328268439623,0.40598255774688063,0.3975916633839878,0.3603353620978482,0.3664834658819215,0.43626352816275643,0.37837998394340555,0.4117453205565589,0.358606396308269,0.2979461925321632,0.26208079398709017,0.28886450116310114,0.33934993688981324,0.4781674667028149,0.6942839884822851,0.7746903240766455,0.784580040605927,0.8298662279699336,0.8649668266878188,0.7817099431297829,0.5599168718287881,0.28777544073940986,0.2272981657318216,0.36988208122277344,0.39901280007291884,0.3959251724505469,0.4240931144857929,0.3984019527831062,0.35384957652058346,0.38295774952021544,0.3725574000501166,0.39644397254632147,0.4528489120977565,0.46730407639656735,0.47765829552396455,0.47623988405196754,0.5317556056202659,0.610292074305364,0.6593910055258244,0.6635253669422894,0.6495433246957774,0.5670027644613955,0.5411730886843586,0.5063096035493946,0.45385844002775827,0.4808996574327157,0.48756289803036257,0.5230287176332521,0.5521779509444051,0.5815323635436835,0.5814205761107455,0.6039657075628624,0.6927636938414605,0.7371742207349581,0.7679748085148024,0.8038010433595378,0.8060740361401789,0.7814160098351385,0.7426966085320055,0.7294027981952876,0.7308950097812876,0.7038726671862101,0.7277428434712898,0.7127463910145602,0.7536994675670508,0.7528114268242911,0.7549927329946815,0.7657396621108106
0.3336963867287995,0.48529080373026534,0.47097318678851363,0.4485603941824829,0.4532043381796946,0.4246105724189039,0.4968629290071354,0.49930196984624253,0.5168528044219752,0.6281821712194255,0.5672038143178232,0.6235597716842304,0.6166184223271425,0.595990792893084,0.5660559959682211,0.5595426912135135,0.5463274741131128,0.49011970341140904,0.4580720812550321,0.545291018355421,0.44310537768649927,0.40798516651056915,0.3455307355356717,0.345637591994238,0.29036868478269345,0.3194435984679905,0.33454944246262464,0.46054243952877555,0.6928483569041921,0.7677621164139263,0.8392870316730977,0.9382184971908996,0.8086258994613849,0.529472920064135,0.304355831134581,0.26988161586248893,0.3307626525070011,0.42655191298806927,0.5323168005005099,0.49923438665458586,0.3886827046425697,0.31947495310274143,0.24163691580901603,0.23131630818806403,0.2669484798562325,0.32860277155501794,0.37812547423889303,0.39528600423037075,0.41516202922724943,0.47813260790552303,0.6120357527012097,0.6726304239650347,0.662625227362372,0.663140594479893,0.6351210778336633,0.6115912573183495,0.5757658340926194,0.577338587684159,0.5046651196434015,0.5441180780865826,0.5824007918328559,0.6177816409104965,0.5974187349594584,0.644866315587481,0.6838683412209098,0.668234435374601,0.7212578732175654,0.7839783441739023,0.8081655893671902,0.8066730593219352,0.7881387955791643,0.7625341914965669,0.7225659818969326,0.7032441703307395,0.6870330517768324,0.668718876433373,0.6791468758193129,0.656902534354459,0.6618807950817419,0.6533161488442021,0.6493854180903057,0.6305973785211288
0.21216723527957582,0.3158879564732093,0.34915761105607235,0.34272434739544333,0.3744197762501402,0.3557576623366731,0.41889561757673477,0.3382454859220363,0.32451119659716376,0.36316112116468374,0.30449285923791214,0.3387160008961063,0.32369858102193805,0.31509500626385734,0.33906701045166815,0.33461957309379897,0.34690783703181816,0.26993730375595465,0.28790131944816466,0.34271899574764686,0.2958913821104534,0.2791894781031542,0.2682313253618132,0.2797129532600579,0.20925752435383688,0.23176275703699906,0.4530407835809997,0.46541088884806286,0.4294614752760145,0.2429020036129973,0.104072022244863,0.13980304065638183,0.18902535019008426,0.22827546989268999,0.3667695290587293,0.5658833490496734,0.8119688835851282,0.8562768077174329,0.8645342825382886,0.8776237922700855,0.8754625044927328,0.884951204802078,0.8705887207990245,0.8923862072576217,0.8682870614339132,0.842346584835723,0.864436966998139,0.8949441527112825,0.8926881793952961,0.8628510956808446,0.8389250075960033,0.8160059285341668,0.7879753113631823,0.7512446674470714,0.7642980483778363,0.7272020229623377,0.7297440067619059,0.7092697670720576,0.6861720108732237,0.7278877323784325,0.7196804104940465,0.7315754684545198,0.7222382827263738,0.7579052505650004,0.7235044486304542,0.6644661859639716,0.6760850731341379,0.6746309432308857,0.6341253631717865,0.5777421264508843,0.5512605854576725,0.5345772852955061,0.5643544975556946,0.5516975783185043,0.5724074115240461,0.5884660451314954,0.6210466030204698,0.6242617819906057,0.6820728410129142,0.6908750040205507,0.7273541684385223,0.7298397278644729
0.2635372289987459,0.39090167156975725,0.38702033185043233,0.36168257256943537,0.37040174140901383,0.33058040497589314,0.45997879152201226,0.4402002086712326,0.5158012538557555,0.5455571895497054,0.5329535517381377,0.5851679369028477,0.5436363576625318,0.45931749511834113,0.46327330209622647,0.4496405448031526,0.4371294573813806,0.358814795091389,0.36493695470025855,0.4094203854877713,0.2834550075669619,0.22371989551653426,0.16729946622019154,0.14577654738767887,0.17081978177688228,0.22140207170487058,0.22414573712851982,0.3885696007929821,0.6337291188942225,0.7808363439487334,0.861431265656039,0.7503078862199172,0.48053597025611133,0.3147754582161886,0.27835366826006447,0.2592565510073698,0.3527770804173156,0.6156916271378403,0.661185823071984,0.5772058433296997,0.4654041212573523,0.37673866539315515,0.34610828098944857,0.42129490489534566,0.5054219539158957,0.5442445834216159,0.5622538815668431,0.5780112757033924,0.6763125916369245,0.8030295120050217,0.818702802013172,0.771369652658641,0.7974030030250484,0.7714971170717219,0.7551573352480869,0.7668933838001493,0.8205999448065713,0.7664770310920792,0.719796879761778,0.7730583695325635,0.8251648540626358,0.834105400594006,0.8078879170475404,0.877732898723298,0.8415405407266577,0.8081774083483011,0.8473756908163663,0.7829844011720302,0.7443077273959473,0.685648319060423,0.6383642196104938,0.5869297958726892,0.581280380065765,0.5391026056093735,0.5498139306167882,0.5697868091734732,0.5910459401627097,0.5804018342744256,0.6277433538989858,0.6490810223121058,0.6661742721838793,0.6752728610511906
0.37131415229100473,0.5570629282672583,0.5629593580649992,0.537622791256658,0.524417219386777,0.47697224025847534,0.5119467857117316,0.5254732349391966,0.5574649230221748,0.6395393174361184,0.65008983745132,0.8173127604354239,0.7542729337482827,0.7841455922358366,0.7780523852908177,0.737173341229914,0.7671329805971988,0.6056645719418423,0.6159985248044081,0.5940720652531498,0.57561841173842,0.583554055816287,0.44506649418977234,0.40273980870831844,0.35473425509329015,0.3542881385587464,0.3903446487532471,0.4842429057382751,0.6979072806590401,0.7778263608287115,0.7757630474572872,0.9017519965341837,0.9425339851393689,0.7740659430917262,0.5152044201596799,0.4108223921510086,0.31408996752401896,0.2814902860677415,0.2878910123090913,0.4232351680205977,0.37644353242398054,0.29032029728925857,0.17156311739558006,0.16253177568755084,0.17980130313484832,0.2566161412964554,0.2975016633018316,0.3416039215441076,0.3631670620793399,0.3522534419846379,0.43411585466850733,0.4685041053807194,0.505210498510666,0.5477837370149756,0.49928528962249813,0.5379546733695111,0.5088669642884494,0.4183676849079221,0.41212185745600344,0.4476570814829759,0.518163676883382,0.5607243050121463,0.5497668955202843,0.5890366322607956,0.6125042062081357,0.6546580665062733,0.6818734026915414,0.7384802930868173,0.7457086244593609,0.7625018466632734,0.7506233304483431,0.7206313636969172,0.6966521044903542,0.6536018621261461,0.6367695139916856,0.618948272482091,0.6216162261258684,0.6147423910430807,0.6105680092718352,0.5899944501281665,0.604976203881026,0.592112998304409
0.4139285832568765,0.6004934271473051,0.5861307954780066,0.583609272236165,0.5393314797332603,0.5009546528705432,0.557208856228133,0.5550016569892797,0.5752465291134273,0.6340904582738183,0.6621161509526236,0.7897977099464015,0.7782339363129367,0.7901446494310572,0.720917651461283,0.6629157237078173,0.6990599101905342,0.5921061636029072,0.5415653351430698,0.6013676247171716,0.5691276536691515,0.5399389957317526,0.43314545622808726,0.38734952167499115,0.307802918157352,0.30226681929282445,0.43291981085905196,0.511527739328921,0.728296182786663,0.790565102053693,0.7876272214186376,0.880406663821266,0.9352486284073244,0.8335285931572243,0.5809191905848765,0.4295138131600461,0.3928227279136389,0.39601992138079134,0.3668621242201311,0.39282553728989533,0.39243211868849137,0.3023707437772869,0.17823255060455334,0.13972849500535778,0.0847279247338455,0.1619187578710305,0.19575505656553266,0.2229631258710678,0.2520648878644447,0.20719364693214423,0.2625133449497786,0.35395968436391434,0.4337267809642427,0.5219088190994458,0.5932847775355625,0.5162331798074768,0.4735120960862087,0.47004319913410086,0.44074374612173267,0.4782060635748775,0.5228181446925159,0.5681554795377995,0.5729850542890091,0.6292531283930458,0.6541727160391951,0.6833592187041833,0.7573828209469593,0.8112763936411773,0.8194788122334291,0.8419561061863924,0.8329286885649195,0.8007394988104085,0.7332651240805366,0.6931695314919044,0.6484779537094387,0.6272552352957153,0.620677713788065,0.5754988128040018,0.6054249088644927,0.5546370102778378,0.5340151686653717,0.537446375777777
0.2826166103310782,0.39770446490034905,0.40508733244701034,0.38906041531592106,0.38818758503998085,0.375010049851105,0.4493472651870264,0.4427503065542583,0.45398242474614403,0.5302942280381148,0.4322709532844279,0.44660470643580913,0.4468676307673679,0.41444518958279164,0.4406453405579455,0.42596372364977525,0.4626562381599414,0.41046319657239194,0.433065121109977,0.5155226231148505,0.40340339227218536,0.3535296019895546,0.3644086783782542,0.36680652262595037,0.3229637766430179,0.3315143506765567,0.41671038855683945,0.4802977456892632,0.7019110195565063,0.7901831086788029,0.8416773942755061,0.8267612229745094,0.6355012202650514,0.327050554993095,0.13832629827285803,0.15802975168666378,0.28212732006093977,0.44511262789267747,0.5522601053090688,0.5315383045231171,0.46387297326441534,0.47058716738412076,0.47429101043020444,0.4875091071399535,0.521284540567582,0.5502140206116847,0.5673093629556354,0.5663772443517248,0.5980280423608881,0.6818663928126352,0.742881168462947,0.7506357760396875,0.6879603392764585,0.6858978639011639,0.616772010817318,0.5749527000553651,0.5345529087502429,0.523660160826368,0.42252179479176993,0.4772101348549449,0.47375242026415776,0.48192299051004517,0.49184982399375365,0.5430202142957901,0.5487409504518895,0.5801540433636754,0.6779782644908077,0.7257049318447699,0.7425288120558631,0.8071138032387405,0.7917658806105523,0.7721620343271133,0.7546419861759792,0.7526054165167922,0.7541058083449743,0.7317700929865796,0.7490403024572834,0.7447247426359734,0.7626954059664531,0.7745991118534935,0.7465152425196853,0.7472551175510508
0.2988043949250263,0.44971294702101483,0.4717211550467505,0.47405643385592744,0.4987242178431735,0.5199498716396852,0.5323220899528709,0.49027661303896936,0.4926542478016238,0.47863313156117654,0.44690663466106373,0.4687835780386066,0.44782478893975425,0.4173464777199746,0.4384836339379268,0.44320696117257785,0.4034112841820384,0.31858172239827803,0.3143331485515944,0.37418356125732954,0.32467319265524036,0.31729006391705494,0.27292756380533273,0.2642234506962236,0.24556870457002705,0.22787050432596856,0.3776228035067023,0.6985044812175872,0.8116406902609268,0.6249150711498603,0.3652558464444582,0.2449023818237479,0.2245485881275705,0.2141331308785447,0.2667245113275234,0.45007777627623435,0.6498312005566655,0.6817411261155193,0.676917867568624,0.6016555429771038,0.549097250954508,0.5652649851886205,0.5832919655284846,0.6610157409759753,0.6567859371508534,0.665558736040452,0.7178145408267967,0.7716340130557259,0.8238667610738791,0.8090927596368198,0.7742119363559684,0.7562956818549345,0.7231815113764872,0.7011210361144625,0.6748087645686465,0.6469096850766753,0.6459355729924576,0.6383519727311058,0.5805180324899362,0.6049121913733377,0.6473722697408796,0.6593954602610882,0.6356137865905844,0.6708486004040597,0.7064931014685051,0.7224961956575349,0.7431446733767593,0.7469400668567971,0.7569937327095111,0.7696705830675118,0.7138613355195224,0.6764476718906622,0.6744170689611007,0.634373471251339,0.6312761514822669,0.6198902319821884,0.6329012454530116,0.6163977440277801,0.63005859334011,0.6183711843893264,0.6398256120851156,0.6273293606804268
0.3822520040598686,0.6221771378905715,0.642904481588112,0.6618800944545061,0.6270571297715792,0.6781113666410352,0.6067391547916936,0.5618363218345322,0.5313654514279116,0.5519815238694711,0.49169000836788657,0.5594732716962351,0.5781207796123514,0.587580181738315,0.6156080074307105,0.6084582126811775,0.6285935542021855,0.5423007101403307,0.5344475447755357,0.6362087057341368,0.6124380215016629,0.6099197965109417,0.6150419677676171,0.6212773913328394,0.5244549927949034,0.5724899652745336,0.6345835829469768,0.7117459094547476,0.7315551386839255,0.5902997781266393,0.24839398566605198,0.061345983991058395,0.07115069536101426,0.12531780210053267,0.2110916992742219,0.32842319542288445,0.5434481169548007,0.6507133711101668,0.7144801298601204,0.7204788017118728,0.7094692589698395,0.7515295033596348,0.7508105606825886,0.7925245155460271,0.8018267161583252,0.7795659357271582,0.8125154327584819,0.8579637038484302,0.8936423580090636,0.8763338863452588,0.8460954708856809,0.8430258867742635,0.7713215504050929,0.7379879812689983,0.6980398489136117,0.6754121505972444,0.6114111641105154,0.6189305918718476,0.5450459150140812,0.5219971010243183,0.5589504011771737,0.5738941976696686,0.5083088266284503,0.5244360319832826,0.4935258534590351,0.5322662941086271,0.42421328546158477,0.4264523822666645,0.4156341532804923,0.4372446028211223,0.4169827931104061,0.36877874467472727,0.3930459458160033,0.38339388624456316,0.41331024985024145,0.4208737507798418,0.45613866109561385,0.46154398942366465,0.4878578951148767,0.5050952868375388,0.5261884934150198,0.5359387344922532
0.35947793936707334,0.5185958708596753,0.5350442369420481,0.5291554639507408,0.5704797518828423,0.540808772184402,0.6085947098793048,0.5982373710962016,0.5731978288250481,0.6025188311261246,0.5554901687069408,0.5668011029292965,0.5879750960115455,0.5388613395970291,0.5435117539756963,0.5269547283911273,0.5213676543914724,0.49468325956448733,0.4232984615761025,0.4445061966446531,0.38713709136332025,0.40244406368895247,0.3543748981597118,0.3710587837647523,0.32672342085049627,0.34392501754696586,0.36215885523296965,0.44610348996716015,0.8003095423884344,0.90973730940402,0.7431941727526078,0.4736760334186107,0.2726304047339416,0.20899141175023317,0.1986055728799434,0.25576406459050804,0.5103774114820305,0.6204915697860177,0.626334787477684,0.5564753766833909,0.450850718065017,0.39495834423138176,0.38576094630232205,0.4494488063780077,0.5098029040461397,0.5229752912132516,0.5269693408376785,0.5876921393631833,0.6795940969701223,0.7538791615405693,0.7457530761813878,0.7245998083517133,0.6945038778701647,0.618923374972161,0.628971112721036,0.5921097968752043,0.5822211095256098,0.5590666859925116,0.4849276607515057,0.5360475018210853,0.5507037221494918,0.5721857523596382,0.5759749731784505,0.6220232803783925,0.6368740103082592,0.6683096479200987,0.7088124994373413,0.7252355315782828,0.7577230357156246,0.7505098504690325,0.7195738619562884,0.7022985775697894,0.6755395890688318,0.6461746948821814,0.6218131114730716,0.603527888429542,0.6151697862604006,0.5839827839948277,0.6083157141467904,0.6074666875951271,0.613823445329124,0.6050181359934924
0.2609727243228197,0.38697680408877083,0.4039567241287704,0.39146729062145874,0.39432282058892276,0.40780303720913474,0.47607994579084423,0.3915922520350392,0.36811852455825883,0.30955823745131966,0.3214363690577481,0.3729295727915825,0.4260420284141795,0.39095549274876185,0.35869674146659747,0.40565047321262393,0.3179878460864202,0.2596006442770217,0.31651390356800424,0.3767795416113903,0.2886329442415449,0.29017203110499173,0.3039123689609392,0.3152780995224893,0.24856455431233426,0.19631295970935347,0.44034519709185804,0.9276212678424595,0.959299140389033,0.7308867386733526,0.4693731038967859,0.2835407179885232,0.19022583329245935,0.1712617414540485,0.2303317104010243,0.43998002972330796,0.6361583310119827,0.6734886421334179,0.6881737106489965,0.637563265736001,0.5608284550107976,0.5982846295210877,0.6723221661157397,0.7188862575536475,0.7210471348477373,0.7438086354579064,0.7306037714557405,0.8000134766648295,0.8509595917337909,0.7981424326337673,0.763499571904195,0.7367867148801841,0.7012002650552327,0.6666473293179038,0.6256742234821777,0.6043587534981678,0.6101234437453495,0.5869128231442591,0.6069792290096236,0.661034338947984,0.5132288263272432,0.6240243059951686,0.6903342022757744,0.667506852963883,0.6717133772183482,0.6927879127274423,0.7744080091407777,0.8358845245475603,0.747777860203475,0.7776785581512587,0.7051150123862615,0.7108965389294435,0.68712196666438,0.6323903787960667,0.6505787823216527,0.6689042107442997,0.6352667785200337,0.6398695855000542,0.6678019945323129,0.663601056086748,0.7123350127026827,0.6602535946481114
0.3681287681776406,0.5319608546873847,0.5628354855484327,0.5425400518526848,0.5767354446590369,0.5610252291182612,0.6197914512908247,0.625979868217267,0.6250807390291155,0.6341532495834417,0.6063155132704613,0.6245541717415639,0.595824126546163,0.6156630075556804,0.5789857533947965,0.5830601791786401,0.5822189925072976,0.5556755822512933,0.4969699568372352,0.5220212058350617,0.4448511845403531,0.4541835693379027,0.4314326939585881,0.41169407739999364,0.3894147760558356,0.4120463441345776,0.4226113114568435,0.48628391864000386,0.8160301613513408,0.9433024816925206,0.8027200999504887,0.5271333098850981,0.29124997340027803,0.18678184110417262,0.17370025624663632,0.2034448591293545,0.4289124501196213,0.5869546289005668,0.5954097546085882,0.53105219813212,0.4268372959867389,0.35358872317926215,0.365225137797076,0.43075447681368645,0.4877579531160444,0.5378866000242826,0.5353093812498229,0.6089858640482528,0.7066270384295534,0.7403605448771208,0.7221103181994777,0.740949830648312,0.6447632712574874,0.615886402497879,0.5680862752931695,0.5864985093256465,0.5506537396106139,0.495099462349579,0.4163218297956191,0.4901847260981891,0.4836638076096961,0.4547490575126053,0.4610720601634226,0.5016856552324507,0.5056886375363824,0.5188428163163925,0.6309076811523537,0.6514489344263565,0.6554016167975854,0.701485080929598,0.692663906613715,0.687169327200541,0.6428566897508399,0.6364075763644963,0.6450093881799916,0.6097235204955549,0.6281046131203452,0.6169094574393912,0.6360969173985538,0.6183026298591828,0.6140880769958946,0.6164137103206397
0.3756877912966543,0.5254814163171991,0.5491858658477456,0.5105305282980724,0.5833633556616689,0.5473019456057509,0.6075496142504444,0.6266844371459975,0.6525526689674908,0.6477039440297643,0.6390259185404317,0.6677408931205424,0.6181810959966553,0.6406750045314177,0.5868524889999417,0.5912522786865952,0.5237429087388286,0.5162164845240624,0.5446563474007189,0.5081405691403382,0.4174999505600625,0.45120021172008923,0.4150677285760841,0.4541171858428751,0.3866746708238139,0.35066404868341267,0.45155461170708056,0.4729973835415683,0.766876894846586,0.9024773401352402,0.8317739442123814,0.6003087383400691,0.3643074086627175,0.22730828299075723,0.19418111968570406,0.195247398734554,0.3284785581718992,0.5633594851216546,0.5978335188295109,0.5423056581530452,0.44860149409769035,0.3575055255367918,0.3703566418803579,0.4215889006973349,0.48987803231480137,0.5361266554458604,0.5105204255550272,0.536786082336118,0.6299785034657464,0.7280541717595259,0.7399822206503677,0.7530320478523764,0.7312417782998611,0.6719828279192083,0.6295601216816433,0.6704633849825457,0.5563686184650158,0.5691101400804359,0.5195601754108976,0.6296690537064356,0.6150473939637134,0.6145643156524739,0.5816248313694656,0.6624737924378254,0.629499796502979,0.6156958382242037,0.7120099107667268,0.6713121707642786,0.7212343085915505,0.671058926405448,0.6387549300238056,0.6087170203911797,0.5981295514311482,0.5413920694520595,0.5492565503054847,0.5433196176453523,0.556325794955943,0.522850617959764,0.5601907867492681,0.5267706241081179,0.588124376028227,0.5627122198917609
0.4645260950151974,0.6852235914723883,0.7261834113715673,0.6862688157379517,0.673502523717916,0.6280043027513758,0.7009226204429385,0.6853845301802125,0.7187018913828391,0.7852544796961187,0.7154979088884436,0.7080226792172103,0.7051778793420237,0.6609177265769988,0.6401748517811078,0.7200420114926778,0.6704618543558786,0.6939185322279161,0.685744209687121,0.7924880647998317,0.7062134959363491,0.6795687919684096,0.6345876762904941,0.6697738804912721,0.5908329020030609,0.6145225714433372,0.6483635525987407,0.6868074896169378,0.7767481631031858,0.8373577148073305,0.8518648020661964,0.906171245815913,0.8512983794661688,0.6870412523809585,0.38000675378472837,0.15764913232067235,0.14844137070879726,0.3186125012792782,0.389956216208714,0.3374222387512088,0.23487829589184683,0.19031713559018526,0.17964079687047763,0.24100372685294646,0.26511322426144224,0.31604630844202986,0.37890200562114973,0.3899407729518378,0.39574483032042973,0.4172282640374171,0.5036874806588215,0.6200197617805561,0.6638513247601073,0.6246677265079059,0.6640197122884235,0.5185052545865523,0.4601729577270691,0.4246356930000298,0.34205688003103835,0.3204996117882607,0.3134900391173905,0.32633016827801375,0.2927311287711932,0.3283300333137963,0.27667354560906887,0.311183836498911,0.36061827252904655,0.3592209035449657,0.4834506518447726,0.5867262793583558,0.6116507733994461,0.6293806688254573,0.6228212847671253,0.6426554123683209,0.6495470521879458,0.6520383329432108,0.6459306473569344,0.6223634826034893,0.6042464875179898,0.5566679535308698,0.557502898911377,0.5357023483573613
0.32658119549862025,0.46807495326624166,0.4794225211230545,0.4501134227636636,0.4412233918159327,0.41975561644729714,0.4933561296494364,0.4968525278791632,0.528848998095777,0.6279413626302934,0.5933698503637395,0.6220562662367377,0.6305248423295771,0.5750293487840409,0.5616309159617886,0.5729460756996214,0.5396296523657558,0.4624041635505271,0.44952403903876803,0.52275317957608,0.4440001001899555,0.3774381300372047,0.3297743000496488,0.2795618881301781,0.2743590716623359,0.3021372704367349,0.2801843852637329,0.44760813129576454,0.6920772013324046,0.7669237218088424,0.822661398275058,0.9200750424091242,0.828546987320183,0.5451793114749671,0.32384791955520864,0.31726564425607706,0.3958858789665003,0.4581302350200813,0.5306977028495932,0.5127590582948466,0.41410515012471927,0.30645603924235876,0.20292303060344896,0.1719274600566132,0.2161736065183255,0.2851397799801453,0.3083196419192441,0.35462270015004693,0.36473964092270755,0.4083576809606468,0.5662601509118188,0.670831014947408,0.7126989458258796,0.6111103563607246,0.5054952314145331,0.5470963752527909,0.5542134284242625,0.5112107023284334,0.40928409784922154,0.47675387254232415,0.4372081553233619,0.46890919704965406,0.5393170850272531,0.5610037754767068,0.5049745596626768,0.579347217875612,0.6515643359096903,0.8638210778526074,0.8040382650776219,0.8307295053036353,0.8450990914284056,0.8675575009969948,0.8381711674871202,0.8110311918275357,0.8187841851368396,0.758613020649203,0.7252106929651603,0.7729820927304953,0.7565303213071608,0.6837467006647607,0.6702769246524817,0.7078522997885828
0.2801651990368606,0.41217323650671,0.4297808387464115,0.39340565754100887,0.4013588504700828,0.3758801808969705,0.484151551619878,0.4739067285343447,0.5161934749405166,0.5790095339224134,0.47717063469569465,0.5099772322372277,0.5023048052465715,0.49081608259806575,0.4672756701127657,0.45664967818030405,0.4651980968946533,0.45633188657154805,0.44989207335667336,0.501684514355784,0.4298926089695214,0.43066947447968035,0.4150439772337061,0.4014831936210814,0.3536232166411476,0.4089473538281797,0.4042326411113543,0.5059693353359582,0.7136877520873319,0.8029580235025015,0.8455049344641191,0.8150750930363116,0.6314480552344339,0.2883334052996148,0.08397140676122339,0.09001629872327954,0.18228689141925658,0.41337120397877813,0.5875639307235511,0.5562480233991139,0.5177299170421323,0.5246977917080622,0.4750521615500126,0.5189008686824256,0.5797586001665611,0.60127575567845,0.6170571798334736,0.6074143443749834,0.6373148255610827,0.7033831993728242,0.7668507487082112,0.7858910420240767,0.7501132322911039,0.7296853049305667,0.6848675498004193,0.6554849900056556,0.6650610214548589,0.6211819549899454,0.5791634080041319,0.5383452755179552,0.5939187551874018,0.6203198517555061,0.5860215895056211,0.6357662359805947,0.6200218658628408,0.6116039843145413,0.6180340524306578,0.650553099067064,0.6651436765394676,0.6797028624404139,0.6408146431783834,0.6094535557206096,0.6009028343641387,0.6106685391003898,0.5984084414967576,0.6099709745401902,0.6403771748133127,0.6512032507174355,0.6741484930164174,0.6733314512692399,0.7120219611113763,0.7207520658378682
0.6700393369998451,0.5761626500488803,0.5919938584930834,0.527619246421471,0.5454687194448189,0.5074146194175108,0.5245802088109347,0.5089484653101688,0.5309199987765488,0.6291151272189038,0.6398014945937356,0.7886873431836434,0.8497135819484274,0.8207134581122835,0.8347917376028868,0.8079114896859874,0.797593384259685,0.7168390607251949,0.6355860242359058,0.6731416878474479,0.6152634866378978,0.5782344428112584,0.5047966177678358,0.4879185834827411,0.39793894929936235,0.3836665007352273,0.34553228561369603,0.531015594678095,0.6787060255453237,0.7847518266956037,0.8179709394603945,0.8136147299364561,0.825234157750444,0.9502204837837348,0.8893616127533244,0.8339426068972166,0.6048333384918902,0.4357292518360031,0.3338009864715261,0.1673065259740787,0.17308998982414292,0.21351521168249943,0.1462200626931136,0.11246315985570088,0.06870456549530479,0.0465052267213899,0.12756280949049348,0.1500904378257325,0.1905089262499134,0.19774786943923345,0.13528367848602316,0.19054067080018733,0.27635530111480844,0.42031292122717434,0.47665193300513503,0.4236533566767858,0.44355638188156166,0.3997769470580328,0.4212669802326165,0.4279084740595194,0.44540178433638633,0.4290991643244879,0.449843273973177,0.5274483797892473,0.6070923643039031,0.583024001657142,0.6475871477356894,0.6922559697322987,0.7644571274793639,0.7581883562721069,0.7871737724843729,0.7261686849731405,0.7428188333382268,0.6740604655922658,0.641435253993287,0.6637753470292447,0.6660968460302199,0.6193976629710631,0.615236152767732,0.587764099074549,0.6152662832824464,0.5582689842219134
0.3241935215190383,0.4508266188860119,0.5121586288352169,0.5166352805204727,0.5470694520106539,0.5707762576622143,0.660397549701659,0.5831522336230479,0.5902976452131564,0.6326242997470273,0.52603563875176,0.5373610870980541,0.5001742482142641,0.48199046137633816,0.47635434297609064,0.452565766173435,0.4395304043546929,0.3811291313706261,0.3114438251181425,0.3837004823698439,0.3087713748189204,0.31312520211390166,0.28234273262235593,0.3255150039059649,0.2565515556605158,0.250561039578842,0.382791453502167,0.7514640706948904,0.7235071886161906,0.5564074225137892,0.32753378056952154,0.21833096705053467,0.15492918784655496,0.13097608166817876,0.2761183740237849,0.48329080529963975,0.655227337600033,0.6890328012588951,0.6950580058211053,0.6417774257771398,0.6285073462819311,0.6429815233188798,0.6753333351471684,0.7484514673805265,0.7423113988342677,0.7049457501493859,0.7568963280722221,0.8445445783837295,0.8591528662095655,0.8780325942517577,0.8602537890370874,0.8577819584209642,0.8244176769440222,0.8445548869611776,0.8986325211626094,0.8602737242365639,0.8174651803451138,0.8411508765217484,0.8141250322806479,0.7890990483762887,0.8316290754396048,0.8417272577504494,0.8296107166039584,0.7849154281250295,0.6986039299027172,0.6709075632211325,0.5794084535277833,0.4997662476279403,0.4552804477346328,0.3795727470904948,0.4095913914640438,0.40531011496055175,0.3903518351624822,0.37671370647582547,0.41578898589002744,0.45098996421823623,0.4655361513281973,0.48558775323399744,0.5331153941195023,0.5564488857048909,0.5936446660950602,0.5939861748900407
0.30277550192426816,0.4380377846767501,0.5050245772605849,0.43260021037739543,0.46672032372927547,0.4475355362909776,0.46423687621130294,0.4773171863437704,0.4936608737184383,0.5922006728787652,0.5543457347714897,0.5453214614584907,0.5253127973935398,0.4869936504485071,0.48611168748442474,0.4876762208932273,0.49859276835971916,0.49389743462896846,0.518566809697401,0.6366392478676945,0.48855262695754875,0.5180344083541267,0.5243236984674471,0.4704176575286059,0.36994514097289305,0.3813448585055087,0.5556238786603525,0.5694608536948649,0.7266657423801658,0.8134944258514858,0.8385112337082573,0.8767338467916302,0.8324514265405385,0.6680439504844485,0.37823687916976434,0.1785837414511946,0.15974789559539504,0.32606282769139194,0.410566185124693,0.4038066967000623,0.36522883187150046,0.33009306097825775,0.3008990907340322,0.3571866531739555,0.3617081819913282,0.40714433654800697,0.4442146480705461,0.5029245215306,0.47891790681096463,0.38322938956272556,0.523554282637813,0.7372522928075761,0.7877096135992263,0.6699163499773392,0.622471764114884,0.6458468062016534,0.541321509051132,0.5699822778316987,0.4314764770461647,0.44926636136394293,0.4677776409492207,0.4382748480490384,0.45273770551908843,0.5242737019477175,0.5125819751011155,0.510714817342242,0.6062734757027253,0.6393725039775815,0.7489568984192285,0.7222321951432836,0.7962201160837734,0.7741364546875583,0.7085264905282189,0.7504561882432729,0.729770567920836,0.7066985172173297,0.7037641262565408,0.7243811474785051,0.730877342381314,0.7428505392606026,0.6988486838098854,0.6706384469032193
0.38519857161388155,0.5811629927380033,0.5975262586985958,0.5994958438900838,0.6281996020488235,0.6011326955260771,0.6973409225091958,0.6235169721117688,0.6164317534976034,0.6457118722097652,0.5560409036525588,0.6116787534517876,0.5909480346237556,0.5538317428791797,0.5670854945481852,0.5711359746157091,0.5609546644697302,0.4694291365601505,0.43059118663123364,0.5014241647048081,0.44760740647071157,0.4713662906862217,0.42146992854502624,0.4307926071591919,0.3666657123118213,0.41583439370860653,0.3969376262267796,0.6839677189783918,0.8838390352606799,0.7914777018970934,0.5034227238048739,0.2739867051755529,0.18585873644533468,0.1434378694024233,0.16305540747755365,0.3222649227747517,0.567872164083376,0.6185134904084157,0.6303280787074701,0.5712181419733265,0.49564677398059287,0.523146614916614,0.5255696730899193,0.6127572552410583,0.6451107666421003,0.6287984670981994,0.6771401284517363,0.7630847021303104,0.822656801292911,0.8338041876248168,0.800789188363676,0.7688631674891089,0.7046736562376762,0.6919491448760393,0.6901574507365933,0.6599587658561579,0.6684943950627429,0.6348416672011777,0.5756138218695728,0.6215701698603662,0.6058831609688485,0.6377330843484025,0.6132650652129441,0.6352769945814352,0.6137946352652927,0.5894605590343382,0.5656815775877657,0.5898720286897075,0.5477985959659373,0.5567748719079305,0.5201815422985852,0.5212480876371965,0.5013354082663832,0.4856589024186778,0.4877094219009147,0.48932413160341737,0.4997445147532694,0.48866953066072505,0.5276626155099878,0.5364966218131932,0.5567960499655269,0.5472527217365581
0.6715705308030748,0.5516004561154569,0.5881218429080579,0.5467069318474532,0.5417403836128245,0.48720462216630445,0.5360696296025536,0.5195536688410624,0.5345937970486966,0.6010814667231951,0.5964631966345919,0.7308134223157561,0.79721304141757,0.7927494660349476,0.7968829138964262,0.8001231780583978,0.7562517558234529,0.698595494037867,0.6415413692573501,0.6679026690500122,0.5808606281298835,0.6066737263731161,0.516731658769146,0.4483075014643776,0.3318538292048169,0.36428887439038876,0.36332178405810545,0.4543854583302976,0.7014529876972627,0.7763707948805809,0.7862031201550622,0.8017579842929048,0.8286503701444672,0.9557207521769358,0.9194618424059228,0.8698091594626958,0.6644715287784422,0.44347838019759867,0.38367543080736655,0.24125023795177947,0.1380980423998166,0.2193016791136717,0.13930552076131697,0.1049637998073365,0.08457800403944982,0.05519417787755354,0.08404648278133064,0.11861940250110997,0.10228703571249703,0.09024373288961329,0.08949049868449749,0.11440738937345447,0.14215859529515332,0.3451309188947167,0.39211406509733787,0.39068275044431594,0.3811242072260319,0.38290124847088847,0.3156347262662275,0.36505440720023363,0.3987442678930946,0.43568878889170637,0.4548794318091871,0.5036910828616037,0.5546926109513962,0.5849459007705531,0.7052836255502648,0.7334998942241078,0.7878091276024763,0.8565846904908968,0.8580296316153617,0.8348071335530126,0.7858665764758983,0.770146417653334,0.747477212786424,0.7156868611980386,0.6988005096413916,0.6483978887783106,0.6588837352419299,0.6312826595062996,0.6183948589001678,0.5939356460447027
0.3536871654561054,0.5017260780397279,0.5642939484464338,0.5163920505974383,0.5257463298263779,0.5357650746805701,0.6175493361325239,0.6666942306945761,0.5894838785744223,0.6627320524378926,0.6116290255118628,0.6127122453367357,0.5853315448668579,0.5462315697264146,0.5297332828789884,0.5276225922639666,0.5077124213771904,0.4143266761921114,0.409840816401831,0.41909963794736727,0.36014486619119906,0.3550227562121673,0.2905948716785029,0.33789701780495324,0.2815292694984013,0.2927283681338236,0.24460932411372854,0.5146031430321165,0.8210435392398117,0.8240733950117837,0.5942848329938542,0.35585247579239165,0.22377484333426967,0.1607993300416023,0.14605162395971338,0.3259702042492554,0.6324265163577838,0.678567053537669,0.664698842108154,0.61647545729315,0.4837775742137276,0.5190605343933825,0.5267995800553419,0.6301042154083085,0.6284368081637296,0.6201412619359937,0.6302594329936997,0.7088558662945359,0.8231246688025249,0.863668078030593,0.7912661198272601,0.8017070151202568,0.7646917501401891,0.8140138946899146,0.8225640916386006,0.8534573033247348,0.7978187448165373,0.7898507141771678,0.7485720020610658,0.8378669351148642,0.7900509979669966,0.8973258123050462,0.7800899065880214,0.8691012064380093,0.79202569466483,0.7212394399792679,0.5979632272320838,0.5911054967908518,0.527002658360261,0.492371085994586,0.4418286760266712,0.41151123296040154,0.4070662507325776,0.3957656539554382,0.4243632944315092,0.4169565065638239,0.45517185948984445,0.4532590651287589,0.4929540020443971,0.5030497083477345,0.514884650186841,0.5305159235135182
0.9781379014773159,0.5814263775726163,0.5663309775146288,0.5634200841031088,0.5486799273794373,0.4997925782360598,0.5427143395215895,0.5401658922808582,0.5738324436505845,0.6268702822411235,0.6093686299414613,0.7460685680223975,0.6651360507003394,0.6713999773787582,0.6450563953261856,0.6142887034783828,0.6348690624486026,0.6143435603337979,0.593761103367477,0.7068158265136208,0.7051051601507741,0.7200759902941243,0.6089602678146687,0.5927693472679612,0.5227492077443017,0.5706460184274367,0.580882958404673,0.654790978919146,0.7819590479204951,0.8355923884402509,0.832913528762143,0.8496592831948615,0.869498211253894,0.9229501955797358,0.867528794401424,0.8570471226812468,0.48886084162428056,0.2655863254125579,0.25961070509316697,0.23079544760816184,0.12026692965668673,0.12784652505505456,0.07140827360029067,0.09524908887482175,0.1201923721662177,0.14843055519184478,0.21176019562078857,0.2353904917892336,0.27954525893157306,0.22445859116359929,0.20433610930659563,0.2758028279036697,0.35579148803727695,0.4655730698423186,0.42044759688808925,0.4331732025701605,0.37792375885757756,0.29009270449059144,0.2127043166110399,0.21122512201797328,0.20557762943125724,0.1850158035632543,0.15125960484458922,0.1708042558669718,0.20030905635857876,0.24530992052354217,0.24057360302519093,0.3459673537054505,0.47863792280929923,0.5737877538695847,0.6170547317784445,0.688895464428443,0.733420556874381,0.7843673285591853,0.7841449011217256,0.804596598378043,0.8125302522327569,0.8120475520409034,0.8109819283750139,0.7854485807333362,0.7646476426247294,0.7153862066387783
0.9768965997171458,0.6226643213173724,0.6327597805894221,0.6173095219297301,0.6152107444626771,0.5808240297888593,0.5962307155020545,0.5815378794044552,0.6208407707230961,0.6942789506115139,0.6758841838017876,0.7865661850546284,0.7542748233859594,0.7435960251053613,0.7167591021402465,0.7178982300409358,0.7000353382065447,0.6801843469395871,0.612736274357178,0.7670462080627505,0.7498031604253919,0.7474280561612849,0.6560025481772911,0.6200891090740439,0.546904023469675,0.5967572780397181,0.5829030788444303,0.6738442400631213,0.774980397737123,0.8361145733707926,0.8385681920127964,0.8551299445730218,0.8542948284532812,0.9188737066694515,0.9102072592793725,0.9172345999323717,0.5264006914758863,0.2404115630333028,0.24287071108377312,0.13335504591664837,0.0,0.05748078087159181,0.0732591463406318,0.10695700910823558,0.15852202779233948,0.2159155154230537,0.24336541862077177,0.2803190982788368,0.31534778471436875,0.32565488572966417,0.27923494599336235,0.3648369831298722,0.309105962585071,0.35641996008436405,0.36965199006384003,0.3239393170270987,0.2928797729029442,0.2488408881244495,0.13030231820946742,0.12977145607542795,0.16593579183699603,0.10627915534463872,0.07564893415679363,0.09303590521181904,0.10598634895064518,0.13771204109138224,0.18267502126320823,0.31030769555084714,0.41723328304927393,0.516638453466008,0.5917286451645232,0.6424905876804687,0.7021599161494847,0.7128618289826906,0.735878966521077,0.7597081158264855,0.7761256469036006,0.7535936661081998,0.7424246020497471,0.7269150340494938,0.7112401419391801,0.6674402527230521
0.4025033523387911,0.6002423000390139,0.5969472550445305,0.5937215187046877,0.6014643134074147,0.6118250994319427,0.6759829442198753,0.6570430138229328,0.6951314281322706,0.6280789922755887,0.60033824508781,0.6560665173035719,0.5923530936146536,0.5897415114042858,0.5893435321586485,0.6554251853179494,0.6320976722770106,0.5805044635971842,0.5743609171903794,0.6646178961502163,0.5600978311869123,0.553313540984362,0.5354610788290308,0.508747061903938,0.42641424376300874,0.46650830597894155,0.489279611181803,0.5788021886547297,0.7949656927909037,0.7940674228976405,0.6136465010937602,0.28283895433315187,0.06537532944372959,0.061752525101650524,0.09972647096847198,0.20898369597271071,0.5348549929671678,0.6394933753605023,0.686058079743965,0.6703998410763826,0.640292945838979,0.62963622152857,0.6589618127294394,0.7352210652155353,0.7473383965812013,0.7085269035246742,0.719777558084282,0.7765278690762683,0.8642004431860815,0.8753664419220315,0.8568930916227252,0.8389497299683659,0.8056266944570063,0.7530440710626319,0.7587247875143319,0.7717901226700872,0.7454024817716896,0.698644695977781,0.688222428655179,0.683884631058221,0.6876571603115195,0.6662934340390289,0.6345779316641855,0.6734292925023133,0.6023189673112704,0.5055053117319017,0.46210792664974054,0.39019184352129677,0.3416447701487096,0.29537490819958334,0.26287445997250986,0.2886166820092823,0.3115475993346062,0.2890790073311,0.32737104228915764,0.3729697565720657,0.4104714538869976,0.39513179831143674,0.4438259370190317,0.46343477877641004,0.515656304673247,0.51628969923016
0.4531162655359859,0.6912559292749904,0.7452994566266989,0.71698823784608,0.7706568252517254,0.7716633297608682,0.7552603144003898,0.6539251310640299,0.5911009640633762,0.6334117349280902,0.5676603610433756,0.6033365384841035,0.5962092299805832,0.6570435436976689,0.6706161669732127,0.6628684582033882,0.6871567106053953,0.6138991163743557,0.5859469655321383,0.6517706492064803,0.5587391686766524,0.7365074971992026,0.6360757560940818,0.611736509379968,0.513124457245976,0.5602417014654478,0.5569995423678696,0.6471989986376498,0.8071295161434958,0.8251397833039774,0.6127416470487129,0.27626940380715626,0.10292007278810367,0.07409109414274095,0.1942721235222742,0.2446027960835374,0.42861210747681233,0.5386225409026073,0.5935954848586592,0.5861829428356737,0.5225440803386945,0.5503944135261349,0.5964404934298362,0.6582289999990427,0.6483823293492016,0.6291366506131368,0.6574777262936479,0.7200899815414132,0.8101022914741711,0.7925234131450648,0.771132760268027,0.7959494141184468,0.6833484712842153,0.6448695685094902,0.5171933557792365,0.5380006063015985,0.47896398668220896,0.4408245701589326,0.4297847875229636,0.4549043080766235,0.41666837742018914,0.4775363425105369,0.43762637652829717,0.4305663783807674,0.4237905116348123,0.47247848540091986,0.5090074013546946,0.5245301560089581,0.5469533818233188,0.5546446250853148,0.5328080019133784,0.5014298546583632,0.49474154289094113,0.4329271278109177,0.4545649795896999,0.4627584652087072,0.4830470812149187,0.45258259431852976,0.48544113043794407,0.5002805962906578,0.5185344591011136,0.49663170231957254
0.18821017636397117,0.2629600808595698,0.27573240133213744,0.2551776684155584,0.25846492728698856,0.24762272322610476,0.3417954975092554,0.34957721667469316,0.35867276476546756,0.37562906749982505,0.32244731829227735,0.36961656070985194,0.34340037805603074,0.3128945380328275,0.3254039171303353,0.29161527529740716,0.3459292275649387,0.2936750368359228,0.283755075701813,0.3377832889728454,0.25487061365599084,0.23016866218444282,0.2646650014982142,0.23175931668896044,0.2445841153113642,0.2256054321296766,0.24630677546661311,0.40301651481365325,0.7035693896320262,0.8276521347924078,0.734908818204806,0.5249664829267833,0.2541967463913901,0.15848019721910322,0.1900975475291079,0.26243315417718205,0.463460680906576,0.7056685387094587,0.7289482214169782,0.7111151551981594,0.6849907761217178,0.6636322328811244,0.6684130599747014,0.7199227597987288,0.7411890508570983,0.7201367892861138,0.6967376937702794,0.7281568480189278,0.8180571187626537,0.8820199994544192,0.8742254798143746,0.8846974946285466,0.8649617849903104,0.8566820444732838,0.8458406682597399,0.8073696015003622,0.8150683493157334,0.7595192664374211,0.7103599154522413,0.7964169831754868,0.7895625266802598,0.8257440264520627,0.7684772292953796,0.8096499044711438,0.7921396109781246,0.7437711458222178,0.7230780775582504,0.6808721516689011,0.6599100174448727,0.6447574382021576,0.5790394034892231,0.5622728131653285,0.5758355873226046,0.5651814318192766,0.5801578282257969,0.582467846774588,0.6371270977127118,0.6464883572034974,0.694205590708538,0.7260885067131607,0.7520262254853562,0.7699475017904499
0.5987002466990158,0.8902673276424344,0.9522552601894075,0.9391863546573711,0.9755264441414899,0.9867854896537285,1.0,0.8285977014388604,0.8143792055292995,0.8648764329694235,0.79615452411629,0.8304624713941873,0.8486779471233272,0.8572664582397285,0.871457667780791,0.8932757114043428,0.8983171185387384,0.8085509296038599,0.80350070139123,0.911622428267322,0.8834068402789323,0.8865802733134565,0.7813519257246653,0.8636312232692417,0.71045259967954,0.6895923014722383,0.765659249063084,0.8436946045814454,0.8498809378316954,0.7109071000423874,0.4048183323839241,0.12608804805440965,0.11527622012445138,0.11894988399013273,0.18629392050786542,0.302694396150504,0.5658336170539596,0.6337737702285002,0.6706148364065458,0.6911974543860077,0.6095297756945702,0.6497170769990869,0.6280877028792671,0.6683546882799326,0.755420163482217,0.590379773504772,0.6712786186732088,0.7426987920453987,0.7880567678845138,0.7930256537657221,0.7711017402466127,0.6924667344103117,0.5921292354928299,0.5695824233672779,0.5434768523240208,0.5860640794544059,0.47703186929483565,0.43863519017123653,0.44901340549511476,0.44987843686147533,0.477394654962619,0.4708722806554603,0.4525932180913794,0.3781888743140741,0.41635385394878177,0.33561059584477027,0.17633765775361065,0.1867488741315133,0.16341304928561257,0.14235553673079845,0.05575436956890703,0.09386796747803021,0.08416673654325162,0.08393830028876809,0.10414220085799816,0.17288081318432416,0.20734144175710978,0.1736123601678402,0.22099496652379186,0.26509163587507867,0.30745999052695333,0.2887790870272598
0.3529312338814702,0.5208670957435753,0.5855309175935046,0.5843893114247367,0.6013877236898594,0.6164615530345449,0.6323151568704265,0.5655976425336783,0.556784454013714,0.5388626938680654,0.5058866562425643,0.5405201697493339,0.5064012350256136,0.5248564653946872,0.5119800039282222,0.511430190680566,0.4648130931357209,0.4080662910809052,0.3542983409204341,0.44585622739189545,0.40137234661158017,0.38948866924936365,0.3697721586696296,0.3570940541385696,0.30047157552916715,0.33036478313422596,0.4981647260433679,0.7865675242072783,0.8524741763359147,0.6606169775204989,0.35657335142464053,0.23298180008861225,0.20137548988688558,0.19349320138199222,0.2442481637621705,0.43444191821461775,0.6093354976345151,0.6565509174906281,0.6511952322413126,0.5791619594189792,0.5187230616980507,0.5333677286939584,0.5461973910241437,0.6190448848646329,0.6234857608063151,0.634490379785408,0.7168757966384004,0.7860256622982397,0.8381412335495884,0.8273068613625718,0.8028668664772247,0.7810557316959625,0.7217453136343828,0.6880573156441877,0.6912688122778801,0.6639922801222156,0.6263229267814227,0.5999241584315287,0.5789560775127198,0.617981303207507,0.5934045869075589,0.6171568888127211,0.6086237635331322,0.6444258916880683,0.6236966007068648,0.6564704534632744,0.6838272554422906,0.7248880191440865,0.6865779639020166,0.6923856693648837,0.6212327945661678,0.6063794384946628,0.5869489627547462,0.554492376045027,0.553514630030725,0.5511523409887127,0.5509351021053508,0.5273609454417292,0.545548152771279,0.5399076100106919,0.5685244453631748,0.5522577755692814
0.36003488327335725,0.519015721522534,0.521546595232189,0.5249738902353148,0.5478846399682441,0.5175256824578289,0.6039137071609008,0.6344970479210893,0.5969132908925433,0.6248210591976182,0.5760424391607225,0.593865552635327,0.5764582078850121,0.5491872031805449,0.5257759830253089,0.5347148643366381,0.5074583331164163,0.4498675701289039,0.42549043865487984,0.41747538495708963,0.35841924081342025,0.38511337434438314,0.3219330079547517,0.3357769708452348,0.2808512483808438,0.32502181764626836,0.32206642686674714,0.3945159514484437,0.7422276193971281,0.9064572119740466,0.814445574538141,0.5745252909469465,0.3390058755612644,0.2288628877338652,0.20577874195546297,0.23768419137175434,0.4621711563306383,0.612418244799911,0.6167583615268821,0.5663055046990743,0.4689050876598605,0.39676682383469686,0.3685098280714647,0.4630674937328814,0.49995015715507507,0.5103569073426448,0.5198365627629493,0.5835655296400332,0.6790412389777031,0.7788456450008167,0.7680077369786241,0.742272480027727,0.722171481740101,0.7039361978235245,0.6821593179589831,0.6861299221174701,0.6764609687751022,0.6607027327337774,0.621260432309777,0.6897536551024432,0.6745455265489483,0.7168290686551034,0.6956336356223531,0.77521200213778,0.8037542895152757,0.747610684620234,0.7689946443360232,0.7816275517967284,0.752729879898306,0.7017047580005976,0.6332383143871514,0.5806888538658,0.5595383687619463,0.5311524437287134,0.5080424262674305,0.5059182142176526,0.5331195652330343,0.5054641609828764,0.5275587108341961,0.5200837831670962,0.5610235631928344,0.5662182215245397
0.6784381630011407,0.4930862168175253,0.5000777429672092,0.46397227691662346,0.4740910529168309,0.41933965481342705,0.471294452183186,0.45004292921230893,0.4907477745537499,0.5655893200648603,0.55688163575403,0.6662838447584186,0.6978215009701967,0.6820952301146253,0.6722385996848539,0.6579970434399712,0.6372704553070745,0.5925045323462567,0.5752035780768947,0.630342493011957,0.5614611647575157,0.6011333434822836,0.45791091257646904,0.44326308728150027,0.3403556908744138,0.3870478101207141,0.42701339432361923,0.5010185687888458,0.7114166089968452,0.7914147613010659,0.8007333066824235,0.8217772159572062,0.8730322582735828,0.9462695058285038,0.8748410110056224,0.7578257603785304,0.5152169402421312,0.412129395643168,0.3703306517348395,0.26426968412770424,0.2483014814573109,0.2249325087646683,0.11071577753014505,0.08889744320730009,0.06573073551542707,0.05964980609589743,0.12075628170735764,0.12899199042743414,0.18437974491459114,0.17345777086930333,0.1853176658943917,0.2887494503810468,0.3631187670888165,0.48548787776803903,0.5151291876932214,0.4595105954202114,0.41500807169954246,0.4027692301582978,0.3393167273114474,0.34028302660156284,0.3829587763411667,0.38322264068440137,0.38789557431011246,0.42287110527144267,0.4259081178562304,0.45054702274893654,0.5177869901731562,0.5978074894845897,0.6939806902897838,0.7468673433541964,0.7925619178188595,0.7997935172971495,0.8154171098298035,0.8273601663524742,0.8216688856947656,0.8097145014618066,0.8186474783877753,0.8212767706812992,0.8141024235113499,0.7895542505694784,0.7755415425849413,0.7495514208247283
0.3313013767358531,0.5563979400241313,0.5866706422423225,0.5765023601664199,0.6221758776099467,0.6835420947862472,0.6446409140067336,0.6005383753770944,0.6098129364685627,0.6108256142762915,0.5350308369051776,0.5682843178137604,0.5367208350084972,0.4681191202799772,0.4811080638412657,0.4971256829565888,0.44894802916831283,0.315714316200143,0.345585137076382,0.44053197059950006,0.3674323441748306,0.344692264964108,0.3126866616288759,0.32782892161455746,0.2548662779449499,0.4083246622527268,0.8578128258963414,0.8945212833597914,0.6119962685569845,0.4647254947643857,0.24546315726841805,0.17299614154161602,0.12539641544228153,0.15593019567886957,0.33372953614769474,0.4841041321273255,0.6665240039113324,0.7228938515019323,0.7104056514469244,0.7204836129749891,0.6948043426941002,0.7398480342067013,0.7313959558849201,0.7896276096648833,0.7863352250127686,0.7890158384775253,0.8385940812711219,0.8673328796671802,0.852518000498427,0.8946929658464271,0.872046820800926,0.8528136258278809,0.8194549721000177,0.9119263817474658,0.95085498233061,0.9143520525975972,0.9671129519727799,0.9489263609620691,0.9354631829269335,1.0,0.929087948330085,0.9166610310671749,0.8388709329787356,0.8321072577344188,0.6662471449432187,0.5702879732561674,0.4709594149293128,0.29690169976085967,0.27974245236002965,0.2543346265496742,0.2056703227031032,0.23360587150748977,0.23167807344865055,0.26629349298916527,0.3078344160852348,0.33325885293748053,0.36363557671884394,0.3474202842092536,0.43045833925730137,0.4977340794899675,0.5079359763952285,0.5303536337652036
0.3081068935756138,0.44618516961981847,0.4601023292274624,0.4259216053119097,0.4279161130392198,0.4336453667242643,0.4952592384316852,0.49924241078675297,0.5562576987246767,0.5815704710949544,0.5371678173457376,0.5846350839720618,0.5575765880070971,0.5420405552999327,0.5401348422194446,0.5436062765902753,0.5329427126264844,0.47918008304208953,0.46972144522799936,0.5066780309374951,0.3974333560559494,0.3887599037589418,0.3794813998624267,0.3974084014362301,0.3500204819232204,0.3970208744339014,0.43817650251185214,0.4994338017949752,0.710689603880787,0.8494678486847372,0.901459759797884,0.8572501861851282,0.6141705899777112,0.3711597201019522,0.24805399087616542,0.24741446524951094,0.3009672867251991,0.43336213650898814,0.5668394650426078,0.5161260561909531,0.4111878626705535,0.350811481806783,0.253826749470644,0.29668612056676624,0.3451986991152481,0.40619336131392936,0.45263063779698554,0.47296512179199973,0.5019810988393731,0.583493950854849,0.7000252725382013,0.7329501407069068,0.6775041248939015,0.647948778389283,0.6507394832773521,0.5975993392210266,0.5928560919597435,0.5633398962360959,0.5084682389024946,0.5399793397183936,0.5272654376327838,0.5528904466699173,0.5390941289332705,0.578186587474887,0.5986303430806871,0.6049515411510142,0.6714865286088254,0.7013695263991409,0.7107796173176564,0.75436462252257,0.7530887123015816,0.7315378266962796,0.7103952890968506,0.7052842498993246,0.7032973155314897,0.7020741272333995,0.6986499063265441,0.7012926323799837,0.7346975111057774,0.7140641443494782,0.7087808451244983,0.7059389106373142
0.6289738275094046,0.9365311425330678,0.9776370911125742,0.9269153075473489,0.9504085686740305,0.9610497645565781,0.9772282768052039,0.9334045291639856,0.9966366533051623,0.9403974499422567,0.8567636051265005,0.9247447207078012,0.8732743970459068,0.8507920766274748,0.9313130105583554,0.9386326142751475,0.9650674525428757,0.8932655979156542,0.8891645734437368,0.9893907407127399,0.8926430316108043,0.9507234220041565,0.8952358361347386,0.9320006300128704,0.7961096543552633,0.7799764497247699,0.8025262062296391,0.8075383925679729,0.8231859658513573,0.8700140604549426,0.896240343850866,0.818961135945749,0.518007870970987,0.21638832570745792,0.11535086300013264,0.1373926204360414,0.27125927250592374,0.4191776833341181,0.5094339841793268,0.4386552663083725,0.37984124426270793,0.35142961697533703,0.30230221259900314,0.3812162869742366,0.41199562020706204,0.42946397240348233,0.45011106372737525,0.44415046344896497,0.5024356978321429,0.5669991765718194,0.6160383499549273,0.6193402166935369,0.4488093092148015,0.36420097871022283,0.2930355438466265,0.32961940568748643,0.25334620822120624,0.19024956439873153,0.13998810358691544,0.1675541791753825,0.1689350877679372,0.15159055962272783,0.12343543816297886,0.17432201883111353,0.17152972217842077,0.1867054483923123,0.20108611688471834,0.299213318009088,0.33387536997848294,0.372320346242936,0.3641581639944135,0.38079712887730977,0.3841420628004642,0.35316169740515774,0.3430556110959195,0.35942295187223805,0.3360661824390553,0.29680320601541677,0.3192755329428293,0.3382534508563722,0.3725184367576183,0.35565116318035483
0.31643036834524774,0.47267089266374146,0.5231819599417434,0.5138561496709962,0.553059458384472,0.5313701974858198,0.6630968986673383,0.6664772557799399,0.6453891705324045,0.656484370727676,0.6134596589289409,0.6576628647133931,0.6332590535658994,0.5623930245941482,0.5466788969117939,0.55631304735727,0.5174033496917753,0.4698030975640276,0.4440095915830291,0.48830415709470054,0.37665696313015884,0.4879692455523566,0.3879497957452905,0.44573646262718813,0.36178569504533975,0.27949273839654115,0.3066242276496926,0.686582149546563,0.8805776395020759,0.8040017467136258,0.5541405183586698,0.318427758732742,0.19807279004632727,0.0829499326921217,0.0459660045168071,0.26865162960259403,0.6073621776905028,0.6735562303664417,0.6958174327821208,0.6294482686131575,0.5243113112641007,0.5698293133295607,0.6340262240077208,0.7288425384633211,0.7135539738222267,0.675118089264926,0.699169227062999,0.756938841727165,0.7997500967913844,0.8257143850217981,0.7771027682384166,0.7638919392338612,0.7543511618470389,0.7118765081280929,0.6933342459913623,0.7453436964405875,0.7509635087054702,0.7320079648034807,0.7139671477860066,0.6896771152923109,0.6895535984027662,0.7359071619567067,0.7036962625271457,0.7336534987188075,0.6462828441682026,0.595051843973984,0.5623988536204911,0.49267607492919496,0.5016791824388018,0.4392472683165486,0.4343488068069601,0.40728294084216404,0.4208495414368611,0.40302788355490926,0.4322545053135659,0.47158473419216473,0.4777372561644996,0.4778058720862952,0.5044524485545863,0.5214965622383132,0.5619873749419725,0.5607635178177173
0.6723024071783618,0.5270219393765997,0.5445345055570616,0.5058138229083678,0.49918625823972257,0.4514547538363876,0.5019128448960196,0.479582015648394,0.5158980515227728,0.587046796816986,0.580146945632138,0.7202001761524146,0.7019193125467899,0.7257250120676144,0.7307399833826814,0.6778482529979867,0.6633070003198803,0.6075753657159653,0.587263259495616,0.6747340868615838,0.5800015078401137,0.5927835595823961,0.5086563561462869,0.4491139102741342,0.35359065563500236,0.3725999810786149,0.4618368523518859,0.5213591156948859,0.7156642114223469,0.7944017926585365,0.7932599374326796,0.8101067700300217,0.888037131083487,0.9689046242405368,0.8142853205786401,0.7270968212525597,0.5104178774945922,0.4006576348163261,0.34295261682494127,0.23585512383589857,0.2207238391753883,0.21769603891238887,0.12651075410399026,0.12066173649327183,0.09899955194798993,0.10064225228721135,0.13795978482623206,0.19893861963090181,0.20726380727973176,0.1744251618740431,0.21720556507768332,0.31576336671066585,0.3007479156460559,0.4564631826000948,0.4245258704625366,0.4565811096459386,0.4397659151869815,0.40655152480083456,0.34874463468098155,0.390104854376481,0.40310704627825733,0.42031692637601503,0.41939743145899067,0.49763060354840416,0.5155149700158491,0.5415525214473449,0.6225679478606858,0.7024954666859355,0.748421536940238,0.8076029113187938,0.7973209604095322,0.8172462270361095,0.8003111498314246,0.7761280292971537,0.7674214568727522,0.7244555085769929,0.7337563376073126,0.7077035116532382,0.680833625713795,0.6772439906911543,0.6650917169510886,0.6353347610033736
0.366294165104509,0.5287174962250063,0.539500340531456,0.5279039995629764,0.5855312372021977,0.5495838252271755,0.6117031544134532,0.6214144767953304,0.5975665720970761,0.5977812577365654,0.5567582368523452,0.5580814275277591,0.5635579797906274,0.5444992765892293,0.5308107969252589,0.5307502777149289,0.5347318931098066,0.4674625493368564,0.4126727716659056,0.4538891921938264,0.38387572427948863,0.3987268566250556,0.3501327546253261,0.3345441920113678,0.29443897996295293,0.30830866002054536,0.30410141906957705,0.45202891387282085,0.8189483987349404,0.8816618482335308,0.6477189384665856,0.37791296232258054,0.2483951297013055,0.20942473969219433,0.2083387165463919,0.30375837143871454,0.5609606149916835,0.6300285356298088,0.6195895972129408,0.5549595755773786,0.4458819958816518,0.4495455969905776,0.43177791465255666,0.5184522680950546,0.5638324193678353,0.547362451881072,0.5901336959121212,0.684800064789273,0.774207337791585,0.790127166627149,0.7712104078688,0.754973077024168,0.700088848413521,0.6789970702306967,0.6688809873891122,0.6444806782400401,0.6217787372540459,0.5973663327606079,0.5657834926253256,0.6198766961882538,0.5959716594144516,0.6214478401875841,0.6147255875355664,0.6645420192778173,0.6810416759797534,0.6659270579542367,0.7068353246765173,0.7349750701472515,0.7347059447911803,0.7261710948984101,0.6851286917382131,0.6610491064537894,0.6050782015177854,0.582875011355979,0.5845909410314261,0.5597770055293395,0.5453806136877672,0.5322957690690849,0.5550798383399608,0.5417005259492321,0.5641077954497761,0.546758089086009
0.3534167975090773,0.4955351071826135,0.5027872055783542,0.49353687525768847,0.48641063948439034,0.4337154274202985,0.493584263323239,0.5050997948211104,0.5582307997575171,0.6229698328614901,0.6167412518146729,0.6145414287625229,0.5977043491031534,0.6094331780575978,0.5949266833051365,0.6028389639240201,0.5907169004713705,0.47458761469091293,0.49897043127150265,0.5939765939277976,0.5665322285072116,0.536488971869158,0.49705179200631655,0.4902433079814468,0.387356147948267,0.4001023571482126,0.4957659137345498,0.5479932556533094,0.7329660467424467,0.7951828768332375,0.8098713265703423,0.8921230464989258,0.8150730517133122,0.5620127347716966,0.23265734177910058,0.06213126082250331,0.1258249965323035,0.28594709516879147,0.3745728592466424,0.48393524520971765,0.41504565248516223,0.39948503864678775,0.3980440846506136,0.4474262488947773,0.4522292172212385,0.4991161591513451,0.5360524878246495,0.5522354921610304,0.565987080187051,0.568954791791473,0.6374832516271172,0.7210270067272915,0.7275381984386601,0.6892036491315545,0.6435954381020452,0.5792292460548214,0.5187031293613287,0.4546198740648971,0.3895170203156955,0.4478309361945616,0.4665773058490096,0.45658061747773304,0.48944482219308605,0.5821184105187966,0.6081464403544808,0.5840362885399846,0.6655811056433283,0.6957553337845443,0.7324083394462073,0.7064878996245337,0.6971482296094663,0.6734662242559291,0.6277795354285725,0.5872882627965983,0.5966878018777223,0.5930401300881742,0.5909337707460863,0.5853451006882839,0.6222437734784959,0.6274641081076504,0.6461605630093129,0.6425217983540746
0.49703185441406716,0.724440045973064,0.7676199837432658,0.73699855734379,0.7512852616022261,0.7725734680366865,0.7918831523315419,0.7676595562266451,0.809081352369821,0.7211300318226193,0.6919035163396601,0.7446017805510621,0.7063219415770138,0.7452781531350116,0.7297522698850167,0.7603636238318373,0.7920932823568496,0.7235887888814199,0.7530591465333003,0.8352901859998975,0.7806534163059216,0.8262778309242731,0.7518844297955429,0.7746982385890163,0.7071268368083709,0.719096902361221,0.7986845100492018,0.7260021452657998,0.7890889051388286,0.869981399243254,0.8881805241196633,0.788167980424821,0.47133716400347436,0.14624109467167645,0.07590620007888504,0.09744961904743366,0.23163616813227006,0.39070266040418833,0.5072896503369987,0.4545387652015602,0.39484199162413103,0.3659726231206558,0.33463626935442004,0.42456067399719766,0.46050468525956717,0.4801981178565561,0.5064112358917928,0.5153426571218672,0.5793009525291866,0.6266997851793327,0.7080525127212327,0.7009178803574762,0.6443598502362974,0.5549508967625737,0.44936282512519427,0.3982224348431365,0.3661611605815843,0.2956383817844874,0.2437957513160101,0.22296049728765088,0.21845267954396286,0.17972086668453469,0.16782237572282255,0.19181053264809522,0.2063924909540994,0.23712268186191743,0.2527222555839749,0.36307875108511467,0.446738388860851,0.48248872163000556,0.5179899825431468,0.563809852796411,0.5710728062250487,0.5633079148157549,0.571542451503396,0.586682736185804,0.5812724284159474,0.5316743516409839,0.5572980121478539,0.5427323767309208,0.5420381117540669,0.5057539019353186
0.9816865507045924,0.4386798485238761,0.4398823080055781,0.39223471354621486,0.40184553418294783,0.3562390069653461,0.4121012921358583,0.38866372020847945,0.4036961508193624,0.46007161639524885,0.4655949329788498,0.5746226614178374,0.6046125715553823,0.6038965510871902,0.5110143565391594,0.5850518540035468,0.5277018989694606,0.43031426692391184,0.4221636151042745,0.4656601085761538,0.46839231491886457,0.45039172056133714,0.3498896365682365,0.3745976434682822,0.2660019726345243,0.24708860281027617,0.2703534426696608,0.43548101297014824,0.6813515340940828,0.7756881394516674,0.7750817795840401,0.802281215234175,0.8179134734858502,0.8546130821592574,0.8254123146741662,0.8218541340199956,0.5359349655007182,0.3226595921698092,0.329707845243133,0.27918552827763976,0.21649058660830067,0.2683521620026391,0.21649452453001594,0.22585698089787343,0.2425396421624465,0.25400923216832155,0.2644130708082684,0.3168327729338551,0.33599217991591523,0.3471859372198869,0.338584557983619,0.3866024728063911,0.4091533714234988,0.5434312882724174,0.5936942783337691,0.5944657434846248,0.5730619939556281,0.4860780680692752,0.4210005348490245,0.43702108516867133,0.47159815567541086,0.4980341331384027,0.48896064653612226,0.5210344475591928,0.5634920625657339,0.5939597488461432,0.6543902868299096,0.7572790500147362,0.8007304078612019,0.8180286313066879,0.842379504200153,0.841294536430922,0.8181369757388612,0.7614659934899772,0.7433912371046452,0.722303979358256,0.7045084514646602,0.6979650110044116,0.7073998662193122,0.7118102746935318,0.7066209951591477,0.6807323241653408
0.32903191434414614,0.4710592483132917,0.4757070122681476,0.4691218099473897,0.5001384239564147,0.525608544908395,0.5936620660665146,0.6588525720205782,0.6117986051310654,0.6459232764902806,0.5949395512531754,0.6277559287165803,0.5652036250884775,0.5532789972986931,0.4667881534703829,0.4714055734309443,0.45834886700821953,0.3871594435277902,0.3705038128868344,0.39951368123836883,0.2657897903690503,0.23060559795424468,0.21913617290485132,0.25811830407739805,0.21088903066799536,0.26807042637689427,0.13917481701120604,0.2953666144736243,0.7731809417599947,0.8877053439100895,0.7366552036664835,0.49266278713792766,0.2837160016066843,0.20185497359414106,0.15554822432055704,0.24376086386996043,0.5906168143733442,0.6572608339214214,0.6548469624545696,0.6111814641108364,0.4834294706910618,0.450215300667002,0.47440922680863085,0.5356776980046469,0.6132843390103946,0.6122735226269065,0.6062098582399532,0.6409003393918212,0.7452578369532262,0.822128223885856,0.7455734722083434,0.7813914057637932,0.7797215465129781,0.7703576729172661,0.8084773766805116,0.7792331578894085,0.845505387611946,0.7659845040447446,0.752333691939201,0.8136990648444968,0.8078123027666552,0.8467470668333147,0.7983775603828951,0.8606788843518762,0.8109814392275728,0.8184734565847631,0.7017692523948411,0.6759849206025992,0.587503832466088,0.5157877723072638,0.533315942545867,0.41157793532490894,0.4883813813281885,0.4490986820006645,0.45963292260938704,0.46918152325672297,0.5067646200559425,0.5005866543292595,0.5187563383995206,0.6026940814526585,0.5982094675995424,0.5725787230138247
0.5305260559817908,0.7654295664643672,0.8013995717357885,0.7691873355678953,0.7960160799070507,0.7831146219018025,0.8231252349103149,0.7763113634990818,0.841715095503218,0.7999253661586785,0.7138110569375579,0.769286225289154,0.745774817395808,0.7457495766108168,0.7595962560989287,0.7612545643149439,0.8095763551100753,0.7582277847133103,0.7542553937177958,0.8576108783435332,0.7618683611287678,0.7808026918940842,0.755328963952092,0.7788947604504438,0.6873123210372899,0.6732048061197163,0.7473163027218604,0.7296276353472955,0.7994784400978239,0.8533422734701991,0.8948017651557411,0.8535272544901211,0.6344732772234492,0.28237632705434745,0.08199959029939441,0.0587206465560679,0.23066567163836926,0.38181976015951147,0.48431871717950525,0.42927254355844346,0.350299919789705,0.3259434888763544,0.2746359777455638,0.33544612619765946,0.4139521752727724,0.4440171597393662,0.46915739816464747,0.4737112538780939,0.5395602619710175,0.6266323354356239,0.6793571980437955,0.6981158149039286,0.5996214161363645,0.5506204681308151,0.44494023056709003,0.3941009862049513,0.3402631328893123,0.3314755084192169,0.218168955991839,0.21834551121197354,0.2334407648475869,0.2155635755433063,0.20189114054491974,0.22663654595335214,0.2201840098612311,0.230666844964862,0.2662110174263145,0.3554610487672526,0.4740132164344038,0.5085094753224867,0.5275312744357613,0.5334090638039737,0.555801430238216,0.5383082328241997,0.5381645341170984,0.5270814708563647,0.5327295401784784,0.5018476650429766,0.4978639179106877,0.4854596763016772,0.49106130229358325,0.4535177215894126
0.9846914527484841,0.5064005666797717,0.492115286516437,0.505697004963168,0.5103648599620625,0.4585704390460676,0.4952070630131773,0.48745237186286816,0.5172412905485234,0.617151960345511,0.5785370719413974,0.6681419476521526,0.6530354440472804,0.5850396410484617,0.5983898091402697,0.5907997421317687,0.5603593656032715,0.5406142086993888,0.5330463469695944,0.6545298820770955,0.6315054384750078,0.5841477765124378,0.5661310590870516,0.5147372618314713,0.5229615488738669,0.5210023345531632,0.5490399513362295,0.6367623434282228,0.7569936970166945,0.817595712686629,0.8316897694191094,0.8589310213112126,0.8635751622925868,0.9089890372579863,0.8532539592648327,0.845345185180887,0.5511257690548492,0.33581883351567376,0.30137265202639685,0.29747136681211384,0.14289896438279281,0.08802935651389276,0.02807796271220775,0.09356621989777092,0.10953756241782897,0.16146219643711612,0.19529026098032776,0.22733014919567113,0.24237306383493012,0.2239612650438036,0.21076610127377576,0.28390579274988553,0.3519619129611245,0.45592381865807774,0.4853077701897552,0.4540254432405087,0.44102224622351494,0.3642425996703268,0.2738425781436455,0.2734654124950572,0.26554516042390097,0.22855652419436878,0.19470840209811735,0.23907084894402242,0.27202579504190927,0.280319847234465,0.3194517829223553,0.3666956375241973,0.5170066792436006,0.6121903819152125,0.6524831314614784,0.6835348265924122,0.7521260824790046,0.791744993172461,0.808128903770315,0.8252885621058124,0.8671408427696031,0.8558176720886759,0.8792512242292609,0.8377414263356341,0.8260416580827223,0.7917971822804941
0.3588139394431195,0.5236752226914428,0.533921547863102,0.5125386492702584,0.47412744734811696,0.48855935825538005,0.5224873376883952,0.5313705542138265,0.5538375130992724,0.618119606172906,0.6323288180219,0.6220447489954456,0.5940161542857417,0.5917422409013815,0.5778785627326618,0.5707429160132462,0.5414489783011553,0.5519142047041826,0.5613310595770167,0.6304068721151064,0.5645583896891436,0.5359977568734371,0.4965796101936524,0.4903456659119159,0.432191128701358,0.4491726765383359,0.522945531527164,0.5489459439335223,0.7255096710954114,0.8013253918625466,0.8585571337658464,0.8536266962868355,0.6688947989587095,0.31792684947965055,0.08793550721442489,0.06044404172251938,0.11375787109798186,0.346269745859735,0.5347891116647615,0.5550057890257325,0.4611343282012056,0.4539700866468077,0.451247188183167,0.4820235412384141,0.5426734920270028,0.5643798996793261,0.5982813926123142,0.5930031170213224,0.6209825502602946,0.6777673429708357,0.7657264192527967,0.8064112187752952,0.762268860679591,0.7265207832179971,0.7064014980247948,0.6588511990215302,0.6564401349766396,0.5986571012366094,0.5416651061803825,0.5577493323040552,0.5501123486814717,0.5999069800383713,0.5701626951279868,0.6061990641377226,0.574066437721333,0.5693484329337242,0.628803383310709,0.6238111843746461,0.5912425831669805,0.605636945143411,0.536377989032692,0.5199994588559506,0.523413693774726,0.49061875087760076,0.5170881093464366,0.5117844010231365,0.5301885854313458,0.5317116654756768,0.5793504291416074,0.5956592694003416,0.601282310743916,0.5964625240172178
0.3293365548050715,0.5117594036154833,0.4914125874226103,0.5107017156264629,0.5845859944435815,0.5716443097297548,0.6749690375292322,0.62998789371107,0.6132655015571075,0.6406289837231072,0.5912718012705153,0.5941989162961924,0.5681149520642383,0.5022092400772497,0.5059991472636144,0.5234777047893443,0.5159222276499702,0.3833860773307027,0.3465294181308869,0.4254254518464713,0.33942273242712795,0.3011430652142813,0.37605748152931573,0.3292961158211982,0.274894176730028,0.2866037875514501,0.29654931024639875,0.7179330395153962,0.8163185799352276,0.6565821404351616,0.4214048971192576,0.2430499017811728,0.18297108613690727,0.11205735497502467,0.15044020897514343,0.39666866481256025,0.6527842450795964,0.677484289171957,0.6758669227094667,0.6164470117550764,0.5649281410174983,0.6181731948085942,0.6268823270807842,0.732869934014968,0.7434540683944122,0.7162760753925694,0.7417160151582035,0.7991453996231599,0.8459292287788451,0.8621551952363815,0.8256115265561232,0.8377333736647099,0.823777095410375,0.829469952110122,0.8044891735941311,0.8300514275198478,0.8299204912095195,0.8141632949311297,0.7179583209412366,0.7738044504437076,0.7792516367485617,0.7873281087871652,0.7518265666577613,0.7304506204769388,0.7092961897677706,0.5825600601879708,0.5244128578229243,0.473112331125471,0.4435863951301145,0.3894218031855584,0.39996710245672207,0.3468997996595664,0.38303089511021393,0.38445075756176894,0.4028195341110862,0.4391140276892307,0.48495583078779303,0.4798924262208605,0.5470383915990693,0.5827197512116291,0.6173047336002351,0.6067280747462972
0.2636685231848579,0.38439351556863055,0.3933590981612477,0.3547913970159586,0.3622552643584268,0.399724109967541,0.46749772737927897,0.4957045531907049,0.539978370217672,0.5230107752278578,0.4969476774944063,0.5381361287262021,0.46592324257743717,0.46238071976034656,0.42380226346982325,0.4091687778554658,0.3749326351880421,0.3178363224023521,0.3132409089209527,0.3490314508543975,0.2857036045488736,0.2579508800291698,0.2570695272532813,0.19974205494946207,0.17525343203508326,0.16524907058676547,0.21205432754468834,0.4023995097741819,0.7558196700689531,0.8436536292177076,0.6651436369814643,0.424836923162055,0.280320183353159,0.22670290130122805,0.19593399358394625,0.2936554568762928,0.617169110103091,0.6976419887948831,0.6800713321145413,0.5927501059691251,0.5046931286936763,0.47735250420826425,0.4920456391072008,0.5732803007566776,0.634280333672035,0.633766203312439,0.656812069357909,0.7087978360238176,0.7903209515335325,0.8063864366043991,0.8193234755737231,0.7996579554754075,0.782292262481341,0.7668455940172775,0.819413804248001,0.7696916887897731,0.7535933912894868,0.738793074498802,0.7755632743530714,0.7878328612315322,0.7876285138746485,0.842128283457192,0.7669920356017021,0.8203743508353747,0.808744781121359,0.7425337817540418,0.7766082534901899,0.7196450042732543,0.6627638975972954,0.623460807030185,0.5847604347796588,0.5514863916438105,0.5305133396798258,0.5352083767773902,0.5548341457505424,0.5645312291730212,0.5992336726549897,0.6092806540050923,0.6572245857335872,0.7017585953904575,0.6985526575813941,0.7145392066684222
0.3356214803399771,0.4812237880479073,0.47919839188595237,0.44247750485072224,0.44872305131575807,0.3893236278122855,0.41742522402398496,0.428555804566096,0.4559102809452393,0.600649348721775,0.7319166325848333,0.7469825098596069,0.7349162979322187,0.7527344543696572,0.6977108207543294,0.6847641989314894,0.6546506340342357,0.49485584156139695,0.4573947989613156,0.4898400218555715,0.4062726554224757,0.3746270225255499,0.27785581356310324,0.23408741351933277,0.20561994156637753,0.24487294011550098,0.24879740118246402,0.3922043874761714,0.6786131391658166,0.7442755743463029,0.778452826827809,0.8909633715215113,0.8590081175698977,0.614961843122777,0.3919674246933461,0.30068413112364367,0.33238049056729224,0.35854680586584675,0.43995208696241916,0.5274551458917416,0.4508641900635084,0.3403838977334174,0.246713928737607,0.2495943150257921,0.2950087993547187,0.3275070288749276,0.3439130451679695,0.3896864965006922,0.42369396108731444,0.40534766269722206,0.47992430061264735,0.6013483094010568,0.6499764303646474,0.6133825484955918,0.6030149918143786,0.6023894036067441,0.614494581440829,0.5954663224847604,0.6270085294344432,0.6316225197494731,0.6226491355688556,0.6539874166044776,0.7051291437766407,0.7632018307984274,0.7422991229961206,0.738948239421148,0.8149126611869608,0.8510859246607978,0.8198902721060786,0.8112353194033733,0.7466254508921362,0.7359227953417351,0.6634565611964109,0.6619522468671244,0.61728725610873,0.6220912690913557,0.6127274136156514,0.5853165801798158,0.6102307421281179,0.6241833818635768,0.6542899275724999,0.6186992562597012
0.2318475437933138,0.33848007206262704,0.3387945597738962,0.36229770714158693,0.3887750246051418,0.3527265992907644,0.4548433957721309,0.42897493816829474,0.34817452907897145,0.36627459712469074,0.3617479535564443,0.349473483357135,0.37843870123086093,0.3276605283704702,0.3526195881559917,0.3742278978596649,0.40475421797720273,0.3106566397296404,0.3014931360933787,0.37611673999077805,0.3144793325776874,0.2779322834170895,0.3286793802533185,0.3492148694534007,0.24779965866849546,0.31638574001496794,0.34791951619110684,0.5476260620191892,0.7184172823004905,0.6598172008509775,0.4050300184983851,0.16804492760791379,0.10472961299969619,0.11160393413601577,0.17197531685939982,0.40930698670003696,0.7128624029474847,0.7424082193574573,0.8008319127052725,0.7983464785974864,0.7502387098568327,0.7954442338996147,0.8157495698151018,0.8431689416872626,0.8311899803718323,0.7939986799284852,0.7895363338201988,0.8266469680682107,0.8932292814705454,0.8530513316766006,0.8299370832026037,0.8328680820960317,0.7610141669470202,0.7610658300226439,0.7813275581345762,0.7460094946188194,0.7164963206117396,0.6686075673920505,0.6304781941930329,0.7492977396488032,0.6934142004382021,0.6896277768454199,0.7203963821261856,0.7239069427075098,0.7071265275261381,0.662658618886935,0.6550656584066268,0.6352303855222527,0.5936583685473011,0.5711404181674883,0.5143587519298191,0.5181044587268939,0.5571467350395329,0.5397210602262037,0.5577031220049633,0.5967412078797886,0.6184444700858557,0.645079112937007,0.6847015162500971,0.7083863059795645,0.7208985110607589,0.7376935554966495
0.4040689615812709,0.615770169326085,0.6527339192095116,0.6645491121164779,0.6559447977764234,0.7301079597720839,0.7906173820521765,0.7076140868220415,0.7129228006345256,0.7109725665551601,0.5995402092659722,0.6302745851130449,0.6007631575754876,0.5593337167079969,0.5726044666584007,0.5598951405575223,0.5640906440905129,0.47862442806106764,0.3741246914672766,0.5049677678764497,0.4355400846848425,0.3854325969869422,0.3518484217352601,0.3527219794207293,0.37930068716937115,0.21108467920505714,0.45894879901032576,0.9621635543894779,0.7424971750329062,0.5550754615498572,0.35690129002367554,0.2442061517408065,0.15648470938602832,0.1165906319063097,0.2768025362002553,0.5002489484574013,0.6659206820299953,0.6849004069496671,0.6765631953338237,0.6007698907271408,0.6012584761275784,0.6186210214226118,0.6277724507473561,0.687245935924039,0.718247713037596,0.71630059164409,0.7509600301389628,0.8192764260835682,0.8347921166978709,0.812175576170027,0.7919756784303041,0.7729501050679879,0.7738427545375218,0.7837675340766044,0.8128700883678674,0.770235545189667,0.8150062022344975,0.7830448858867263,0.8225717303528659,0.8899805834903083,0.8401557945877164,0.9446647295995937,0.8658775178362019,0.8146858087350501,0.7794360745652299,0.6774191089633628,0.5990774876201512,0.44302763401644696,0.3902157781987627,0.308730088175189,0.2857566619261367,0.2550842226977887,0.23175285208257584,0.24063607515700794,0.2906967385697956,0.30909279167962256,0.3460528090227216,0.31285346523730395,0.3815386641262327,0.37764531724686845,0.44502825199589335,0.4450276504783626
0.37757112729464193,0.533468791565178,0.5551966702910884,0.5326216847417374,0.5270830150048128,0.4771187874842849,0.531989893989395,0.5111225911265415,0.5516010638641514,0.6360133565814825,0.6183110987575171,0.6878054979843925,0.6283298864452472,0.6568159290485845,0.6041428212037525,0.5853018495026032,0.6187669909360465,0.5373005882835091,0.5773665905194242,0.6872997263796365,0.6450837776117372,0.6741742956072775,0.5437754839942608,0.49592727720048957,0.5007971008845683,0.5239731861337966,0.5802775003343841,0.6039928572699983,0.7586556257341959,0.8138330462581135,0.8223859648275443,0.8966017458754364,0.848898372361482,0.6464748242985934,0.3142100465718801,0.07059401237139862,0.06326156061246979,0.22317494917410663,0.30776005958714037,0.42070013880705104,0.4070324893276226,0.38597325546047034,0.3617321228661128,0.41302724952388076,0.4376114866407354,0.48658350255801047,0.5179542638679656,0.5281236143205895,0.5433262209284716,0.5483700221002967,0.6198751169054864,0.6933727202785893,0.6858540774158248,0.662852465837118,0.6136270671871349,0.5718236255348179,0.5313457025182801,0.5202151188710691,0.4380248282547154,0.49186380299649113,0.4871820685925269,0.4954913032731444,0.48635724579321704,0.5182289816817667,0.5422448026557442,0.5558535536638711,0.5375102811697907,0.6279704199713614,0.674201318013202,0.6702539688378206,0.612352359720265,0.5894698765809775,0.5774978238888904,0.5544038424939871,0.558758068610316,0.5519958967951513,0.5712746342733808,0.5478966065338396,0.5773858245675848,0.5852281609656623,0.6171457071234376,0.5965479088922966
0.34254590318768885,0.5200065666391009,0.5533094627828052,0.5657032131598317,0.5965342476453206,0.5857439756711317,0.6332526844338989,0.4918026263467441,0.48776114129622833,0.5089138731762649,0.4488295596324218,0.4992752667604293,0.5020015278476472,0.5323053587946573,0.5454926049611762,0.5337855202812961,0.5482214014561019,0.494833034329431,0.4512277577490684,0.5577963086573929,0.5294396112529915,0.614653305865278,0.45198965165973704,0.4919731033556425,0.43363003039591946,0.5000730429194957,0.5246865834866034,0.6596949208613396,0.7842087104226904,0.7031090188545712,0.4166917748993815,0.17396511674275272,0.11821656787976831,0.1448417774176729,0.20819397711108512,0.3016840956275785,0.5111962464047726,0.6042177719048105,0.6322428677974797,0.6485259819708888,0.6161777917172978,0.6715094819232538,0.6429261161523991,0.7027065172579487,0.7041756114954612,0.6735919574434654,0.7085485349057361,0.782232224018135,0.8486709965628938,0.8481575215759053,0.7879691402682056,0.7457645149520856,0.7251580853136421,0.6879988528938772,0.5943362327100785,0.6024628569831636,0.563310965331434,0.5762357829072222,0.4999497584612013,0.49859766614932444,0.4979117053029999,0.5320084483064714,0.4880009758897883,0.5661733354195311,0.5551648500944185,0.5331551696463237,0.6146385852747849,0.6069197824698529,0.621428999841769,0.5972576222315047,0.593611936027901,0.5774009625849065,0.5706581223461991,0.5506206663142723,0.5589228038135075,0.5845237480439543,0.5980812341920487,0.5798344372550157,0.6044748915876894,0.6285459854112964,0.6460161583909151,0.650657797082608
0.30175175226482476,0.44523895599570407,0.4374409730094616,0.4377808135496441,0.43804839158937514,0.46551064658339825,0.5292649859868299,0.6125527092711511,0.6624599989340227,0.6457791574476546,0.6366428786776207,0.6556729543944322,0.6107325269266756,0.599430052454797,0.5635909048111329,0.5323262461164249,0.5045743780311756,0.41152913457164114,0.49031312193039606,0.48115934646439007,0.3897746730398126,0.34338444403425183,0.351203478809565,0.39659965498747735,0.3295884675082834,0.40446795581391415,0.32722585247436514,0.5024262468374014,0.7905444556100455,0.907267761831888,0.815709891091991,0.6004607782427933,0.3626065283663965,0.24360249143939472,0.19721564761634414,0.19137746629086472,0.4443015715256833,0.6519282139661068,0.6497382727190492,0.5927895667674914,0.49815671802831496,0.4120934652218775,0.43307753376560065,0.5072125824343895,0.5842817306603236,0.5787340168978676,0.588515051329414,0.6068295201640723,0.7159383995938211,0.7669425814647963,0.8262390674421698,0.8283438995303235,0.7723384337085057,0.8291717148199915,0.8550664596803255,0.8525614473368612,0.800536921729383,0.8286550313914052,0.8536607784317543,0.8990431399934693,0.8840287848580067,0.9216244644157193,0.9101245938504094,0.9379655176642627,0.8669123648571443,0.7999292486457259,0.7154249539103306,0.6595768194616614,0.6152336235813958,0.5381164039243348,0.4597949870832535,0.4037889441902342,0.3722376751829672,0.35558030139978697,0.35818732418263144,0.38779361182522865,0.4116539754908273,0.3744433280044335,0.408159705647017,0.43066888805516745,0.4560096239685597,0.48665889122269146
0.336851996164475,0.4584599701446224,0.4547628760753019,0.42651362070024257,0.4236404831354737,0.37918004361102536,0.43634558614940977,0.4367262118617051,0.46836405168923073,0.568548695514047,0.5963201941199092,0.7088635280920498,0.6737424527398783,0.6942828986194717,0.6724134893268142,0.6149603321329026,0.6052040086991953,0.5182663830130864,0.48564714871319214,0.5534382375319529,0.46354005798415693,0.47458432796363337,0.3657329267832576,0.3038691565970951,0.2245982646101845,0.24834603616577733,0.2545309526896522,0.4196102247190831,0.6895291891524206,0.7651522113126531,0.7718678480728257,0.8516009837591734,0.8954345714119337,0.7956295304243388,0.5402340086987502,0.3925978146663851,0.38277764212683874,0.3839775221346552,0.38090183723406845,0.4318519714456599,0.38859439846067667,0.294781782811268,0.21745542581371446,0.18118837921714137,0.14415247639221584,0.24323454421227791,0.30626690138835816,0.36298939399913277,0.4057600395382684,0.3819131446730052,0.4466344330275591,0.5620031656269755,0.6674096777803469,0.6565408067099784,0.6438134775895521,0.67581604588025,0.5852571586537617,0.5999219139170573,0.516471391696744,0.6212810194665339,0.6090705017848989,0.6221293233289301,0.6628331620234043,0.7015399966100275,0.6925083566836489,0.6886078438054006,0.7819545524110514,0.7822493980136878,0.8066809403421658,0.823513331252686,0.757631842727733,0.7579509759828942,0.6944962197489706,0.6612910190886313,0.6717367576467673,0.6948019903595412,0.6443491573480689,0.6498686192037474,0.6781809048315637,0.6923246771342947,0.6399601370694598,0.6707540085353021
0.32321314477569396,0.47652954959351806,0.5540432617717492,0.5292134074518896,0.6035219452569993,0.6274547536573158,0.6105438079428889,0.583043311496448,0.5496367618544882,0.5450828945885056,0.5264878809588126,0.5334649438778191,0.464939336583737,0.4511211642466634,0.4946366929700181,0.425117949350458,0.39641482783626836,0.30071937962389045,0.2820787462228512,0.36408554735743265,0.31672920844757296,0.32219529898352184,0.27459227659658225,0.1922192260843723,0.18493038687286606,0.1878144155681904,0.6979316257624855,0.9807872124783509,0.6774422999766117,0.5016011311649431,0.2639771482257901,0.15425186496599885,0.10487196793677067,0.11802594338979289,0.3151494195076108,0.484180065600174,0.6863015096230011,0.7206035310684757,0.7362316409723209,0.7198476821623876,0.6857184485881836,0.6965532788153372,0.7079630850585805,0.7439716677993151,0.7941877167557836,0.7473002037838081,0.7763462720948522,0.7974110283041485,0.8219416696581279,0.7702593709738041,0.7445485238781394,0.7713299152640153,0.6682499019078139,0.6964223822965521,0.7638028364750602,0.7228285001590451,0.702768952467683,0.6778172131296842,0.6749116642372037,0.73873075065538,0.7935574383329985,0.8331895317841297,0.7446106475012755,0.7918522526521261,0.7991294739435694,0.6999259307748664,0.6724407975909936,0.6053933700026919,0.5597356673660137,0.5426451241071217,0.47504671125268527,0.4382197025051283,0.45441955852025623,0.4228096501570633,0.4559532351814086,0.4783256932513884,0.5016457793103553,0.5231574297162636,0.5614158584206607,0.5828493482849157,0.6231210361288564,0.6234384344280676
0.4162441267536941,0.5918741103263154,0.5985534624956825,0.5951995674423834,0.5922027169573667,0.5792981295798887,0.6050304459660585,0.6679624907389213,0.6636414065946845,0.7152281104794581,0.5912427041859912,0.6811423406464205,0.6310138616639341,0.6192142768460457,0.618933485800467,0.5994121826633332,0.6501626191381045,0.567212407140252,0.5929080231505968,0.6295299628170492,0.5634508727037957,0.4879560023811401,0.5391769250821831,0.5378964238147164,0.40821926534102837,0.47062656412296616,0.4673145603374896,0.5123783996814644,0.7325529745391763,0.8510743060898441,0.7880481120400809,0.6150040399662269,0.30103413270609647,0.09121410132821373,0.09132171663803723,0.12374019001864256,0.24047816382888731,0.5002729163980025,0.6178311190434638,0.5902715457911019,0.5600032028292306,0.5600151050096553,0.48783683161536207,0.5699568375485785,0.6485961527752564,0.6247271653815113,0.6131169773945456,0.5845187724340868,0.6995397198552943,0.7491298662550643,0.794554320134971,0.738817108641235,0.6919732794872423,0.7128200891917505,0.7146681547633171,0.6029079018829324,0.5620348659651985,0.5875465243966782,0.5103245444297984,0.566432591525895,0.6142261180640353,0.6478323944681194,0.6167036375538015,0.5971000509325297,0.6409046169137947,0.5972967871352697,0.6592738915716247,0.5591952393208999,0.5190450382339049,0.5374359238534971,0.4724951269378792,0.4379554366204748,0.42550035823376625,0.42913297110735305,0.42895550019024864,0.43908850507636654,0.4668976340775146,0.4839222905345415,0.5126384037844623,0.5118058560470335,0.5760163694587691,0.5701310350090456
0.3423275736223278,0.5176515674449853,0.5484674506666519,0.5567886743911377,0.5733550405859942,0.5923528031808158,0.6270189811507566,0.5245935842214452,0.48174437597731407,0.5157232448992017,0.47944990842978724,0.48738816948252384,0.5015829754643021,0.4887549148696543,0.5287264010027753,0.5332895235905868,0.5476875473722855,0.4804916928810396,0.4729953524383643,0.5256899852950524,0.4733876981332791,0.5233730595287835,0.48444408394045635,0.4770234612730821,0.3772908836298102,0.43671316788121617,0.508693278342316,0.574067852273503,0.7917390374700417,0.7326830029299796,0.48964886961322024,0.20906056649197713,0.10202767711376404,0.10438872117825282,0.17379066005791033,0.2639982450527757,0.5076821228493118,0.6103021964146775,0.6769556263023245,0.6791208463315691,0.6403369605189821,0.6901936207952584,0.6860215671195654,0.7269791730251451,0.7288814297414602,0.7052236183588737,0.7297000575555989,0.7767178239072211,0.8427573803618005,0.8715432451503314,0.8521447262315328,0.8048610148984046,0.7223954075851963,0.7237996898770009,0.6805337601029151,0.6553483706570076,0.61216703430181,0.5947212587835692,0.5564937647863724,0.5526882284778938,0.5630972106113848,0.6124884805780265,0.5636993670080037,0.6179016378330409,0.5855940449780356,0.5802098642990818,0.6016141489439026,0.5983916550144694,0.5703351735747073,0.5717796219265884,0.5472126170145261,0.5183950335122894,0.489508650386133,0.4908241474029461,0.49812174736230197,0.5221893425426171,0.5410285814163862,0.5435058653052162,0.5912565852109972,0.5708258857759291,0.5958108204006656,0.6422532039873655
0.4111281285374025,0.6144228136057374,0.6104233707250658,0.5983584342754062,0.5835881206319006,0.5475385298450616,0.5875355335374454,0.5756163872717444,0.5818389406608683,0.6834611829813468,0.6781098105469839,0.7672699679268298,0.6876788801886191,0.6493527010074888,0.6629015635178409,0.6574745645191657,0.6295023495014666,0.5936721692599738,0.5861156047660666,0.739821341566264,0.6561486520271217,0.6835616365596798,0.61391998810109,0.5916384090182281,0.4488603478437059,0.5433008902024548,0.6313097144590742,0.6348373697550362,0.7552218059554489,0.8160371483329993,0.8245147926498284,0.857726644272088,0.868544565816993,0.886042716484499,0.742671059774095,0.5338857542594257,0.18014161958050634,0.23590832792841976,0.3149524880751403,0.28788311027818114,0.20727370961294111,0.1868809360248438,0.11624191122347005,0.15300918998367885,0.2018049808720609,0.2098117142360606,0.2914824727940314,0.3021786310219907,0.33631647228917394,0.31708092466404936,0.34572294896106137,0.4325121606673743,0.45919701646876,0.5371158303542334,0.5803445101246505,0.49679201715781757,0.4618886340093651,0.40284830612967404,0.2940607280066287,0.31641560545890435,0.30695563639702683,0.31396386670739296,0.29858572507617565,0.350052458076639,0.36359729509449046,0.4094653923651308,0.48253063626974946,0.5423264688043832,0.6360278841748843,0.7090466603456619,0.741838030297259,0.7486085448634275,0.7506582062327649,0.7197371141131655,0.716711287204126,0.7194302441795204,0.700485929200301,0.708473028384857,0.6887304549696156,0.6897819613198394,0.6450241135629533,0.6205649170807864
0.38524059659605037,0.5854007692805939,0.6258262445391178,0.6354179037702852,0.6693261807770946,0.6625359754969867,0.5906888663039479,0.5252422381930708,0.5133782249513514,0.5221798138778178,0.48463452777784893,0.5518919708942344,0.5436935197927643,0.5491633454984362,0.5624026742103675,0.5831917376550542,0.5672527110058726,0.4966838696973489,0.48768735048143397,0.6013427494714102,0.5758576729628921,0.5671742706052368,0.47813195111228723,0.6029147244623,0.4597159026802011,0.47656215061503104,0.5852911806140265,0.6240024849112253,0.5333403251503899,0.3241653486359799,0.10168594832652011,0.07525825178362922,0.10778469361026066,0.17565649715469278,0.25711050601708285,0.42479623649228526,0.6270287171127673,0.7236815663959159,0.7682722692122904,0.765220805429502,0.7852819846726722,0.8089926449556991,0.7857155065647603,0.8117720467827759,0.8320974706823074,0.8177832321159472,0.8444437187855427,0.8855362469834467,0.8948904945312494,0.8654663223857011,0.8206572584567504,0.7988635194234335,0.796018503202326,0.7425735083773322,0.6537607469789559,0.7047411467959175,0.7291579042071588,0.6667782305462248,0.5747013963598444,0.6159799694101968,0.6489899240091374,0.6261948902029276,0.5789744864899686,0.6401484360063896,0.6075082288779489,0.504022694236679,0.49808049585735237,0.39410529305091746,0.3860326192681203,0.375598361751989,0.3585296176453917,0.3815573536065421,0.3791330815650224,0.3687609020475723,0.3986537961289786,0.4363262907623742,0.4708287982321084,0.48719942673181316,0.512401990349819,0.5591761383212293,0.5834603850223608,0.5952827804716723
0.41537476111752253,0.6101109634911812,0.6411006897545709,0.5937928221274275,0.61373656045064,0.5792723257900895,0.6380379495875511,0.6329029957556793,0.6694525977946654,0.7102141563786768,0.6249474410582808,0.6451615852706398,0.6678022160839232,0.6146115773778472,0.5840920812102173,0.6371816634967484,0.6261136494027645,0.6070631608762245,0.566159428214465,0.7146399849500725,0.6309100844434135,0.63102792268434,0.5168989348599442,0.5643522124507635,0.5445717694043776,0.5688610223532761,0.5737156090478945,0.6349723913897676,0.764373177184496,0.8226819465626063,0.8367019940423933,0.9101357504488841,0.862930767447628,0.6726979012303707,0.3207270546514124,0.10054979007681442,0.1261601880924461,0.34052217167843124,0.3867429046604769,0.39100088685506573,0.3172009727013597,0.26622092536338593,0.24006575418209308,0.2750156488838462,0.2927962990623669,0.35770993184193417,0.3842715865961048,0.4177977315900001,0.41384319225932836,0.4422613255740725,0.5461963230232276,0.6549080805457388,0.6651156490765173,0.5999216290091651,0.4985258428296702,0.4667356949303704,0.43215157142589633,0.39568669351969243,0.2864456773306016,0.3073819032492455,0.31755136322120137,0.30300103667395484,0.3064097478414548,0.3354893210830636,0.34783517570015643,0.39228745226077055,0.41995284966263746,0.5418296121835906,0.617318051082975,0.6748645004308533,0.6954986299011957,0.7346686238483561,0.7271845959584493,0.6998982455043248,0.6999490563398403,0.6954730087479504,0.689254511334007,0.6666826224392738,0.6604342581423401,0.6532898658882476,0.6506063011567451,0.6183513697641416
0.38804752238408163,0.5541397505072553,0.5754886169863203,0.5495738382390822,0.5603811582025056,0.5807938933383489,0.6138872064961989,0.6567408587176448,0.752253626678073,0.7058129102296847,0.7227576071349621,0.769932147562939,0.6694479771220812,0.6894907610107968,0.6133744180691786,0.5843444942119659,0.6253759384315987,0.5437675419260216,0.5414120275894034,0.5475603542164533,0.40834671538834755,0.4433872562083276,0.3914381502741623,0.360965107672227,0.33378062081403875,0.31454378016969253,0.30718285657768035,0.44270199779101177,0.7424945512624185,0.8498707805853059,0.8257696907538179,0.6368121489249349,0.39405495418076986,0.2318796832002158,0.1659661968582492,0.10292000243168453,0.33149952369325164,0.6143720639725022,0.6393654091610602,0.5448315290850457,0.4598615934396074,0.3788817269709397,0.3528188108793341,0.4367736810743435,0.5082884993096641,0.5487791183493511,0.554199978122806,0.5903093415520149,0.6582810689847416,0.7608687925847732,0.7520649677085478,0.7257845796634528,0.7059880832233845,0.6444625183911386,0.7705117167396354,0.6665969591285035,0.6327043709766437,0.6263666683155216,0.6904860517004405,0.6663685562553785,0.6962606278123752,0.7869427166874187,0.700302806813913,0.7030622257829509,0.7382974623390451,0.7090274334116771,0.6549909796386162,0.6315011463027922,0.6307033704788245,0.5454059580850403,0.5001578259371646,0.4537092291630365,0.4124014363182588,0.4080915299702237,0.43564691588290005,0.4537354671281557,0.4847932768445329,0.4492070012090488,0.4817808811406178,0.5055644710759201,0.5474586069894789,0.5516458359468677
0.32337728468640603,0.46379343302197584,0.4676680836366498,0.4570588713787057,0.44213970907226907,0.40529517351729627,0.47695921559621735,0.48972884168580344,0.5046255228268532,0.6176258512654539,0.5715397505284455,0.6083200876032422,0.616146239664485,0.5738861067914923,0.5469878918349709,0.5753870541255693,0.538009739529797,0.4831747254644625,0.5195540398043347,0.5738228885437786,0.47708104862076306,0.4103285856534896,0.3627848725752443,0.36498565513578335,0.3471214342564148,0.32508379012704397,0.388833899010377,0.46544269323154075,0.7277309993284619,0.7832164037885134,0.8244804082294268,0.9372762564782487,0.8757818012338336,0.6060006439041644,0.3667232271067161,0.31063672007653376,0.3517023810752038,0.40834855613928134,0.46691639009575425,0.4723195055169467,0.3700469629484402,0.28708620113392447,0.1947752330877851,0.17518541668260823,0.20736613859566455,0.2734095935512899,0.33251112177587455,0.377644453130325,0.3924628826408588,0.38394212350810186,0.5452996883287735,0.6550397663512473,0.6660565512092725,0.6131884238345937,0.5641065097232356,0.5176107746208951,0.5073421502820635,0.5099193583359009,0.4079109923101684,0.44361638696681327,0.4494849794365523,0.4305639267072816,0.42437191086736203,0.5069272565341245,0.4873743725411265,0.5319857322585824,0.618549674280336,0.6510432926395315,0.7221470964605572,0.799744846610786,0.809260663774981,0.8212867882536701,0.8147612694061779,0.8073723302780723,0.8132600831556667,0.7898695525448962,0.8083249290927029,0.7865063925467917,0.7721502659208921,0.7801225639529611,0.7316770557659151,0.7131262601353222
0.2758243342931346,0.3968512518320688,0.4160167045174934,0.400157918619516,0.38923877040714727,0.34296931634143,0.42210720412822356,0.4283372033888017,0.46177624183874827,0.5510019876850863,0.5354043522682271,0.49846939383387123,0.4884513517882152,0.5158777006005257,0.4863454465217997,0.4725550494494698,0.46611046228794906,0.4292755133021574,0.4365998857766699,0.5592158785248311,0.4460812876168522,0.4457203119031685,0.3868199153399634,0.3403993645454126,0.34518341062478175,0.3540689273900455,0.3625311925237361,0.47878391048846025,0.701216554098739,0.7842418009397945,0.8050048068653588,0.8546418651505902,0.7769735812173566,0.5407150955606874,0.2049390398883566,0.03568574023326687,0.0736397745366757,0.28342630278773484,0.373732953816718,0.4658510576855044,0.5052619053971122,0.5714530098685184,0.5867071250806086,0.6232960795807574,0.6643572665178372,0.6417817692053145,0.6721099437534307,0.7195229203808668,0.7717001785279973,0.7790466409635899,0.8178029872787868,0.7948045138472791,0.6881264816185186,0.6466455999021843,0.6211876444243538,0.6024085368680416,0.5835145140750351,0.5717282798838182,0.5353585385525788,0.5123809065612022,0.5090985771774782,0.6204970326347993,0.6108561799557217,0.6501100496925418,0.6173209054059247,0.6493772715085464,0.7371231237186111,0.7058319306946477,0.6747268147146179,0.6976326251674041,0.6594614707424219,0.5877801086559774,0.5478574071196332,0.5210440918913919,0.5335327092799197,0.5432593911115942,0.5498790164658213,0.5913690885242275,0.6276737294159968,0.6612738590713516,0.6675595264471779,0.6643688641908689
0.31242255910111194,0.4626392937139518,0.47729914940469187,0.4793988872646712,0.5151512546506116,0.48693736862909753,0.4898068048899488,0.4423296553567219,0.432229589109508,0.45609416005034,0.4098567290716095,0.4795524965064669,0.4566208161201514,0.45200028879616794,0.4510958136345857,0.49466422670746096,0.4745645413225157,0.3901661545042647,0.38068060797039716,0.4915963507302488,0.4371662219359732,0.45946574594215017,0.4230129968712476,0.407441068983152,0.3588908826811025,0.3935158215340526,0.5415848010786385,0.6829726927830722,0.6022963239308025,0.4381646322168011,0.1543242072773473,0.055612936275621694,0.10859363533525113,0.13844591554316665,0.1876139761592116,0.425587032611908,0.6695191193311758,0.7709837737844092,0.830893849431045,0.8399053675189897,0.8337175102081243,0.843885879652608,0.831568671662742,0.8688141550189623,0.856312104181562,0.8253573953762976,0.8365700972122786,0.8706893856640636,0.8858564320611453,0.8780468747941164,0.82167221794987,0.798822623763942,0.7525205237508827,0.7162419629010066,0.6729191124478011,0.6494424833033627,0.648385140620245,0.6292928821180136,0.5548690231845426,0.5913856630548078,0.619718536266152,0.6539778232547299,0.6229194524280572,0.6227861130564716,0.6286016550779773,0.5486578091471008,0.5280543540591687,0.527416060094722,0.523289654728839,0.5107503018938321,0.460996821204096,0.48909135984819585,0.5056086315255213,0.49383740667272813,0.4992716255960705,0.5315333518914377,0.5674781157468167,0.5804186601810951,0.6272922948412855,0.6420555759474627,0.6594417906991556,0.6828004511139455
0.978051830844198,0.6248264034814203,0.6458356401927314,0.5984465886244684,0.5955816272446082,0.5721322669071339,0.5876233711229368,0.574741645319159,0.5808570756663503,0.6685658474776908,0.6401786369497531,0.7492351233978534,0.7377586153400257,0.6645896509252232,0.6492026398701513,0.6597442548255936,0.6672810301364379,0.6150686084217735,0.5748688846912621,0.7245574569733115,0.706037773609504,0.7415594114969356,0.6473480246435724,0.6053158533503253,0.5106282461476536,0.5324490949362366,0.5616761840142384,0.6452299932654886,0.7859731393703234,0.8261233120259011,0.828551018955942,0.8500802597178887,0.8549412823024187,0.9004069394333718,0.8784461629928215,0.9399684470353601,0.7066414126650594,0.3629737696787185,0.2784143969838686,0.23021564819858398,0.15635287717769297,0.09440824845888629,0.009094238856078296,0.03995007185454014,0.056495620740656394,0.09671284337928776,0.10714768120226736,0.14976336516454747,0.14290546893064038,0.1310865291893218,0.13632803871642038,0.1391208468965407,0.20232538718464338,0.4043865863529269,0.42978321664775426,0.4473159589123697,0.36991992215951763,0.3387580946040404,0.20494912814713367,0.2468278576844284,0.22106520717643918,0.2230024484360411,0.18947498751297387,0.21372893834438644,0.24743947991600546,0.23762966598007662,0.2736894072578214,0.4018983599078868,0.5307630129240424,0.5935705496712232,0.6499459498385654,0.7332199259373695,0.7501428238110701,0.767376239935443,0.7744798500604415,0.7745905464014198,0.787766998132231,0.7715175526873882,0.7853478815151209,0.7458280792617354,0.7254044404737601,0.6871721781990842
0.41943779868934494,0.6163200610965751,0.6485274242889577,0.6582825931446317,0.6940086840739628,0.6637655601482146,0.6934100832843978,0.5668933092256757,0.5720476131127048,0.5907822077117721,0.5282813153842566,0.5876569156430673,0.5945166767894557,0.5905628914805384,0.6039301235875523,0.6271565677139848,0.6487190779846878,0.5601742594038,0.5339092156612045,0.6355678763909476,0.6127758155858515,0.6338015226909386,0.5657754553559516,0.5926107518747578,0.5226089853468696,0.5438953242312656,0.5728037885585818,0.7323173624592709,0.7462926674736763,0.5654815596210658,0.225705764378615,0.046727885700727945,0.06249401327699755,0.1373327557401648,0.1961366021255846,0.3611691542547928,0.537966634454345,0.6501026771725279,0.7252562125962387,0.7211841582071613,0.715513618731393,0.7465503946465901,0.7418352104654575,0.7973794810114466,0.7641959821948218,0.7486156776644851,0.7781327516287276,0.8340764446243172,0.8792539251118088,0.8468980560869904,0.7861446557634088,0.7598575245117802,0.6815073163541734,0.6177845102943051,0.5934517700485673,0.532499990253176,0.542461630098362,0.47626953982935527,0.4165721195565037,0.4606396911825197,0.4842656311882463,0.4768758226149362,0.45621922432067197,0.49287883609127525,0.5260125450340017,0.46445742050784955,0.4987657762673654,0.5371666271574707,0.542497856383833,0.5204851648256706,0.49028736629095904,0.48345590219618934,0.47031748396042067,0.45335405353259783,0.4546147732174659,0.4768987614031134,0.5000420317851725,0.46365399056359,0.49875085491495863,0.4833990810367097,0.5336227755145534,0.504641932534723
0.34796075338811944,0.5258845510000498,0.5467634306756889,0.524510699102108,0.5186425733567501,0.533674251420178,0.603186770486762,0.58758343963995,0.5217988354534886,0.5551913224405569,0.5387386744913211,0.5317164773249348,0.5123821579427954,0.5536886600450333,0.5273548731126313,0.5321166695374178,0.5464251741796147,0.5252130675617869,0.5187872584802536,0.5442992234431245,0.49315837043720073,0.5232838947679485,0.5056789203316412,0.5013130633207006,0.44188797252000167,0.4832353451473442,0.45794750195890127,0.6076816445891684,0.7985930577889618,0.7935504434992702,0.5690068794239806,0.2581091524662964,0.08111619396052816,0.0777904493137711,0.1201029966755015,0.196784926892839,0.4911812751264706,0.6441546508656518,0.6812209457814704,0.6950162467703606,0.6631839013032164,0.6733217641520303,0.7059278353572085,0.7692717540879824,0.7856411989165646,0.7414338815578033,0.7342556893737975,0.7636331088583287,0.8537647874893051,0.8832824919909662,0.8766918251396321,0.8470609697260748,0.7971622384290686,0.8040731023895876,0.7677575004335653,0.7562554215684862,0.7090348182496296,0.7178195255551065,0.6671525592587018,0.681104170590471,0.6827473214953376,0.698146316112244,0.6637658769124739,0.66515946585835,0.5957369154100177,0.5546362537471765,0.4986561749039582,0.42955678838543365,0.4115079141164573,0.38040939152369857,0.33200131226900464,0.35256559037317875,0.36144797363854264,0.37057385382985975,0.4055667857571972,0.44631771043856927,0.48430876845684256,0.48409891034652747,0.5419858355336995,0.5688153044349532,0.5943245088182827,0.623291785609335
0.3390016969674986,0.514149772281195,0.5310357084210495,0.4848598633743163,0.49262465096864877,0.5079494147536251,0.5547218900258173,0.5851187598915366,0.6620367709664403,0.6347880066438235,0.5920359851579877,0.6585772217489563,0.590657781552518,0.6112529355109891,0.5664071566973542,0.5462996629845815,0.5284874522131618,0.49203608683674727,0.4551280533505232,0.4878572394305162,0.40454625023495683,0.3243318757905019,0.3245015362163202,0.28686099344675486,0.3145158896693516,0.2782696609435032,0.32408140214794995,0.4291724130595106,0.655936883950337,0.8078297808310155,0.9160133217352882,0.8285102735480696,0.539602886373685,0.3119685071117213,0.24074814954073775,0.2485154326056882,0.333095351911016,0.5201162805588861,0.6028063716189765,0.5250241918961321,0.42088031966745576,0.36482516248787256,0.2773483079491249,0.3269711832266453,0.37669428546157696,0.4291537258393583,0.4276147583475287,0.4910799774431224,0.5810525541979271,0.6236142799155817,0.6990121859520351,0.6953431961071608,0.5959441874432142,0.6280248276105405,0.5858601849384073,0.5856042259345917,0.5828525592392263,0.5527174725178626,0.48152023185766407,0.5705177520269913,0.6040195008199195,0.661140028678194,0.5924481390076421,0.6999976242940051,0.7334594038325136,0.717249364000025,0.8048404529811053,0.7753933510474684,0.8121185043892338,0.836551271965912,0.7711526795925128,0.6885555367267927,0.6614797846721983,0.6531431749519971,0.6103284810085408,0.603199695812589,0.5755103630854881,0.6221359897820207,0.5793844433100641,0.5745618989024622,0.591863347020222,0.5978246056431613
0.4614042701758357,0.6700369351089903,0.6843325376071134,0.6462166440578754,0.6567689360006063,0.6366479608699241,0.6681896509937948,0.6509160655115556,0.7128940986583492,0.7642002196269324,0.745507405281038,0.7294367870435007,0.7298609691520808,0.7277434012310781,0.683031734628166,0.695416812443492,0.7388552811988015,0.6701607079287202,0.6645405667935672,0.7910720107903809,0.7553326665232233,0.772935110523063,0.6298123295371284,0.6114214023496338,0.539240455237426,0.6644528402698497,0.6808225284149582,0.6677992356845396,0.770970632749962,0.8332947958697657,0.8411830588984969,0.8857190329432152,0.8842557431258706,0.7235643342295077,0.4185044434498285,0.1165401554564458,0.037423037197780396,0.24263948761574317,0.30514584803054634,0.26683442500119703,0.308921875984556,0.29121442946710896,0.28325040016783165,0.33634620565298046,0.353978960160607,0.3976372029243928,0.40744112755134004,0.433904451789893,0.4531168775084414,0.43936529791170037,0.5156810305233499,0.5735076982292358,0.5977773661228372,0.5933220987844061,0.4913654148099296,0.43736495939112713,0.4256361699549621,0.389711565790273,0.2800922339187299,0.25899027649793804,0.311471454652245,0.3171309749247603,0.28043307850624444,0.30846320674217054,0.3614897265810062,0.36653539405993507,0.4339296215448003,0.45566870037070095,0.5603519200211184,0.6213609499499935,0.6461672305316981,0.625220104093834,0.6273413841096174,0.6054770984269373,0.5900477676591713,0.574402345244854,0.5791359890366882,0.5606969672407056,0.5657816356891168,0.5412451274847903,0.5498424946629245,0.523314255516455
0.34959293997056334,0.5201550715354131,0.5417229659799874,0.5657034763309481,0.584804742776558,0.5856009803972609,0.6219172416423578,0.5865467384140777,0.5232654248390468,0.5669174778880588,0.5173756818543926,0.5628567050291893,0.5685565910958988,0.5769076546208695,0.6050765565474252,0.628370288542273,0.6331108770093513,0.5973028871942909,0.5728762764910964,0.6613497896283804,0.5737330267391769,0.6899712201891772,0.6206035304097834,0.6540926478187817,0.5531898477764493,0.6035522290845716,0.6693523762279326,0.6600460886942472,0.8187874744004597,0.8669209197667942,0.7333996261183524,0.46814162761949346,0.16591859718612778,0.07080869985183824,0.11050519204805476,0.2005173177504853,0.3830275455471912,0.5677660284741937,0.5992372460181318,0.57586438720556,0.5284232697077835,0.5003442572029622,0.5191353027484351,0.5589930556405496,0.6143210161825247,0.6236656207669031,0.6170226990225122,0.6730780663714376,0.7638457563688131,0.8348145448997703,0.8144566097988384,0.776005785978491,0.6821920922234753,0.6637165942202875,0.6172215898186457,0.5546512614208614,0.5171749048443872,0.4734219415850145,0.3905760703406021,0.4326089295898441,0.41574722587397106,0.44665694856389326,0.4256812068229593,0.4597521338845998,0.4707648838491295,0.47176727288053066,0.5059082324822548,0.5641122243443775,0.5674435113241727,0.6605326793732539,0.6220982382184936,0.6161821804676596,0.5818836353983421,0.5844503308149527,0.5800044391867032,0.5740905935748382,0.5779537374948385,0.5691461231246461,0.5939820268040219,0.5779307785119535,0.5823224005885955,0.5752594961118125
0.6774854521704743,0.43904401785297364,0.43259498499821963,0.4052984799076828,0.44054015078805003,0.38890697609737473,0.402502576563877,0.407275775476229,0.40064612001100436,0.5076002063391286,0.48927135885851397,0.6858693016959408,0.7409192800072291,0.6914058384902371,0.7050846236586841,0.6929172437279242,0.6082851693004259,0.561134743794214,0.4796633724117609,0.5032552294167066,0.4639459177615144,0.42436888912084686,0.31042983983324984,0.2532280399414364,0.17563986104141682,0.17852147359278248,0.2314393581055978,0.3809919525288306,0.6620123471206179,0.7686077103885558,0.7671773850943913,0.7828346833152751,0.8211488322581251,0.9085397294957143,0.834273221568566,0.773078415069408,0.5863822123789315,0.47687071978915585,0.40527366272217846,0.26469645160693345,0.2535626659640928,0.29470092182081087,0.19918130464800232,0.16532062397705005,0.10877669560723224,0.11032993455587747,0.17073903493327214,0.21765738669796353,0.2575685764334047,0.25654696984341196,0.2615178363757471,0.2885977065464684,0.3427524160607194,0.5160139968065688,0.496140345992315,0.5325205650615574,0.5173962722424894,0.4534290152586985,0.4749130105390959,0.578514825776409,0.5196941897927947,0.6014137281308635,0.5612007053727734,0.6954466958224839,0.6754441364787466,0.7521098744320389,0.8008716027278051,0.8243738788056993,0.8883724458611142,0.9187552472685018,0.8860034202119449,0.8338216697067498,0.8097668989920128,0.7554471563931063,0.7415028715815556,0.6977633536502632,0.6948445835589773,0.6864170690589209,0.7039230166924365,0.6890503146626297,0.6648859419894838,0.6734593523253509
0.9788069104112348,0.5479748710961684,0.5730734497754848,0.5514788023640741,0.546706080315684,0.4958583541577662,0.529127077242882,0.5321298989663715,0.5825590809822389,0.6493151121390947,0.6451240053478915,0.7309188465934149,0.5914880694512897,0.5869765374410653,0.6003326895507812,0.5574212843211495,0.5914008416088414,0.5374876142544109,0.5648116026450476,0.6507444664138674,0.6521639373273774,0.5736768987614489,0.5327987925706074,0.5556321100391822,0.44003748412185073,0.4812349745577694,0.5022644129778938,0.569876836322295,0.7430050462708055,0.8009365698640875,0.8160592231461029,0.8310212820445617,0.8667284261807087,0.859864937974491,0.7551122842753846,0.6059409533155116,0.352588621140683,0.34947418732731095,0.35390422451917924,0.3165032043539906,0.21527810674406522,0.16206887848829932,0.09226762967859481,0.15031604452342862,0.14573957852201158,0.16847374021849615,0.21949252303290323,0.2453971479594662,0.2630667469187951,0.22002866720944605,0.21399532452190442,0.31997031278051724,0.4459956425670108,0.5506950274533478,0.469124613645243,0.46486666361102363,0.4317150260747743,0.33299337571839926,0.24230374284165163,0.2885453952298629,0.2812971316759324,0.2448915708683841,0.2750893851768692,0.3055589802190186,0.3208749426479216,0.328779088536039,0.39726379652476673,0.52522518087735,0.5496701415674501,0.6454254566255684,0.7303286981702758,0.7656078911209148,0.777951359033427,0.828282136435717,0.8058533812293562,0.7901849055651937,0.8100186731743553,0.7795083070306723,0.7786263034823473,0.7447478072988667,0.7402084080622374,0.6885303814786474
0.389758982020582,0.5530224126218053,0.5663914023702992,0.5428438390445454,0.5476055883323511,0.5096638555851507,0.5700813137337013,0.5555127081559995,0.5993537748381451,0.6415013665170053,0.5168946752400233,0.6072448908488658,0.6037664579410682,0.55340530344979,0.5666577376393517,0.5743598715817014,0.60624723310182,0.5558311675708322,0.5506255488945012,0.6554670729256474,0.5555317176382546,0.5732010067369879,0.5119876271568269,0.5551191419868514,0.48946071214749165,0.556475444814623,0.567823797793219,0.6126153931184829,0.7626111773701707,0.8428214661627303,0.8553440917401985,0.7783718404832743,0.5020102451640156,0.14504417010912773,0.032451368095593236,0.02712778850945674,0.12999219338397894,0.40973505303570934,0.5900169491041602,0.5610584846382383,0.5331094028816952,0.5228247901372406,0.4906077626417054,0.5916099110533563,0.6341315830276557,0.6410128602819167,0.638335922213127,0.6400081046016559,0.6958258696754618,0.7563390116710849,0.7824272085933341,0.7792355630080494,0.7423965940524461,0.6841388304887364,0.6357894697615054,0.6304927571596319,0.6057300114160526,0.5510604453214548,0.4698803504791,0.519741788698308,0.545639701374672,0.5366536430035046,0.5064076462061429,0.5548461351203224,0.5408599491134894,0.5527967409540941,0.5180841343326028,0.538427321852633,0.5532460247905806,0.5319146265042749,0.4766092110022676,0.48370475478545866,0.4841302736182193,0.4597493633881268,0.47270522983243224,0.5010413453801964,0.5481517767621484,0.5439765059029845,0.5665211907604424,0.5759748003539178,0.6092175566940694,0.6139758029314832
1.0,0.3615867485505381,0.36524815118482623,0.3306424006947718,0.3168996369469793,0.2668262285442885,0.330948548979347,0.34089292162058504,0.3506600007644888,0.4188255058283199,0.4463351581029765,0.5080492045250844,0.4023864857799664,0.37799134716411703,0.3907018420637287,0.34411085362430305,0.32865064738668875,0.30648421366096207,0.343270531219383,0.4274135924684596,0.3490225958294154,0.38174655137155883,0.3045793203247516,0.2506840755624561,0.2419699171540935,0.29055640116574194,0.292780389361411,0.4675089091026978,0.6960441951824337,0.7861203190712299,0.7956196796636139,0.8175028646029414,0.827884322639335,0.8758948512250714,0.8298745777957423,0.8085631469333554,0.5553365270531914,0.4166218969163379,0.4333869495539969,0.4185416542384496,0.29691454209617174,0.2629818735284184,0.1799526750156224,0.19839905793876667,0.19217503207640696,0.23160739240048273,0.25120431204423893,0.2638025618995154,0.27669774787216406,0.25667367849606026,0.2534774858440425,0.3065227184743691,0.34485179471265814,0.4980567252219186,0.5465872021367728,0.48882655217026055,0.43156647939279535,0.4488540616978468,0.3234046628554084,0.3602770473844904,0.3277136103238869,0.3309105782551449,0.3470479505229358,0.37450321232774575,0.3458346955242211,0.3859055949166632,0.4694495262459919,0.5644164269644603,0.6354046275277012,0.7659432996895102,0.821669373493053,0.8588886232930608,0.9108133977660731,0.963022454022339,0.9708989390072458,0.967648031296958,0.9823283644962548,0.99081532227921,0.9965242441287687,0.9745501799147881,0.959046124636125,0.9243347140671592
0.9958292213545066,0.28549108481066243,0.29687278862319266,0.28385650953756053,0.2770035227784575,0.21557979718046513,0.29941377510113565,0.2982611280207455,0.2794281900109855,0.35410334075823735,0.37370961408243064,0.4635145258949285,0.4645683015018199,0.36036308864465116,0.3954227308013434,0.3945519192112449,0.34730293948706914,0.30973739066836226,0.2888980605612531,0.37500379110782994,0.32981647458497126,0.3371117671033512,0.32349888782203395,0.30063654676303103,0.2106268146153854,0.2526405972271856,0.2982802153792069,0.45105265293191243,0.6884949576771107,0.7707293947706435,0.7851646673557152,0.8123715512207758,0.8426749067320083,0.8493167117614706,0.7171582675306287,0.5479003080088326,0.30182452423776573,0.3564553667533218,0.4019078988101372,0.3405907509417362,0.3532236664212295,0.3729685707792336,0.3256071763480838,0.3454098084002504,0.36739143636278615,0.35786217453511815,0.43651943037019,0.447356028732787,0.48416383864883733,0.4626043788345126,0.4722490791443265,0.5268592044413221,0.5602339234841621,0.6049734416216279,0.6214934340829046,0.5933343911231101,0.5322986875881701,0.4974882012636559,0.4595114392823965,0.46926232601506435,0.4906511055574515,0.477676097482172,0.4911301281186584,0.5331344336189532,0.5484546423407096,0.586074313133478,0.6559340105537532,0.7170044841740826,0.7506550212309742,0.8123640018491415,0.8371535921547638,0.8303409224146453,0.8258550250878027,0.8007184939185706,0.7990579538938138,0.7986020725443475,0.8075947696826073,0.8063995963691722,0.8314015137967615,0.8139930371115337,0.8174101360147683,0.80925591009642
0.6796788930598998,0.49508369899392507,0.5022877656577059,0.47838218347492745,0.4905773008259873,0.4216563398513904,0.4870802644345188,0.4833839470114164,0.49178415816128074,0.5492649566013513,0.5877597117645728,0.6827323517683208,0.6562084102557592,0.6831597758894505,0.6798752393958626,0.6537631895557332,0.6773564741464697,0.5544335073400245,0.524391978795383,0.6007272174237408,0.5281294529085687,0.5346729153577555,0.41320567459553686,0.37549343822817705,0.3170778919577703,0.33365089956608646,0.3508296670662193,0.4818567751862521,0.6928079949768772,0.7817808926111172,0.7914284528205822,0.8086296062042349,0.8610416137682169,0.9789926266386441,0.9270886865972124,0.8741218860532787,0.6191878826646124,0.4361689898685498,0.38878077383552057,0.27200450705623436,0.20418982151989595,0.1910127952520172,0.10763271467544144,0.08409230797440304,0.06039453597957167,0.0392100044518191,0.07784555895330325,0.11735312308530482,0.15011361554132246,0.13077164501093053,0.1797258778266117,0.27428541740079126,0.3213912788970367,0.43158734672924415,0.4094362863621363,0.40036850530209206,0.3842364244232599,0.3320886061798217,0.26782589379146765,0.30762020934063294,0.31251001290474434,0.2891152550960525,0.33656924254436316,0.37317417959496035,0.4146256174211661,0.4318481302900985,0.514247724095062,0.6093820085862567,0.6878631471244765,0.7503959815865956,0.8056531527284205,0.8401183425452252,0.8645590386544095,0.8653597381284573,0.8655498670232651,0.8463964035008655,0.8620803512847011,0.8636211636373422,0.8562209054345522,0.8262742827949308,0.7903073521114015,0.7612332082202172
0.09957004111124562,0.14369920481060217,0.1224753514087113,0.12565888078906678,0.11251407104730748,0.08926640262360774,0.18489390595959032,0.2066141376333817,0.17669363867300908,0.26266631410081565,0.2233093482262803,0.23870186609997507,0.21908137985424775,0.1755963358311447,0.19905400323945072,0.22259684552385883,0.18736316145978849,0.18792986964108865,0.20439743543071964,0.25910164617021775,0.17338985352740083,0.17793684831154377,0.152392542775655,0.1908744321884459,0.16741310768544782,0.22591544104060152,0.24665377643876113,0.41761272235206187,0.6731545317935511,0.7691436193867314,0.8150426343079487,0.864675542439063,0.7627025967262822,0.5576029426646523,0.3284623807598689,0.28756418701793307,0.44410256586617325,0.5463496779992293,0.5791885002410123,0.6278252691885887,0.5644030560351976,0.5732523631707258,0.5612176697944729,0.5715174052999592,0.5813735263428983,0.6145211318571704,0.6242165446114186,0.6533586905291138,0.6605908667919631,0.7116982143196733,0.7675665893533277,0.8182807161818957,0.7907593772594184,0.8060797654690796,0.7669183894229543,0.7117702614275121,0.6634347763382441,0.6483927794429869,0.5880549976562108,0.6300128753932195,0.5966315581974221,0.5878184118647706,0.6292091671961684,0.6611650805817553,0.6752773471224985,0.7087735490367864,0.7889417299578287,0.8439162549027255,0.8463744377570022,0.8899981196346877,0.8628170522102389,0.883296221918208,0.8363723206084923,0.8362262582075928,0.8399505159251892,0.8128260111666341,0.8284828596806877,0.827760592049956,0.8678620421388475,0.8488154845498691,0.827639113928597,0.8338589043691277
0.3909599246182119,0.5795418321742156,0.6106500290355961,0.6328061058888923,0.6684772125133707,0.6994410727919493,0.7854468679551738,0.6736960333730082,0.6844001865729397,0.7101050322563451,0.6229526436105025,0.6606526177985425,0.6286419317629915,0.5778977108686464,0.5817597707332902,0.5736200492952956,0.5803097875721154,0.48991269837805546,0.40996724341654633,0.5011665455322694,0.47525336174419364,0.4710543384557802,0.40356362065326506,0.4278638137507207,0.34662026243290023,0.3474674846838786,0.6762764528538975,0.8746939897145156,0.6304317750278157,0.4450627146134218,0.22023423626510397,0.13886380007336174,0.08332961733074717,0.08748966330225971,0.26793102885895836,0.4742089806133004,0.6633414609262247,0.7005004605402856,0.7014925035231477,0.6728116344276517,0.6899004429692299,0.74281952840759,0.7580025178947031,0.8167917295640039,0.8002305959644616,0.7967478449148083,0.828841656130131,0.849762884593294,0.8723887993699788,0.8626526638054776,0.826305711714592,0.8194400502152368,0.8134138191160332,0.7903454948945857,0.7937687464476737,0.8218141653820787,0.7807895603514001,0.7449563961338985,0.739991652928268,0.7426966062460798,0.725543550650044,0.7055822280945628,0.6608665339362132,0.6091233745594353,0.5769470264632498,0.47882649149504153,0.3841565851840345,0.2996759977871787,0.31503403940150004,0.2976574280151083,0.25711222929042754,0.26879725317132436,0.2800278808440555,0.31528562779914104,0.3438137075166703,0.35860385642267656,0.3985158640500463,0.3812611652495266,0.43608751048209815,0.4746325562130589,0.5141360784126536,0.511433197307816
0.23899776405606776,0.3405732172257395,0.33133671805299436,0.3168951709695145,0.32029074648493117,0.30765030480442807,0.4002804302722616,0.377515150098048,0.41329250345433166,0.39757651436477165,0.38216765620014403,0.40587344104300715,0.3639359777149738,0.3373334709276135,0.40629831356764173,0.3343603993649057,0.39781988428002707,0.3605649864247863,0.393014147789678,0.4208894225228946,0.2955303613931545,0.3738464042425931,0.34071116098475324,0.38109279257995066,0.31753193333430463,0.32928085074883967,0.3842094264019404,0.47866797148381557,0.707699627370644,0.8209762305442643,0.824845700017542,0.6965845649247429,0.40310030442325767,0.1575657042723423,0.1340614518073726,0.18735566690147865,0.377993825780633,0.5886715183731454,0.6642017576316493,0.62207741351897,0.5698389612895389,0.5715428499616777,0.5450002091935217,0.6161541917007209,0.6732585184494966,0.6795166770621801,0.6629445188363304,0.6741570069691618,0.74820410371478,0.8621455086839587,0.8586215896461645,0.8501791523906809,0.8327957531340895,0.8856267074841399,0.77865799824352,0.7400270086951171,0.7578666347004988,0.6572142968320318,0.6624037853113569,0.6223005783341979,0.6805803226188959,0.6905245773922172,0.651232135100428,0.6995330286228731,0.6660049560599336,0.6844183593038928,0.7300618716009755,0.64987944190537,0.6930146326218725,0.7089148170424007,0.6619721548312884,0.5834539838722101,0.6001849802767778,0.6128562730674093,0.6387236132698199,0.6275394145724696,0.6452124244658909,0.6582696691045238,0.6922562825344081,0.6858117448113441,0.7088725022147224,0.7252324336115707
0.3148917966367398,0.4749085245990538,0.46981200043091736,0.4506334169898488,0.46198887338708067,0.4834085627945968,0.5274843220955152,0.5157482854170405,0.46338830936481384,0.4981767720738293,0.47251020483276446,0.47062581313438473,0.4604994722430934,0.5205626703920586,0.46928093632468765,0.47096148034373064,0.5099706609975141,0.4586309367915936,0.45142958222456897,0.4837206233183152,0.4478030763307095,0.4715893092447219,0.4763088732554553,0.4455910308240695,0.3513351876052685,0.40766316462326574,0.45008869248914474,0.5358631707003266,0.7498109291369613,0.8604386702742247,0.7862223984145027,0.5544855583968358,0.22165532198217597,0.07910786472583475,0.12081402665134022,0.16157083552614848,0.3017388921941866,0.5439102183918052,0.6193109542949033,0.6261872451177972,0.6068311313940047,0.5884608042387252,0.5605599199533056,0.6348493179319881,0.6567111053805804,0.6496909378102287,0.634156824338549,0.660477029495035,0.7220451037354727,0.790396075293857,0.7859509269504248,0.7298895148963999,0.6777585968239347,0.6333131954483787,0.516508932570146,0.5206783868157676,0.5007466649706745,0.45578903589787234,0.40627896843901196,0.3842498018849022,0.4024360121316075,0.42463298627120594,0.39915662745555813,0.4267536368592979,0.4506369450912867,0.4669170164629166,0.5162893062723097,0.5538259711723217,0.64058412899341,0.7108285369502438,0.7044244524586427,0.6963381119823543,0.7190970990812307,0.7004671318371097,0.7163154355713776,0.6991864706294654,0.7355716761584568,0.732215128524718,0.761018950096493,0.7473181234565511,0.7632373362008501,0.7570252342836716
0.9743132978931028,0.7325074299520838,0.7458767686764614,0.6959773736639082,0.7065835555229062,0.6770016813868232,0.6939092652204004,0.6630320520631878,0.7185172464892067,0.7772062252302094,0.7563822337129109,0.8517379390745157,0.8601217629609021,0.8660167333088002,0.7105741300051994,0.6887402226520437,0.7288123205251977,0.7074869194886524,0.7336893366138258,0.8565652225420666,0.8249134208437904,0.881038654985846,0.7695102240814414,0.7332442012661189,0.6857761175015238,0.7468774586858369,0.7828012774752235,0.7527605035580017,0.8128527354437994,0.8627474473967072,0.8648585874350884,0.8777999897328898,0.8858527829847388,0.9358338364319753,0.8918415256356517,0.8639164726358658,0.4297495119432053,0.2072550186717399,0.23685089011096205,0.1617366870397634,0.03292233472455952,0.07863829454210691,0.04965605407668705,0.09463226306718675,0.11744658622028503,0.1725502734178782,0.1829216841003321,0.2447513738782861,0.2845209058893846,0.2732850475314142,0.2612530639099453,0.2720228778471597,0.28839722362232295,0.3922867286273094,0.3565642067403873,0.2929715438933232,0.2608802786690281,0.20319465773326884,0.0992969244345226,0.0795234351990125,0.0637899587172095,0.0702266955919979,0.02257516116059155,0.03394374363750685,0.06052189311638512,0.10628900179613388,0.10801014978712009,0.16568140668897668,0.31962308460546224,0.43507789757276283,0.513574424922042,0.5621911910345994,0.6177297515248723,0.6550676717867258,0.6759134101454254,0.6736538935550178,0.6875486332022546,0.6756059019433296,0.6816745582296256,0.6561369413561671,0.6371092050824413,0.6047192306128729
0.3731549938709666,0.5455910935473521,0.5435295988546222,0.5114652525405982,0.5560960137130864,0.5109275861450874,0.5847158866518496,0.5712105269705545,0.6877332161745361,0.7353765265420803,0.6845398767510464,0.7376920495472442,0.6851730883546581,0.6422095188364011,0.618576916944669,0.6033226334039332,0.6018944532163312,0.5552436308895039,0.521386910887354,0.5303950840818539,0.423586537140061,0.39714355995782674,0.3180762683968671,0.3485139992960258,0.35143480192167537,0.32110861442755245,0.4252314475780601,0.44922780293234277,0.7038127259538423,0.8504441176831191,0.8577466989519914,0.6910148409329187,0.42825497685797664,0.25614964071970636,0.19230784071138485,0.15956374383845207,0.32132650569676624,0.5784419149496115,0.6080709391717234,0.543725613833293,0.43970992895631567,0.3446842010019978,0.3383109722043297,0.41206415628302867,0.46747954627209015,0.5547773138151614,0.5183569137193988,0.5611208622362925,0.6419817672322403,0.7293729673820305,0.7915077638431333,0.7791539053350125,0.7200743777966151,0.7446502237391346,0.7118140945126294,0.6571923059521183,0.7048070483126927,0.7126752134900156,0.6906984002261787,0.7199396198091466,0.7159775308918545,0.7346758969693187,0.7009902928434635,0.7167857491765157,0.7214473020917066,0.7174607661770864,0.6699675769682218,0.6242408361114702,0.6060082808888876,0.572681956382288,0.5221800546971073,0.5140150001584594,0.49000541830954636,0.45701010840107736,0.46428358577880424,0.4896646656065127,0.4979090421445754,0.4608803823024994,0.48276364897023455,0.5074567881136479,0.5382006642949325,0.5424888302281679
0.3538850203486275,0.5025542258464423,0.5030359089094915,0.4942945199798715,0.5171447097277091,0.5327617895803493,0.5842023776698327,0.5915407811966267,0.6680107188589952,0.6790466446995757,0.6212130339229811,0.6828911200083906,0.6430652243591379,0.6220067023652693,0.6068499673402556,0.53934484323102,0.5759475318737994,0.5179118281627242,0.43775073910229234,0.5475862350416391,0.3840950847593923,0.382940960982809,0.3494533295349411,0.31546572379339033,0.3234190716691125,0.2890884371840598,0.33585688669735664,0.43728474913530824,0.6434676476593049,0.8097438733322057,0.8898035995050275,0.8043195616410593,0.5688960388506213,0.3384482175770669,0.23125561601801214,0.16988997081117319,0.1561257862500387,0.47209303020672577,0.6021853014777977,0.5430506442629497,0.46073856517702705,0.37301665559151986,0.2793735117951629,0.38499022679186967,0.4324442371841561,0.5053782260809945,0.5342992079754315,0.5407743328340389,0.6155090761978365,0.6863028160161162,0.7387529303677776,0.7096671904102796,0.7082157022570592,0.6614109212151985,0.7327475728165578,0.6475331541905298,0.6842454591183522,0.6444068095000859,0.5647147737050104,0.6922194519063165,0.6655145752916615,0.6967524379248092,0.7040710160847059,0.7336937850050058,0.6996549712974077,0.6845565665596283,0.7549843999316288,0.741886833983086,0.6830306885338533,0.6425535333148247,0.6033862780062507,0.5672275042832728,0.5285167354218754,0.4985507924319078,0.5155635610417,0.5167415386915694,0.5359718289120382,0.5262667394277741,0.539655961058765,0.5820219822840061,0.5873109525545377,0.5992726653918883
0.38170357114272074,0.5709342948211013,0.6337598937185848,0.6368235724761292,0.6558126309282508,0.709010644963018,0.6841612480025173,0.633032257406952,0.6531434821547062,0.627009478577007,0.55298448455172,0.6592839796076231,0.6463875947705261,0.6379743407472585,0.5997613528938995,0.6136159999716956,0.5948499980298203,0.5093859034573872,0.4678130841946699,0.5688536526681692,0.49381773076488555,0.4660722752201887,0.4293635419423417,0.5489823414367014,0.33212243209369985,0.3645792330436682,0.4018637363177987,0.7767617517063318,0.8828886173136582,0.6414004203293711,0.3299948356749062,0.1836312010648128,0.15000795155171742,0.10391514090942455,0.14066613024960783,0.3342003953708599,0.5640821150541592,0.6530109346983565,0.6759476374165427,0.6270493052968651,0.5752583956416149,0.6076688222339754,0.6272763985877532,0.7264694860722734,0.7146820627590914,0.7230701981357114,0.7218893518729599,0.7538029463565181,0.7940832648821066,0.7675317517709832,0.7133545562305,0.696890949808374,0.6822836713949523,0.5923871454834596,0.5146542258299167,0.5258366354317268,0.5315958697832965,0.513283482666924,0.47384520955188963,0.4760791072955407,0.5063998218570228,0.5145320891035062,0.49761538634624647,0.5531669079203017,0.5812937041511642,0.5239827138928221,0.5533116076121347,0.5773163182821006,0.6005485210922756,0.5741449259947231,0.5389957744446563,0.5337533953043051,0.5281845515540315,0.5261527765091635,0.5336113924613803,0.5273702906081852,0.5392977720444861,0.5275928013639963,0.5461083187586476,0.5466033766104411,0.5693776699953972,0.5697461171023105
0.34507183157163873,0.48458930779809817,0.5240262350661338,0.5119498318097321,0.4922864739421848,0.5213538982957513,0.5523198252783762,0.5688961004020092,0.6012283537300187,0.6235387641799516,0.5828812114851076,0.597821233099396,0.5749063760116695,0.5924321487151818,0.5465505553637132,0.5484856519775579,0.5447519449269645,0.4986954893818452,0.47759221748248354,0.5215273709177328,0.3815809937533497,0.3676548217373164,0.4168213294846361,0.36423274376928194,0.3342482151587917,0.35221883640367535,0.4044359056222132,0.48470957493147493,0.6794009078638226,0.8275606446006823,0.9189636365809095,0.8528832599975258,0.5515554770535555,0.30747967407191945,0.23755281483075197,0.2449832341158622,0.3343642422595856,0.5250297574758354,0.5989842349412196,0.5226598781150898,0.40891612385643294,0.3301368770368003,0.21593535598639468,0.27092401884731543,0.33479728877038845,0.39803362908966244,0.444452970146635,0.4342753830372508,0.5118899724875552,0.6101902673937185,0.689311464387318,0.713354526610467,0.6789461718863132,0.6407614657332629,0.5393413442630108,0.5476331549669995,0.5135247743434113,0.5305155410901393,0.46654770253582073,0.45623118035655574,0.48647682889283106,0.5050654663214796,0.5104981823710033,0.553582686091687,0.5689482571329295,0.5688217209347788,0.6376982529458084,0.6692475448246524,0.7886054124483233,0.8172005108256276,0.7731990585041512,0.7657056858226629,0.7480630609285805,0.7484848149121094,0.7434578033228165,0.6824137154905947,0.6939148331340951,0.673917523641816,0.6919576849852016,0.6547536991154845,0.6515316503567836,0.6335784490760331
0.49450475675287797,0.7310367136790954,0.7633471746008296,0.721835323465214,0.7122986140223798,0.7199112699039025,0.7665048762017674,0.807318961368243,0.8300733316984761,0.751569972392603,0.6875867942662807,0.7521598708624806,0.6869024942045758,0.6941247207242374,0.737590153775554,0.6583204787731924,0.8179906660087812,0.6979672584664421,0.6404291950510854,0.8037046720394456,0.6589669370651742,0.687241122944571,0.6900759996820395,0.6780439511698828,0.5504429660603182,0.57480006091763,0.6083099845286518,0.6013814100331766,0.8782867690904926,0.8420000213308266,0.6209716400981301,0.272609845683749,0.07113926778579038,0.06177088814663456,0.10738652723701081,0.2045208024395544,0.5094692762086213,0.6106200225537001,0.6657703790608724,0.6845432664758382,0.6150239058191042,0.6358532933603798,0.6507633800439604,0.7016841879748252,0.7394142714189196,0.6895041905426219,0.6994427867772646,0.7633006749855791,0.8584302671682125,0.8723075924836057,0.8418863076025702,0.8230024274558667,0.7652542235030669,0.6863862339023815,0.6420529897829761,0.693104716633943,0.7173820428345601,0.6154075098749284,0.5846945057419777,0.6468765394335076,0.5770338891659564,0.6141037164281612,0.5470866251814515,0.6066749162711749,0.4923737346798024,0.41367527728881526,0.3370179088265288,0.26209347579007236,0.27322035466637523,0.20493582228412174,0.14138882230374367,0.16228545971665229,0.16718117238131183,0.1915866906202937,0.21081517826319152,0.24303145837832651,0.28935406839320654,0.25340716405936214,0.29142958232108607,0.343843305033551,0.38979078394565814,0.38515523266829255
0.38853646508737766,0.5573893114132801,0.5712229575802971,0.5503650103633595,0.5584472118172664,0.5346540966163073,0.6014749864715497,0.6138654105024193,0.6509244795487148,0.7048700428508017,0.5749991309822218,0.6396255289942939,0.6342289856889802,0.568246471250738,0.5979841824549594,0.603457331414364,0.641943684270502,0.5873421075094842,0.5973634393396475,0.6882846152733861,0.5733991940884683,0.5594756063274843,0.5191477598007266,0.5105394561846934,0.4500455040907941,0.4635862046181146,0.4808204990496318,0.5351248947448628,0.7270627409240468,0.8225213704447412,0.8566672142719411,0.7090427032201351,0.4193754244068797,0.15094928625971193,0.10264452732219775,0.0935281878424572,0.20396039603960414,0.44379227932501886,0.6149737790399459,0.551488291443023,0.5203114656845765,0.5477150590929529,0.48484331893573285,0.5748645115270994,0.6147714982964908,0.6256063222974243,0.6445230604186155,0.6153237236479658,0.6532423539304799,0.7445853418387911,0.794356377281342,0.7876814967633179,0.7413699619985212,0.6830200543330137,0.7229274286749487,0.7040871430938278,0.6390501942838391,0.5866502149511079,0.537063079139297,0.5612864434662532,0.5832482215610734,0.6500719086703629,0.29325659470888177,0.8103357192491372,0.9792627957140855,0.7008599786759544,0.5673216103376681,0.669307742019865,0.6138577830530225,0.5275914540152932,0.4415674188885641,0.4353371505218135,0.4210768670974392,0.3761859847974729,0.40138123823587,0.3916497789909694,0.4345966233986193,0.424679893465161,0.4693610782439674,0.5182376196767151,0.5448340481912612,0.544824061291822
0.3163758250735622,0.45882167663101203,0.46216731143178513,0.4585397910740333,0.4759450112218169,0.4683821627835136,0.5289829247516209,0.5633497203652601,0.5549164785952574,0.5850492003512289,0.5389640632992874,0.5501425709912463,0.5109266503500234,0.5290850817316772,0.5091889769671918,0.5093474630712146,0.5124963051786501,0.45698717314484205,0.4262185285276665,0.43850897967746005,0.34418493693304325,0.3673863319949613,0.3345013981509631,0.3332697572170293,0.30655733261321894,0.30830759784445644,0.3228509918010567,0.44246846274661694,0.7228997673573819,0.8803811407453639,0.8508524113500898,0.6077137582986398,0.35030915141691443,0.2382758777385804,0.21908710301378476,0.2518316626987084,0.4269127642184156,0.6100056634052324,0.6236278918135502,0.5527096770095671,0.45464972936565917,0.3683855484408637,0.35430103117090017,0.4083460345494796,0.4689610353157997,0.5098342352036528,0.49740542450145253,0.5308493640879646,0.6260835311896179,0.7133172040364719,0.7454722571950745,0.7320744033710853,0.6562077726086218,0.6279684896077632,0.5947399678720466,0.5721223534055551,0.5735760336854866,0.5383688094672239,0.48600617095831006,0.5108840673060718,0.5250996950537827,0.532442517773457,0.524145562459859,0.5897986355153353,0.6035376150849477,0.623427934499849,0.68363391235359,0.7578262241383975,0.7664272222088502,0.8058556864327079,0.8060889944255278,0.7735428529963585,0.7565077343240361,0.731732310585348,0.7229865792452945,0.6937152651188814,0.695266143034433,0.6767325813604933,0.6842909667886339,0.6770319849248277,0.6724235456258734,0.6507266507369951
0.38350758726627765,0.5738554710506774,0.6100927245815536,0.6081075205532654,0.6262017133324798,0.6068251216193584,0.7088429261501566,0.6313827924024007,0.6166380678785249,0.6516321650615069,0.5631885545928327,0.626487515797846,0.5883328894574431,0.5641374780672215,0.5599501350363356,0.5713460123454834,0.5886487318278901,0.4924688422413701,0.42956022439389285,0.4870963314260599,0.4581531322992143,0.4540166520523682,0.41777503986124576,0.4266493144873645,0.3758738869201321,0.39674582576700745,0.3870673467432018,0.6051714034440566,0.88580119872472,0.8356985942295475,0.540814819160558,0.2993496677335601,0.20541118705251815,0.16664456669767314,0.18314392104247113,0.3241603129238815,0.564866444963357,0.613890001481574,0.6209620622174554,0.5556113329133889,0.4458266776412705,0.4667593219293208,0.4729589198655756,0.5616282500052154,0.6196875212995712,0.5677229540081846,0.6122711941004753,0.6941083359527913,0.7753244798081627,0.8190948372598652,0.7537334156527964,0.7342778686322718,0.7085922403601705,0.6738949075403233,0.5746219052200419,0.5690818685058099,0.5480528463663206,0.5883361906290313,0.5039310791344014,0.5188206381579565,0.547513411903127,0.5576519459280908,0.5044393048292952,0.5732890784529805,0.5537009787815693,0.5896224173289706,0.6117613984360597,0.6564525390780604,0.6782858291680953,0.6747223727940278,0.6307347247993359,0.6536183035997793,0.6009852997112742,0.5672611003617418,0.5523625935592205,0.5497101211949742,0.5665763582933283,0.5188952023164619,0.5490549928483788,0.5311621777811103,0.5605508243229774,0.5549080438199504
0.316265693696578,0.46480359017694817,0.46878572576624333,0.4399337845521746,0.44418363958653206,0.4008034622291742,0.5075454077168983,0.48479934541803876,0.5279844225660388,0.6388766650375284,0.5579568160318087,0.6206677617071945,0.5982103893488834,0.541123237768251,0.5629736526168638,0.5472250407234616,0.5331648176652662,0.4670387846619001,0.46493740604914063,0.5175011189823595,0.3882740227720665,0.34567720138124325,0.3136334345630354,0.3098693010708494,0.2726226314917447,0.300260185527001,0.3131308648529812,0.45749173099392754,0.6764311061870323,0.7597713852702692,0.8075714343828632,0.9198595143465158,0.877702590930869,0.6381351409666428,0.4140199210565052,0.34532458114303044,0.39113989203713717,0.4323875394961918,0.4689110276862273,0.48274222077312234,0.38938486335846756,0.30505142299611365,0.2110188230599337,0.16865202815567482,0.19337244326231395,0.25036107348358416,0.3095288118759419,0.3465443490530603,0.3459871386667411,0.36632184617427127,0.48087076243583876,0.5952219346854442,0.5837732564705901,0.563855391743244,0.5122043929296565,0.4835383022172665,0.4909362681997712,0.4645645119644275,0.3971630359352453,0.4248050277421883,0.43500403856798875,0.4284664769867975,0.4380116382624182,0.5156279094622593,0.5444180831409343,0.5686001185466294,0.6384359776686317,0.7285798074367549,0.7908026930053595,0.8567186647821937,0.8780730501754848,0.8813476928569056,0.8737618108904937,0.8667253279405666,0.8533918972170726,0.8225349098953549,0.8202553529009282,0.8001900909789303,0.7980082461635594,0.7625488624699228,0.7372261320091177,0.7217222599454293
0.2064463178289225,0.2995293033092472,0.3051790157336199,0.3294236313307607,0.334805763530189,0.33613067437479616,0.39300612097811694,0.3187078211542749,0.2934687223158841,0.3416644441648956,0.2997493691060755,0.3230120257690151,0.29566461561613966,0.32111141737599846,0.3214286545230204,0.3151395570140106,0.32680894886213,0.261102405320281,0.26555737936677587,0.31612067129252774,0.25073880734401116,0.26751728473820696,0.25824209172570217,0.22562006353396225,0.19813351909935112,0.21973775165378073,0.40550632408656784,0.4913618359050963,0.45911535384879903,0.2803105140679216,0.10024581654483533,0.13176049315130844,0.183499562515689,0.2301447081130794,0.3671182104252212,0.5732958160021793,0.8099472451586943,0.859844585025157,0.8883555549780845,0.8665756128087895,0.8904334935013237,0.9212279941067891,0.9291489162142497,0.9271109719342523,0.8993113844207943,0.8835161634365186,0.9049737108735436,0.9214076097372832,0.9412674678084303,0.9411090732155929,0.8922666072122759,0.890575421530451,0.9060660030660189,0.9368804469593156,0.9314703507957227,0.8853507462610772,0.8684873024639392,0.8398434180663441,0.811746239228055,0.7867377344878332,0.794579721823197,0.8284827501504438,0.7538323719684339,0.7414823090179727,0.6567627948387041,0.5983521166671002,0.49902280173590663,0.45446383742529695,0.45398411731351335,0.4010431927648693,0.40831596257928493,0.4028156667179082,0.4521848481381047,0.4792584223613362,0.5104988862105844,0.545183266594951,0.5842620890482946,0.6349212325310767,0.6921018406224497,0.7074061266542172,0.7501818630079706,0.791301452079736
0.35142359688702673,0.5223359653552595,0.532439787907319,0.5219329639367847,0.5598344740932895,0.5571719039391817,0.5954052615142806,0.5219215597312785,0.48821367690888673,0.5325587927029555,0.47416996844061726,0.5155339987879819,0.5315083861033552,0.4937615831596748,0.5068297487989544,0.5243570570225199,0.5380733022669477,0.45360360327589944,0.41244549407312336,0.4909769284848061,0.4571217403406996,0.5057051581600831,0.4448763980142647,0.45703963696849614,0.4027435442977072,0.41671545046100456,0.46022114957396143,0.6837661854244733,0.7223291647096689,0.5540802413966714,0.1972811325257089,0.0533260374625355,0.07435093882713695,0.12036197553629913,0.20285428533191252,0.4483276343939736,0.6709540578927639,0.7514192274472976,0.8011670165452354,0.7879938220849343,0.7856160164160917,0.8179841368572263,0.8057513435047239,0.8435576766084856,0.8316924678338786,0.8111872608932681,0.8232924864255707,0.8740253769525986,0.909832835056385,0.9067447108396725,0.8787770729187838,0.8788818467375019,0.8784105703633885,0.8536354784419572,0.846415192817114,0.8331919033673325,0.8260974351918522,0.7917792700729591,0.7278374842268496,0.7837337291777928,0.7635235922523339,0.7645352572776513,0.7110324546175268,0.6946169168158691,0.6225958376426423,0.5238377812231825,0.42105635534139574,0.34941111576822437,0.3535123935146585,0.3046355336417923,0.28401744071964735,0.3064320597551514,0.3269325688239876,0.3348528146127301,0.3595482164030446,0.4022464995302302,0.4390599150328662,0.4346063654463419,0.4924028032943568,0.5294943290473182,0.5579800577027639,0.5688805494018155
0.3219540414164159,0.46734625685566544,0.4637745938433069,0.45760222802262,0.45680860680208313,0.4140923135209727,0.46220742988051267,0.46406743616619306,0.5040208297273602,0.5945077484558532,0.6358719438770629,0.758190500586603,0.7020544027442982,0.7456747417977545,0.7098707853521057,0.6131602850454205,0.6449698345433451,0.5067706560043767,0.5269964159939102,0.4895001066501389,0.49351574164491574,0.4736183586118513,0.3563960690468952,0.2318822535069855,0.20367024544086626,0.208527471957544,0.26568561543834557,0.4281971677207637,0.6780101010749955,0.7638745344572949,0.7624048375356955,0.832632272486107,0.901237719856242,0.8509178270702821,0.653636539560447,0.51112688311046,0.40276315231384197,0.34504888158600466,0.32218381711464816,0.38316874135858636,0.3803515654110453,0.28843007350505667,0.1933092992586546,0.17798670325603771,0.13997388062632854,0.21281733495535082,0.2861689829351251,0.3521753006115297,0.3320038800524578,0.34751713629470715,0.418029300770869,0.5534576879162235,0.5325888894487445,0.5159559847602805,0.5137137239966729,0.5043353054243482,0.5651194201323639,0.5509546653830346,0.46590949424333555,0.5717771356330692,0.5667490388539392,0.5409097740718759,0.6105576106782262,0.6655901736534442,0.6736668785868029,0.7522070566629573,0.8721337566821938,0.7977376538453342,0.8199807321164407,0.8543341818217361,0.8156796486597937,0.7612201131556109,0.7262258626372737,0.659337634777108,0.6573544771978945,0.6720372431432995,0.6947056345759701,0.6434119161846696,0.6882356349070052,0.6594380835035786,0.6616306058080172,0.669978211715193
0.3608679563429089,0.5381635675895925,0.543672993568137,0.5116024843154002,0.5177155267764258,0.48478356455474025,0.560962176757447,0.5685844575154994,0.5929600815741792,0.6973616369785947,0.6501739804425398,0.6892461640636437,0.6937384002229168,0.6530465444281782,0.6187974352593171,0.6597683102410302,0.6202614081887267,0.5661031478284508,0.5478875953591668,0.6522078010062546,0.5372959682401586,0.46644352841597037,0.4039715627740803,0.4111706761965695,0.3621884214959564,0.41087866465859224,0.43824318458666295,0.5382095056834433,0.7192400305181289,0.7904201619318411,0.799772674761898,0.9117571600906256,0.9097591545468456,0.6839580904748558,0.4032671010688692,0.301958634798665,0.3250912204801586,0.3841733491132293,0.400048074466995,0.41152641057424477,0.33794397487186245,0.2572635098926068,0.17791488848209525,0.15769770345526224,0.1839810818084443,0.241617129267021,0.30411719218536765,0.3551903943211155,0.35974698987041803,0.3641494542802917,0.45512836845729704,0.6007098827167725,0.6039843660321996,0.5696875017907437,0.5295979815210656,0.485336632204627,0.4757887381973046,0.4588769122939568,0.3536367897798552,0.3892056938450724,0.40868980368725005,0.41046325338440937,0.4044838160945745,0.45198209416765356,0.47711805266598606,0.5215434062697,0.5611302812797547,0.6289141603505084,0.7121747928100768,0.7552295257101619,0.7844440990979992,0.7850743516981967,0.7820630486575706,0.776812071616979,0.7617068749953944,0.7481815173920736,0.740824732196576,0.71015585771715,0.7139356262464349,0.696493610354969,0.6863433928609466,0.6664836387015616
0.20193568240843218,0.322685116145252,0.31154524769853476,0.26893614272487376,0.25268696380766137,0.2741405459928182,0.36831808584943976,0.3473706105709472,0.3833478419074964,0.45097837518420164,0.4538964464946159,0.5358706875473754,0.4592910725693053,0.36457393329500154,0.4225856504492349,0.41596680354909027,0.34907495941721994,0.29072602900507605,0.2851119340294663,0.3142225483790133,0.18185422037086385,0.1989545254031399,0.18724806489782614,0.10242457234140034,0.08921000764726239,0.1648061431576759,0.1782525627143069,0.35865156469816056,0.609309564359447,0.7824532361286816,0.8956193757083355,0.837155001239012,0.6197100907423752,0.4304348641836593,0.3295661606267217,0.35262833856246734,0.4217249755541721,0.6039934086419255,0.6721971202764302,0.6026424849768837,0.4884365327057505,0.4224154589727531,0.3124415755663287,0.36059428039005414,0.4072351881407639,0.4797089891037559,0.4884858943758075,0.4704609773816816,0.5525866466576158,0.6345732607136297,0.7516986973424894,0.7807540036984287,0.6838898518959852,0.7308022782702005,0.7562483061246279,0.7684918629417654,0.7552851308402901,0.6702025539064033,0.6701731711406727,0.7243385935317848,0.7556427241976275,0.8637432848032219,0.8123229386526942,0.8446707730636174,0.8840359942869102,0.921075362298047,0.9172764677474423,0.9719790097894538,0.874438842127651,0.9163566812566769,0.7773404521237907,0.7585376682658183,0.6483894247326227,0.6935063988633433,0.6680322659008088,0.690898838383755,0.6745042753761153,0.6683259824904961,0.6893801455389639,0.6966958400998806,0.7255748884553683,0.713758086561979
0.4207275570725576,0.607851128313352,0.6386049067657704,0.6466716908425224,0.6572689061082926,0.6614185857936876,0.6907482722917473,0.6618512954418632,0.5853516604480173,0.6049165356308647,0.5550510591354993,0.5924125885613575,0.586398212266704,0.5968168382841831,0.6102033918839784,0.6027584451806585,0.6224587468255386,0.6033923332537929,0.5624059782318629,0.6084447826062065,0.5613073628824664,0.6009580447803349,0.5590228718250436,0.5584788082486467,0.5159141324592573,0.5124873358393119,0.5105929487754369,0.5938295594002452,0.7964806995565533,0.8213558356253051,0.6045599037769191,0.256203003438107,0.05269228815554927,0.06612213141459922,0.10551838181244655,0.1690836706630643,0.4412222569947166,0.6182006821175519,0.6646127726692914,0.681583495578059,0.6748638933104458,0.655119282994116,0.6598277603855737,0.7180975958255578,0.7362001311664642,0.6940027582828833,0.7026337954400838,0.7649558295592558,0.8064347452129876,0.8097898352880109,0.8002193174042336,0.7597507859495344,0.6813657526800709,0.6622545747585015,0.6153183673588489,0.5755843597776518,0.5370763076157996,0.5511371616750534,0.4729449619547325,0.5135779041474342,0.49161342939706887,0.5040355432423792,0.5003092487830219,0.5571835691433829,0.5864540197693825,0.5632038706102103,0.5204679337768503,0.4980833684052839,0.5284819804053951,0.49510676504851636,0.4407957423163962,0.45579484544018184,0.43649566852410704,0.41321364069936906,0.4413483787580199,0.44680525924682984,0.46230528059468806,0.45773983167052706,0.48411790871463245,0.5014660144750194,0.540901681743053,0.5418792837351086
0.415375697525006,0.6289148278194278,0.629555998702181,0.6535213651084544,0.6321757693934642,0.6641025293409355,0.7086251359797975,0.6683232662428792,0.7068993561335821,0.7057501106743214,0.6362561617092948,0.7002564120616204,0.6258964015969857,0.5970248533393702,0.6192126355582442,0.5874333506283765,0.6360487179186832,0.5598990985022113,0.5181417956661235,0.5435021292593811,0.5052899641418529,0.5223186897871224,0.4976498303026393,0.4524379562827019,0.45506579457833846,0.4670013754447817,0.4994494577853578,0.5680417501219925,0.8901027110513163,0.995994977788781,0.8216167372932434,0.5679861750693145,0.2775737125740687,0.14300194668236665,0.11090834237753411,0.14186838865951956,0.4128921506252745,0.5664439345680452,0.5619753999290695,0.5101673912295274,0.4395499720427196,0.39470109048565005,0.3994086466668274,0.477517284604917,0.5472356841905401,0.5603700485414935,0.5713046167988604,0.6289989761506957,0.7068991189359936,0.7459508608318057,0.7140616176242729,0.6428471575957451,0.5877785749309736,0.5692226327849703,0.4308465546579327,0.43549383127602176,0.48527437857418754,0.436131232847629,0.43129931595624765,0.4217238144173242,0.4211166982401814,0.46380470592889145,0.42590130743418086,0.467703580378517,0.49834605418284694,0.47858897229398467,0.5674790641155287,0.5785918325157793,0.6215384988728505,0.6402781940024638,0.607266371749825,0.6010070698500759,0.5954802611617576,0.5682800076256374,0.5655872877824104,0.5614898675084583,0.5720397425696369,0.5364962418114294,0.541627992145779,0.5474962610317505,0.5643503809560977,0.553136852870971
0.3287912379070367,0.49146895010597014,0.4982883922679383,0.47540791523019105,0.4600117980862347,0.4412529227552633,0.5010940125979472,0.4725951284964835,0.49674673783365964,0.5708644703467689,0.6471586591479237,0.7362827219176531,0.7243628415751582,0.7699110366103967,0.7358304067317357,0.6651598414897595,0.7005626154842562,0.5771141597747843,0.5533768548342624,0.6187635468797458,0.5439542567349517,0.4682219529898353,0.40040684511636854,0.3028094396928419,0.2663806425665527,0.36001083199850153,0.45257509548522595,0.4646989250064931,0.6502352835533287,0.7796979468725844,0.7818570509984077,0.8431047833191794,0.9351393399754155,0.8724340638609488,0.6445156383717877,0.453443873127543,0.34504646713368814,0.3249970367424948,0.30501040481477004,0.3684178306846029,0.35395673691448826,0.29300063304514024,0.21987815125845245,0.18580267416808283,0.12888401799495786,0.22529723630113335,0.2615218308898587,0.3083395544918454,0.37383605173923096,0.34370416471184684,0.4083777869099333,0.5853505778182477,0.5707430174528298,0.6139761256928528,0.5382303342849093,0.5107798727133581,0.5817266486526448,0.5381715224003552,0.4935041545652485,0.581122038991384,0.5871583902409901,0.5755138156672192,0.6135570097704341,0.5996283708587253,0.660303771388634,0.6850025735917207,0.755722366333313,0.7814512107764009,0.7612201980137072,0.788992992801754,0.7573975532412119,0.6948800749810612,0.6759505639135732,0.6600078570654213,0.6529091241011056,0.6302762699713378,0.6226110771404739,0.6379203310622437,0.6432370699605604,0.6110857592048151,0.6426508116744545,0.6322395787909745
0.3398739112538043,0.48759605463142475,0.4940034044078241,0.4716227450023407,0.487192345893007,0.47917541351665044,0.536534845394248,0.5273197849915892,0.5276278181773889,0.6102521560466043,0.5059262833721082,0.4943817434756543,0.44317395600069376,0.4170188935446213,0.4899638811697168,0.5065012769243751,0.5302712881000433,0.47085723788294565,0.4087941556091125,0.4449085164943652,0.35801402048004966,0.3524100651798669,0.35248116433112936,0.31712671210500376,0.2950887770241951,0.30719656165542125,0.37647313730142584,0.47521297310958077,0.6879631537289688,0.8157624557413369,0.9583659630712658,0.9106979809919288,0.618737930592973,0.3655565629356442,0.25219669885916274,0.24129880601300635,0.2900333242772002,0.4906506907689765,0.5931976597853441,0.5353267943906498,0.42238456980039085,0.3682004709796963,0.2640989409696092,0.32316964275417515,0.3648040057575204,0.4333856441925185,0.45650662396506325,0.45363739214340426,0.4859795168138106,0.5401432544950056,0.6490400434920209,0.6504520128638678,0.5643932131192998,0.5359068490077783,0.4862811080245035,0.47918371610066884,0.42227201707983697,0.4349010087107017,0.3861172408644237,0.4073975058287951,0.46668197826759594,0.46518922763941195,0.45757797723769045,0.5073898378909465,0.559665011339692,0.6171194962575313,0.6843344185318383,0.8632294451133979,0.817809001333323,0.8741408817500377,0.9143901429600725,0.9111254202635174,0.8460257231567929,0.8029210327174472,0.8209036362575184,0.7418418597839749,0.7568569728756291,0.6941725590405105,0.7103397899412648,0.6736071523503527,0.6679720287023257,0.6510546403590436
0.4041968649866005,0.6027521250491439,0.610654862190747,0.5551148582424795,0.5612033545051468,0.5465304612078892,0.5957390983734869,0.581207283438396,0.6206937277736339,0.694354432114901,0.6655554490627866,0.6704455674055572,0.6323878928041804,0.6617468136479469,0.6343753517727952,0.6304803185163171,0.6678539503882623,0.6009534083777353,0.6271271542536846,0.7465349201034117,0.6878817012716076,0.6993268318309949,0.5653433005357482,0.592126151646474,0.5659217623568341,0.617315378046234,0.6318315073315948,0.6543424034802441,0.7817532658463598,0.8353120635274438,0.8323808159084031,0.8650018565385513,0.9113833190819226,0.859307343448222,0.640541837509633,0.2851838199777387,0.07422762074748657,0.23193960273608827,0.3177363186356773,0.26818174749001367,0.25193080094133735,0.2238350955895707,0.18084736498007348,0.21663178325524435,0.21938345230149026,0.28841846147986083,0.33916319163995445,0.37734683483628995,0.40960985499735947,0.3811495140377732,0.4537220396939997,0.5510588100075866,0.5952720554079098,0.5861499169062748,0.5305358114741012,0.4315727576825204,0.39676480863420016,0.3806537413135491,0.2704609125723791,0.2690350331519127,0.2972312660568732,0.2805277858347439,0.26225164867008177,0.24863576120019482,0.2783537528713972,0.3034946147369064,0.34229998159011266,0.4069554987064783,0.532172196400619,0.6247967512253528,0.6641131555822477,0.6945365786839279,0.7273838438841893,0.7259357757530829,0.738002364133616,0.733977734943694,0.7412011134994496,0.7450928839272883,0.7525567747681228,0.727172637252965,0.7111844143246686,0.6756314411093357
0.3260886550192033,0.4937637094478262,0.4860022702163046,0.45641038186128974,0.45515821415716573,0.4201254125330667,0.488508275299394,0.46739163366927283,0.5052577528310983,0.578605401962341,0.6310500392932352,0.6618312305341923,0.6637555192064852,0.683138637005231,0.6121250099358299,0.6358324385189039,0.6151781170216684,0.5145457880947462,0.4904159456183298,0.55767651992596,0.5489907125283797,0.4604202497295906,0.2871325752770602,0.2631079753536207,0.3216974550575104,0.3533098743808292,0.31631249971173786,0.4248795963548007,0.6983006991048725,0.7591825458174345,0.7696018822909451,0.8931678581799556,0.9823126929204269,0.8702296813572581,0.6287156722715503,0.4901182898440045,0.3581439283212797,0.3563646964187681,0.35574396861812185,0.3909851025357193,0.350135579862901,0.287817826272701,0.19079565374947882,0.1957603428201784,0.13266016798600955,0.18339890442396545,0.21765424156422314,0.2749191826423452,0.31161705039839666,0.30746849039282753,0.39150378294038507,0.5011572179725285,0.5223506925776392,0.47297993974344765,0.4624384443624365,0.4832661119178496,0.39811644449348293,0.47272234368978205,0.4091855730289223,0.40064396101049926,0.44185537086999704,0.4640698850657482,0.5420978683592752,0.5784684729892005,0.5856846177845075,0.6123190079028096,0.6765388251954321,0.7444939239604884,0.8291043689521516,0.8531737198587378,0.8652983325839054,0.834845097334747,0.8204317239441481,0.7834290764435675,0.7495268295003596,0.7525736274001433,0.7703499801495406,0.7281757175973238,0.7404474943314645,0.7199078727322689,0.7003615699882605,0.6805856552080722
0.18497326211642287,0.266495548054053,0.2869153557205524,0.2299548701410039,0.29623707721753917,0.2155644931047277,0.33679280771165376,0.40203872633506804,0.34911000151821014,0.49835501817262134,0.36302914216634263,0.403831405278543,0.3595318558709853,0.367407387227163,0.3443544159904275,0.3145175982858258,0.3529328301242135,0.2880915451493468,0.3346715211088721,0.3322642874119218,0.2503256017589015,0.38664577812678924,0.16057824642233015,0.18139764369821387,0.19719243486867005,0.2599693192268047,0.21551474390280778,0.3979925714581689,0.6710577958768353,0.7873084650842389,0.8202133507900818,0.7113582866059671,0.43310039935375755,0.2022644162710684,0.16721751627845716,0.20929794721676176,0.2754418303935291,0.5614506084151799,0.7225498681544946,0.6874684300424301,0.6588099309436661,0.6375115324583676,0.5899702269133577,0.65456032301401,0.68319982912641,0.6810257455606792,0.6543005923027538,0.6467830999522582,0.6978449634441959,0.771849283227172,0.8169566284303608,0.7914027344851534,0.7233446404683891,0.6996326826605213,0.730753225179138,0.6420037727252934,0.5969917149540752,0.6231811267641056,0.5972621115154098,0.6251383829136659,0.6249306859301224,0.7012819202427852,0.7115566070331454,0.714736717567007,0.746704743038762,0.8117780828624797,0.7832129742396314,0.8075860987903751,0.7867762853903828,0.7557645890104668,0.7488392771237653,0.6751641164302205,0.6818444964225325,0.651249797808179,0.6729350420697573,0.6637297109462317,0.6864906569084072,0.7257660926297786,0.7490359129911215,0.7470744572026082,0.785504100780197,0.8046366401274773
0.6776731673716994,0.5109333194751359,0.5198238524939713,0.5012012445601335,0.5073138175045538,0.4400387710240177,0.4907274571519613,0.4861666800814601,0.5076428433086104,0.5516037947686783,0.6009225155187425,0.7176737844300978,0.6864604512628619,0.708474712580759,0.7139691063057864,0.6738893373410988,0.6896325783364791,0.6069525621700166,0.5884933300994063,0.6433755583718304,0.5619757066183576,0.587874440444908,0.5198284322637688,0.46646754581053895,0.35829880432326133,0.37861193436879875,0.4495027183758519,0.5146646270524451,0.7129019328262769,0.7891015478230667,0.798499093817712,0.8224703709072764,0.8477364246752725,0.9463258466112233,0.9481999474461178,0.9212227845933296,0.7093000182269008,0.45916975862470444,0.3838888326182699,0.25044059458518086,0.12405948177996984,0.1504738638652111,0.08902200661939441,0.07412071050022018,0.05387388581183594,0.03702628001704544,0.07268536585388974,0.10259033589811978,0.12837710463156143,0.12859948904860463,0.14246522314184124,0.17359482424889866,0.1570696784742068,0.3220958870231817,0.38377892385032425,0.41365793129540723,0.3714115784243903,0.3652277113166491,0.2898059856582131,0.29228940686294214,0.3082788602287152,0.30746478678069566,0.32920843619258155,0.3527037104202789,0.39254242653185634,0.43154526248393754,0.4884050035016243,0.5944248436581767,0.6742086179486075,0.773399626826934,0.8012069519913295,0.8285684693730273,0.8542031381132338,0.8500600769243962,0.8583659568952442,0.8356235548692335,0.8306603855179604,0.8259022840243476,0.8265486976778144,0.7989457388770256,0.7772253302363239,0.7437735808830193
0.34238973752596813,0.49857590451099404,0.4997232310368823,0.49414980676860165,0.519058121744937,0.5200466751598463,0.5633905514601588,0.5949430575746444,0.6100216903492179,0.6137924067685518,0.5675015036198363,0.6103963772318942,0.5600108913046773,0.5755048708839061,0.5235587515614429,0.5334307462895657,0.5199502457236962,0.455385562258287,0.42510264857443314,0.47207040582689974,0.36829631098213544,0.38096991492800125,0.36074025791702297,0.3479116165520936,0.2801199640981872,0.2942373174618343,0.3231282154038053,0.4634056091065945,0.6941618237666819,0.8690725693691157,0.8725269063918922,0.6651456231671344,0.41633924827075686,0.2525328527183327,0.21456357897621703,0.22831205148534262,0.34624027182155515,0.5469477182328157,0.5966396892523151,0.527521406269747,0.4399210979189718,0.37132838801892065,0.34114943370264095,0.4083548235848188,0.45717881165940183,0.5019083782284616,0.5115657179819255,0.5398947227282145,0.6170480667064329,0.6866290961385342,0.7451139857024625,0.774159556331098,0.7346595129793813,0.6508726241539883,0.6327640576143154,0.6196830542503637,0.6185973624816619,0.567845845364866,0.5167129916908695,0.5524486467230043,0.5964692674098483,0.6402538850401659,0.5943337856037296,0.6388347476090832,0.6624886069097017,0.6362240432650363,0.6969575471142364,0.725584422574201,0.7389977149229225,0.7266082254007195,0.7085856764908587,0.6803995497140909,0.6387559885735405,0.6274058446751558,0.6079627441302177,0.6214114537287413,0.6352898614339451,0.6083471443497814,0.634405830189566,0.6567254463272091,0.6446254427954806,0.632768483873275
0.5555438477239778,0.8027475382870365,0.8546201263380089,0.8206044163303261,0.8505287387624569,0.853531539516294,0.8772505421312891,0.8380891998323077,0.8403199708417532,0.8068622433043438,0.787885109975133,0.850590403033042,0.8156330594227936,0.8677126727790129,0.8516502868773904,0.8894162307693272,0.8964852535895924,0.8622968689223153,0.8593518452474147,0.9388970599353228,0.8453887604212994,0.9247453862569088,0.8457976391097326,0.9340518124270804,0.8244947029917837,0.8181647567702828,0.9389250205883211,0.8162699185642078,0.856036824471667,0.9548434418201013,0.8810750687927825,0.6100344585722308,0.19931976705475607,0.0017385678568071494,0.0,0.003315504758354182,0.17695936318188976,0.5069237905147876,0.594639815049139,0.5950896881695873,0.5594919128042892,0.5437283374930681,0.5305420163237919,0.6093443854424767,0.6490211252273288,0.6151999212004199,0.6269017290637481,0.6214819858899114,0.7067136633447204,0.7694884709727143,0.7574008405996595,0.6470763835585194,0.44733012834543934,0.31649276681211314,0.28887423104781756,0.3190290800344648,0.22268679200524544,0.24668298889100582,0.12800779141622393,0.19500335970281657,0.1110229164927955,0.004720046512349474,0.10250440686654505,0.08291681954226127,0.058607842274460586,0.0562843164244472,0.10167834489132266,0.24190834528996286,0.2544076319443595,0.30084672956571246,0.3652525976264513,0.3733649213633754,0.3708657311974242,0.3719372442545311,0.4232440785895756,0.4179448708145833,0.4118833055103797,0.3927308249625691,0.4077756256079765,0.41612809283298413,0.43597852015961025,0.4232410841599619
0.2419493992995278,0.3450838797530229,0.36725604382718413,0.3723671444418659,0.39112089902270225,0.45032001984148956,0.5171949006681982,0.45996460780315307,0.4598296801905438,0.4817824682441713,0.4112035768025254,0.44904512502073735,0.37051981551542956,0.3657044049765721,0.3685638507202848,0.31564149058348895,0.2910632755871078,0.24190111676623766,0.18881472626602874,0.2928733778792785,0.1826257017429871,0.18584250602182106,0.1441366786888329,0.10202337983893672,0.08885529258656033,0.11860133678157203,0.5640079555220516,0.7093249281825618,0.5623801678654028,0.43859849122941763,0.26292567947849266,0.22015164571902557,0.19827332766639882,0.20487549489570567,0.3645099671326977,0.5478469052440473,0.7248511756351043,0.7637610395113871,0.7505733057367782,0.7374623916961989,0.733767346221722,0.7436866006119957,0.7813403589885135,0.7850356856357629,0.7946361143163553,0.8063245590437396,0.8477598009213256,0.8667276182594135,0.8935562579116274,0.8886653305397128,0.8732294835041574,0.8741103300743026,0.9152716595495558,0.9770815716976416,0.9999999999999998,0.9265654947423991,1.0000000000000002,1.0,1.0,0.9736082230241287,0.9572652152110322,0.9596183931281296,0.8670507785930626,0.8623002888822942,0.8263386654960675,0.6505672214086962,0.5653369435321569,0.4405596638928664,0.4446202238199654,0.4374391712939605,0.39212528546952696,0.37711847639102364,0.3844151621016025,0.3902183064372049,0.4267268730720963,0.48589373870094144,0.5433979099014046,0.5468046752989336,0.6064773233457941,0.6339447680417915,0.6691033277820803,0.6840243706358449
0.39217780387014256,0.566952292401942,0.5562147056761839,0.5644201662443966,0.5431839657629606,0.49606846636424456,0.5374518796400996,0.537569515234334,0.5735747483580317,0.6331125465002012,0.6966516964087122,0.7749511013677897,0.7422150801476594,0.7706904235814892,0.7304885471344136,0.7382221506251251,0.7065857527303114,0.5471188849094453,0.5564539212130326,0.6323526462813454,0.4909228274703391,0.5025405024171188,0.4294380083812507,0.38088880483607696,0.3180738148861059,0.4056288410256064,0.384865095890074,0.4933435162594966,0.6890709733840307,0.7624626216924092,0.7685079514076273,0.8596795890722446,0.9297693713704746,0.8317932438232473,0.5809559254668912,0.445395741007108,0.4133465621657686,0.41460419835501383,0.37741078834743425,0.4044403484932928,0.38775599723948617,0.3046587957839554,0.18734429360250193,0.14341243715703222,0.08944464064568869,0.1715319257331812,0.2156610756280759,0.2233966734857834,0.25857655636197546,0.1918678650261541,0.26235121656427,0.3622536626785231,0.4414449553696478,0.43855696934253297,0.45462178850106433,0.43665860131993944,0.4782543478562242,0.47667055974824146,0.43519612558793613,0.4284991670069196,0.43568472336316066,0.5262241321541962,0.5354071295922016,0.6229653870300553,0.7100528695414273,0.7392698262960096,0.86585687330753,0.8861543521566935,0.8959043021873367,0.9128081229187254,0.8641992832523885,0.8262351394200649,0.77898884866763,0.7331814114667361,0.6741535522635305,0.6262557395986315,0.6024180142446411,0.5834439373170537,0.5815608180425987,0.5795078926471331,0.5736950951808479,0.5370658245769188
0.43140839332583947,0.6346134165427714,0.6794974325279873,0.6197372994018041,0.6632164308736844,0.6552895131057221,0.6850449478290512,0.6768869555598623,0.6955113507735469,0.6453807232938789,0.6284804567719723,0.6620192702582046,0.6464677909935258,0.6060691170453588,0.6194842554481449,0.6436236220171285,0.6664429950043508,0.5976159895064908,0.641603479056376,0.7436552048717606,0.5767506369953845,0.5942056273060895,0.552532091310139,0.6827665540767753,0.5326892341658132,0.506120139587519,0.6164626419979204,0.6077067540162923,0.7687582118498989,0.8199263469145287,0.8853171175829343,0.8726363218277391,0.6254124834293017,0.2620473051998621,0.07322582041187875,0.08561995464573013,0.16640231928715665,0.295498809122823,0.4602858147150589,0.4757471506507561,0.40104644671022394,0.4218499717670392,0.39112091748948985,0.4445450386374154,0.5053740204383051,0.5122569056761884,0.5370030154129003,0.5476179452333767,0.5738666748538233,0.5818355026818574,0.6301757149597935,0.70293531046176,0.5655396661795185,0.5134615311561711,0.45254700320685387,0.37874667506346,0.3687282013507328,0.31795691286141603,0.2247547588712116,0.2664782997640964,0.25909675697379986,0.303001628856038,0.2861834496904485,0.2734621850701038,0.36623639525832685,0.370913078060534,0.43806450517552253,0.49913279851648373,0.5804623542331142,0.6243817644682853,0.6490920454349369,0.654436650878847,0.6544655852070687,0.6205554093400598,0.6154663817628419,0.6375201369572161,0.6712405263051109,0.6381155742292624,0.6430588779861602,0.6565363040689931,0.6628066385750772,0.6591059263361353
0.3798472381794819,0.5558181213255065,0.5694845862515867,0.5251305667669109,0.5774277977803073,0.577772753483101,0.6147768501000033,0.6008140006675922,0.6101223155071966,0.6058422848536378,0.5670873935234141,0.5928835002159933,0.586749193568777,0.5824358471237581,0.5216865561992747,0.6028379226609829,0.5887734553971675,0.5696820690354663,0.510285575096907,0.5868770417115814,0.5165406379754492,0.5499342925394836,0.5099761447668582,0.5031919694052874,0.41981172894199104,0.5106912967965025,0.45052250520024867,0.5361459758127396,0.7704791232957814,0.8752322260110929,0.7766736058685187,0.523628325107214,0.18076882914019277,0.051141146813409644,0.10827236458243694,0.1655701495408881,0.2784179737876533,0.5643552879971041,0.6236603745615199,0.624091644602207,0.5971527923133298,0.581897570824589,0.558788171007881,0.61699606307112,0.6451042735073945,0.635312651022609,0.628501606256906,0.640137768410026,0.6728501741345232,0.7639671004793918,0.7504529801051629,0.7185366036199341,0.6680976441498164,0.5806172674883945,0.5264309597228471,0.4929956373870871,0.4355849450337804,0.5199986671037139,0.4186284733058933,0.4816238090807985,0.4817926096761227,0.5565270368428449,0.491560049603162,0.5487748733011111,0.5992712390605034,0.5755129473184879,0.63887982089663,0.6502500452484166,0.6760550083673043,0.6488934080247728,0.5965189719405538,0.593552084067101,0.5492247928062486,0.5536017882661203,0.5295418193863951,0.5575160123435499,0.5715121230306894,0.5310571257729662,0.5666695288915741,0.5715838369856059,0.6220602679185724,0.6070617518265382
0.9868734201820062,0.4085550720249689,0.40655212844486455,0.3995236204051719,0.4085051964326669,0.3422745444967225,0.408495080093988,0.40325737412689566,0.42876930174249606,0.513887920472543,0.4977119546937783,0.596997136575527,0.5475779776938855,0.47755210223620514,0.5159636821146983,0.49370121514724674,0.4761417576417004,0.42481158874135116,0.44686507618226534,0.5848229365473511,0.48003857063744343,0.486989037569508,0.4494698392809884,0.39317863528252195,0.346280726696603,0.3359115399242141,0.4436050137622743,0.5316364215888583,0.7328222359203203,0.7909409048329739,0.8102733761282934,0.8274936796227405,0.8566250906176106,0.8729269573459068,0.7908263482541319,0.7320821370789132,0.4283948749164601,0.3172207683673802,0.3366174966451718,0.2836509713064498,0.20302338636283357,0.2314390707928955,0.15956090784014132,0.20352424769246558,0.23904656712918315,0.25460282392936123,0.28982082976178025,0.3380533009328406,0.34618844375348445,0.32077537397749006,0.3292632710894493,0.4092430761376499,0.5002326683325337,0.5555144699492127,0.5376987004361387,0.5198766900624296,0.4804510324420712,0.4197630822892816,0.34878098483207337,0.34540663793933213,0.36515275877350306,0.34962501253945555,0.37772977013249553,0.3684307063732253,0.3748846976659881,0.4273079154534767,0.5093151793840196,0.5644359565888615,0.649252309048487,0.7465705801072915,0.7764557763903018,0.7951877512971264,0.8408776531422919,0.8265295857412727,0.8260170564294997,0.8184648146938736,0.8287717347292345,0.8045541166057409,0.8154785378947247,0.8183033555020096,0.7883463905168366,0.7672857780692524
0.3357198105184386,0.493834600906507,0.5190008390857322,0.5168530027824364,0.5407084680824945,0.5276952582557539,0.5753435670133076,0.5588956642338677,0.5143592992114729,0.4805967741313064,0.4317180599940014,0.45410723237622896,0.48891545152571053,0.49566876386890046,0.5317077527773474,0.5506952317363359,0.5228075682088605,0.4336624073766907,0.4142829403046463,0.4931642325527933,0.45012095160993604,0.4613643011886076,0.4248379885053072,0.42070013820811547,0.3828764514805432,0.3796768025247267,0.4039253460042258,0.5928230575686602,0.8644639860036801,0.8803193188537659,0.6364510581411902,0.39813233596801667,0.22943299497997238,0.15967858550262892,0.1460027552328227,0.24743758529199011,0.5339864066295479,0.6152287633703016,0.6222094784855441,0.5684463479695826,0.4604936239441799,0.45717130849170107,0.4697835670570707,0.5725681833027334,0.6275015010391651,0.6045516280088464,0.6215261941838892,0.6957153688082077,0.7781363032618772,0.7848207521280324,0.7534796367606217,0.7305714210617992,0.6640493130205068,0.6104107993319536,0.5852311680873159,0.5841252641512171,0.557708759640574,0.5214065531937987,0.4533468453086887,0.48593397232533064,0.507838853470977,0.5119667563190861,0.48992420063901143,0.5277020649032214,0.5389848819279591,0.5581837974915103,0.5669355283574193,0.6539456245858211,0.6786551664405001,0.6989413297763745,0.6938465513913529,0.6851122217234784,0.6797847345931316,0.6697756649433481,0.6581066847128229,0.6700839732396614,0.6712371400585713,0.6664516093039985,0.6944369432147386,0.6846280111549731,0.6959575077004134,0.6875553742609961
0.35618964607345616,0.5196648010821445,0.5294844005084345,0.5174839186498205,0.5417063709400105,0.5460855161703109,0.6039030830563411,0.5787008604503264,0.5031930065229194,0.5472419426422371,0.5009920576318958,0.5132499723351532,0.5166298130630578,0.49323626343642313,0.49339950500848323,0.5237991863548235,0.5374728516192524,0.48628302622989306,0.46448782063405303,0.49919540434055054,0.46426838468526044,0.49035596719874475,0.43185818473308824,0.39568517827658917,0.36916676012567673,0.4269680502193925,0.4466868817418104,0.6151672605890289,0.7787409351794803,0.712523242108383,0.3943234977707795,0.10095302867878087,0.06581016500610537,0.10785720763154849,0.16490728554964662,0.3460300597725632,0.639960817894919,0.6951105062155756,0.7438551647421623,0.727637201555819,0.6756626628648411,0.7515671616182367,0.7370779525458528,0.8060021350288669,0.8124183303481415,0.7503838146614831,0.770603070257547,0.8251198883173079,0.904143600927398,0.9090420619308306,0.8803030238590006,0.8511839471617387,0.8566958489728002,0.8479755373309449,0.8152149445010048,0.7791359845109695,0.788446030233608,0.7530837254831035,0.7411357647545509,0.7351749297618158,0.7149744344898418,0.7668737843242058,0.694417085746835,0.6788854775225333,0.6456661087179479,0.5687831618950603,0.4787189981154485,0.4129849830399571,0.3993231874753627,0.35707632332851436,0.3128385948122636,0.3136958599333118,0.3379677945608297,0.3494726188984335,0.3866002233652729,0.41202743949916576,0.4595126889289237,0.46760264526522716,0.525845892761448,0.553290977028826,0.596520576550307,0.6088155028033915
0.4619887165855311,0.6813459924954848,0.7206592483623768,0.7162677072293107,0.7426677274980173,0.7665163384810117,0.7753388231162079,0.6649242274015816,0.669676981297752,0.6739500188101819,0.5856409555437118,0.6780878527222841,0.6613073424252872,0.6804067551481671,0.66285620452441,0.6730280560599897,0.6980917488975309,0.5732692042106927,0.5830504217497676,0.6507637504178293,0.629269821913602,0.652202275823864,0.5830800639980774,0.5837555454257867,0.5397656496971082,0.5620309462439641,0.5321783033173462,0.7667580403485909,0.8061993297351467,0.6228171834862707,0.2939974703426047,0.06887437594699408,0.04806973602684872,0.06865204005778514,0.1095322176957444,0.2537827222834551,0.5616602299340736,0.6854511485101756,0.7586982843892146,0.7661127882888286,0.7494281061667762,0.7845435541527137,0.7454136278509214,0.8027333655765005,0.7892374730041496,0.7643550754309574,0.7517063950697069,0.7973302871661279,0.8597261770986937,0.8237090549963273,0.8036793959438064,0.6979979837281605,0.6648201142276607,0.599599568792146,0.548455901091776,0.5147281391268543,0.526394020137107,0.5040685997288569,0.44681740352217053,0.49168435966384805,0.5565202650913229,0.5084677892622939,0.48732651086162826,0.5258133490149677,0.5379182003836972,0.4339332327809229,0.4216420640607279,0.4214881815041934,0.38777552817005617,0.3567877134271378,0.30655372164009265,0.33318052414393545,0.3447196058607037,0.32120499185447016,0.3408269223138318,0.3606955452208032,0.4050377162432349,0.4062107348896721,0.4304411954661175,0.4478973332885277,0.5016736942285264,0.510536965329926
0.3445231620883898,0.5018361848081017,0.5097587443942899,0.47914583029290947,0.4978156907057245,0.5058495156172677,0.5445307832833648,0.5552521389101103,0.5990918314512285,0.6084796930183584,0.5552584793172307,0.5961468329120875,0.5733693187429117,0.548763261803215,0.5199783734157084,0.5471753064179603,0.5243250600185527,0.4782121761276061,0.47657118862012837,0.49731428085730556,0.4184520670603937,0.3957553911972339,0.34819177442143784,0.3486215690117977,0.3068855177386331,0.32274436560452596,0.3713274047851,0.4632784450254282,0.6892316731960952,0.8477597174287977,0.8915529391621851,0.773135014208739,0.4658571845806193,0.2682087055869632,0.23193371127204443,0.26014961931490066,0.370580291790902,0.551821750499892,0.6029859126259358,0.5267987461088645,0.42699286988712726,0.35886460840976986,0.2858536465887247,0.33580452352760193,0.3782557750679391,0.4373152673591189,0.4450442373357065,0.46010725058519897,0.5288017674586616,0.6359257455956635,0.7319555267318644,0.7437684681991699,0.6953845740830908,0.6456994433869712,0.5868431556044322,0.5914331215689745,0.5681101221016464,0.545378428161336,0.4820897175581021,0.5198477902607526,0.5231003547812524,0.566237520206733,0.5576568228276886,0.6021661699110852,0.6164721354978523,0.6477066786946959,0.7223955764551375,0.7497679564700752,0.7689894995361584,0.8173168813027157,0.782285319356454,0.7514199906835538,0.7354147693252897,0.6976561505582464,0.6899880183890488,0.6677097581560905,0.668489652491246,0.6415361408392828,0.6425942812450767,0.6414833187528076,0.6449965153720886,0.6163671449909068
0.23634938684037982,0.37953225570784516,0.3676436795363477,0.37566534044373845,0.4043687043774995,0.3802714722908702,0.4628718774310487,0.4365468133570574,0.41887661928945086,0.4578664334265674,0.39313028707251746,0.41522735449509085,0.42172994137323533,0.37006474002061224,0.33098966195673435,0.3747290700755246,0.36719455131227136,0.2802976555960048,0.24484216748881232,0.27948634122201826,0.22454028812160748,0.20262076847793908,0.17612003128752368,0.17129766364478927,0.136284887457846,0.16781832803887392,0.14818159129914743,0.5352608918921966,0.8321388638622597,0.774328648443473,0.5193037791925623,0.32877773927148446,0.2754967671022377,0.26566322827520383,0.27896709412107634,0.44844241860487055,0.6793834836766066,0.7007846889133763,0.6950005212004561,0.6475006764783656,0.545920396844475,0.5415364551109723,0.5331182201139117,0.5787803351579127,0.6141412913569447,0.6154988477644487,0.6535211861619353,0.7320067792584828,0.8116436661547446,0.8392363848561295,0.8317041709130604,0.8138674597514096,0.8013347036482317,0.7746276428237585,0.7853636441267904,0.7915196602614252,0.7877232546262236,0.7349711843189242,0.7345700952080221,0.7968446341781295,0.807983273427456,0.8273030050042941,0.7876339778234072,0.8782309083141593,0.8658335446893347,0.8657953743499889,0.8725266056705472,0.7987843268330892,0.830938231103328,0.7337905815980565,0.6513624567231429,0.6335266554648946,0.5980358203262071,0.5788775426211331,0.5830947581369339,0.5788248745634039,0.5960199835953286,0.5996997768986209,0.64163026813185,0.6396364713728577,0.6530868861533942,0.6674284381152993
0.3427414509446676,0.4882446973565489,0.4706707354388867,0.4992794703800909,0.4804107004723451,0.5145687463449726,0.5805484723777254,0.5259011106399697,0.5503138660357302,0.5101366630693527,0.4608607131813882,0.4866081426534894,0.46147312695239734,0.47262934108337207,0.48563221891711794,0.48575819198579484,0.5139187390926849,0.4773777842768083,0.4321352314255631,0.5144156783484657,0.4614097425436309,0.4614456089270565,0.4249161458002979,0.43465705015634404,0.3585065374436325,0.36667280042835726,0.40420712030497874,0.5638048583520956,0.7313730747593622,0.8241119633708494,0.8443310883251985,0.7513203799680845,0.4993651206520535,0.23389975121400697,0.15432837289365398,0.1808013615257016,0.38188979717700855,0.4756810098074713,0.5530152799830773,0.4979502014431554,0.4457533198412653,0.4234561026296718,0.3978757404688029,0.44821515476273754,0.4794480264618512,0.5102130207378592,0.5145119826453566,0.5366618443322229,0.5768960764926342,0.6420247658080085,0.7447633228943482,0.7607225256232689,0.7252852917369905,0.5958061218097157,0.5437545169277498,0.5571046435081908,0.5201630805095544,0.45595023807823976,0.32844742017959666,0.4603964646747668,0.4630342044395095,0.4333558283567337,0.49639472457555245,0.4915316152851621,0.4611133942357647,0.48327098127375745,0.5842988252776027,0.6599266294987276,0.7194366501740741,0.7540631340413245,0.7833680427879613,0.7990261933407329,0.79646151906577,0.7153023940250193,0.7344487023734356,0.7458252094178072,0.7566866164559674,0.7354009230203136,0.7468740218063112,0.7358437378852561,0.7327586327529731,0.73060853661261
0.3355485021620171,0.4994728801100221,0.5259833066654275,0.5127027200130468,0.5438789288599781,0.5386555271630398,0.6099767334494012,0.5639899057801873,0.5434312802010067,0.5494006072690617,0.4862274643445494,0.5136683004721888,0.5099475393119278,0.4956161802354618,0.47681076718651105,0.4925761640245906,0.48570348771853916,0.41243919283981445,0.3823028495751353,0.4329692793283846,0.37488013544484194,0.37507789473324954,0.34189493472379273,0.35600028818106977,0.28787561627887676,0.2891466004816199,0.28653445385730586,0.5702283683020302,0.8540416186643359,0.8072444763979576,0.5085158151054199,0.2905874224648791,0.21830299381493112,0.20189775416633216,0.21846954364517757,0.3495311595385838,0.5903976330248514,0.6436799187963813,0.6453458571060293,0.5949739224263588,0.4906950763432665,0.5075385792452886,0.49885353261519805,0.5699781162657156,0.6159258490702596,0.6056405501210561,0.6397075787889419,0.7016444812411596,0.8071021934082294,0.8081842179992811,0.7946515552209641,0.7617869264862653,0.728591477077318,0.7297466650638773,0.6779037159138837,0.6976157106091605,0.65661040787401,0.6345000405883033,0.5749672297880308,0.6089212980313508,0.615245203706203,0.6469847450342273,0.6325942848997388,0.6997927566797773,0.6882502676041263,0.6715232748640794,0.7000550242346497,0.7068857262513017,0.704795445945162,0.7046579368116648,0.6653227252735135,0.6434920722426234,0.6070648919088668,0.5863419681448273,0.5711803608752319,0.5615180092851636,0.5770551687568415,0.5651049669569325,0.5980530121493318,0.6052924082873132,0.6140252166095189,0.6117770540823334
0.27291138746412574,0.3767140556768148,0.3973551175080011,0.36326877666102847,0.34220954687800265,0.29346706044030246,0.40293795824893786,0.3722175882479817,0.4323682410210932,0.5465091313653896,0.6130136118206151,0.634917612912741,0.6046333859143914,0.6501013232583057,0.53150090349954,0.5038402452597677,0.4783438759866595,0.3658278431075842,0.3335452206691547,0.33590747964655865,0.3367229999143458,0.23392026594136522,0.15282676515875598,0.08964209405701284,0.0955495779436285,0.051634687169546556,0.11561372158440142,0.27607089501757875,0.6146064297678188,0.7502699246259634,0.7566578260094199,0.8836410379481814,0.860970866874389,0.6385362337807241,0.45207162525293465,0.39461315703590727,0.4506676892072674,0.4305924588592627,0.49372682343628294,0.5645126761273123,0.4690103261138302,0.3532955039565857,0.27748651456493334,0.2551417896587119,0.3088131265931243,0.3335553370646084,0.3912738764027637,0.42342721043011194,0.41534183927921836,0.4165295159980536,0.5116165102834882,0.6274019629025582,0.6288852745068125,0.6107244249451284,0.644506197689815,0.7336006573192604,0.6346138147845823,0.6351542302292302,0.6207302341463776,0.6761950529587148,0.6692915764428583,0.8630757771590393,0.8615303308807782,0.8394706429389129,0.8494278448118998,0.8449324678771812,0.9813739310317409,0.9511145930006171,0.926004796649448,0.9165482848765955,0.855387229139509,0.767982297885714,0.6973444806331397,0.6544092342758775,0.678519389715732,0.6657033647771544,0.6473638197673666,0.6300354993814242,0.6573234433363709,0.6901583021501285,0.6994531748881029,0.6945016587709283
0.37961970348213475,0.5822088950045717,0.606079339208361,0.514702465115871,0.6189188270488493,0.6157384703967637,0.6381794400930026,0.6683989286751176,0.671051765578679,0.69714487296712,0.6610997652856818,0.6793264706461082,0.6401596418819144,0.6287361422752972,0.5671307656314664,0.5981345683116025,0.6174819483995663,0.4524401798194434,0.4601597918092856,0.5217180786885718,0.45532565135480096,0.4170554233648079,0.39741162996953266,0.3527962090393434,0.3256125518104564,0.39004981276216294,0.33940680011622726,0.4162675305628098,0.7759143496852431,0.9821663684115876,0.8667139637810898,0.6425005613784229,0.35262597801780204,0.20679789280066851,0.15681147757720892,0.14582445459479798,0.34315442311858835,0.5823273874959716,0.598966438332635,0.548349997361191,0.48096335677541824,0.41594216378404647,0.37949461572278975,0.41527564923682114,0.5006297890645403,0.5396633043925408,0.514206716165872,0.5577742938586768,0.6196392342939298,0.6571358588122307,0.7222641306830191,0.6608631211585143,0.6026532775456162,0.5889984307129809,0.5265549209019746,0.5864702025829049,0.49765503715198633,0.5375988259002351,0.5052348501260016,0.5229143030824008,0.5692958963929217,0.6092488892736757,0.567748327343863,0.6575709514074517,0.6894148751595092,0.6496471847865757,0.7435025997697164,0.7315987427287332,0.7194102125701731,0.6782401707829402,0.6660029426152627,0.6326554246378707,0.5436240126473211,0.5433073419902208,0.5378629974734127,0.5319482758414533,0.5392415180238475,0.5171362909478502,0.5183537160940886,0.535607671697216,0.5576073153060396,0.5327468101096093
0.42596310002527316,0.6457034842822433,0.7118881050585266,0.6931418404592895,0.7048176517415004,0.686399676699653,0.6102980947333206,0.5659307565838533,0.5384461372591087,0.5392939872954916,0.5338835752134643,0.5822572610519935,0.5888644870527507,0.5588093550875401,0.5857069814100676,0.607863850222575,0.5347758851037336,0.4983631900733615,0.5545416108769853,0.6412111550907349,0.555922152778952,0.5719127217066847,0.5311029723557613,0.5290383815413895,0.4445697830474731,0.486134371648308,0.6435871901950907,0.7308887710241005,0.635170439395242,0.41002532298484173,0.12115767321984527,0.05658957847470325,0.11422840942706713,0.16511417988345745,0.22993742711203136,0.4141949263474781,0.6072021477937999,0.6938764646362459,0.7471289926341924,0.7283273223845725,0.7323950017178529,0.7346334080457236,0.7497397384616106,0.7762018056571975,0.7625942544398223,0.7603945662809216,0.8240210903544228,0.8641483975093183,0.8681450332299593,0.8337063605678114,0.798429793829232,0.75770765127496,0.69769071487089,0.656163567443382,0.6296056139578179,0.5661920252763486,0.5671787369319421,0.5358751538895234,0.47494048733680677,0.49154743844794524,0.4879091792885776,0.47822966929354693,0.5080447515827085,0.560876992164258,0.529421980922986,0.4903770536051357,0.5047694416898088,0.5243689791675772,0.537567045960788,0.5104131425258999,0.5035133967204921,0.4907457075648378,0.46315416052581765,0.46521034391607985,0.46339183277826024,0.4804939196396122,0.48095368244011344,0.47002494932911026,0.499171099485919,0.5082572286623502,0.5476448040795361,0.5408701182040764
0.43562441523816886,0.6552785422381291,0.640189173359142,0.611500131186814,0.640507235217919,0.5662132845876392,0.6081325732503006,0.6160012554447949,0.6748238210116502,0.7388352351417867,0.8319027185634886,0.8572267168948362,0.8588526067117135,0.9107988427573186,0.8352887511853726,0.8615231452395783,0.8327052378057398,0.7065400252977186,0.6836649218456116,0.7445359016076498,0.735342984653781,0.6818335228432617,0.5076985704494206,0.5636680985663567,0.48102396401958,0.5428320768095425,0.5046160579168566,0.5840269673376465,0.7379202955415076,0.8181934931528995,0.8108723137587939,0.9246505630264108,0.9686286613430655,0.7975239429822132,0.5045182029799073,0.34924682834950604,0.3116330042174069,0.3110406120413387,0.3052827874213807,0.4058897204050501,0.3515799441943225,0.2405871572642304,0.14403574873430958,0.12833877896951673,0.1269481638141512,0.18461370350884287,0.25330399659747066,0.31721738495963914,0.33433018712601115,0.2922726222487432,0.35841511872532755,0.5287329874279258,0.5423284229603237,0.5117073267154101,0.42654834315477824,0.4233612468176619,0.42809761121209144,0.3856412251239094,0.3913217991978489,0.4267567321546749,0.430645257492865,0.5395476368441007,0.5291063355509773,0.5814027364933856,0.5358658392638486,0.5807660560289749,0.659260115876555,0.6897460683563277,0.7039631546611664,0.6906340898510721,0.6138840881399868,0.6263269381503019,0.578105238885888,0.5417141648183195,0.4956136747052903,0.5090661502282915,0.5329476991117903,0.46485243739517185,0.483298113126262,0.47304630675300774,0.49372231856107124,0.4706076725351612
0.9814701321497669,0.45143981399888844,0.4739660222859783,0.45444539478458656,0.4159052453159774,0.38150287386433185,0.4346199876197795,0.4368363405702772,0.43614125963585576,0.5012728711676357,0.5144397243589204,0.5938861410580445,0.6349941944661659,0.5626295797788028,0.5505711121885591,0.5974923945252048,0.5446052065311138,0.4937270715174654,0.5021511275385663,0.597762908740511,0.5499588151283838,0.5667274780053148,0.5261186420903041,0.5022313339047136,0.3615171938037185,0.37441531326814337,0.41287351468138206,0.5116023727246035,0.7089277419983214,0.7844999177375032,0.804031063230151,0.8262599763164767,0.8406859127766323,0.8666396707173372,0.8047068834343608,0.7516110476266982,0.41126926864273794,0.29801209654837235,0.3251553782719355,0.25226954983437777,0.18926773771130867,0.24587133467155065,0.17435485044559507,0.21058410457600307,0.22275890516388464,0.23935679545200245,0.2886122522334311,0.3364382198007863,0.3530656103135381,0.3500461455605356,0.3494232461075043,0.4318613494587562,0.49423500068416665,0.6065416340737907,0.5932878009789557,0.5912215417719555,0.5491779990616676,0.49962653293504133,0.4519509750285476,0.4659731187934606,0.4783823331687679,0.5024798809098142,0.5249593750467587,0.5921395057216301,0.5776955360095187,0.5883638682069958,0.6104046133111036,0.6777066293137708,0.7169098860460352,0.740653567544978,0.7325968016087422,0.7335120192740343,0.7014857038746685,0.665135449849822,0.6468259768823756,0.6445703851030615,0.6649669119974067,0.6404653836952608,0.6795734683869968,0.6773370428655358,0.6848696689041154,0.6601510156588661
0.3686250524388191,0.5178898041701124,0.5390153424774728,0.5181457860323126,0.5234667338549389,0.5083548198946135,0.5624173334212716,0.5511064656456136,0.6355543357683018,0.665611761670674,0.525343885183586,0.5594877675344131,0.5780631834559652,0.5293422275601625,0.5425203191686789,0.5466978313334814,0.5621192562519849,0.5091490707841421,0.5008252470358219,0.6366845429817676,0.5267681546413872,0.5125497089986443,0.4268987335715894,0.48974259337287007,0.408288741244359,0.4469147099338114,0.4374711853184644,0.5460712953786413,0.732084355643409,0.8000021779170625,0.837745549543024,0.8592434098089989,0.695058869112953,0.382099404352055,0.13464007620121254,0.10676509216306274,0.2230553100464614,0.39134311236308095,0.4867314963256597,0.49765764288243364,0.4254852978915503,0.39799774596309134,0.3846073979847672,0.3944171610643603,0.4473099926527288,0.4919559912677685,0.5174616833932096,0.517946629875234,0.5917697408689963,0.6283250782776713,0.6819352154461445,0.7476067352210971,0.6856347600709717,0.6000784096226082,0.595796766806979,0.5572820193243972,0.49754880606393836,0.4948845069252048,0.3919242080991074,0.4537950275426381,0.49439692769034593,0.4863013479603887,0.4632241804107715,0.5184138246419718,0.547969914421537,0.6422107825422605,0.6684545464597098,0.6786784004479407,0.7177443475810974,0.7372349994772129,0.7236278137135743,0.7072873221999496,0.6665351634978631,0.6314468744119408,0.6358951502209003,0.6267298651922065,0.6311525595212547,0.605532951792972,0.6307476850709206,0.6245473694886022,0.6249001314762264,0.6289619750071638
0.32001534032596446,0.48411974461752133,0.4901572003712129,0.47083559620618903,0.4627872687026215,0.46616553895049745,0.5437614058145717,0.5324742469691935,0.5334135081930851,0.5228462170573619,0.47552327903484143,0.5171430785712339,0.47118814162411116,0.4544419722551566,0.49510155126699973,0.4826010432694281,0.5089196253195671,0.47234792874928583,0.48040721016767196,0.533410794755661,0.42028700616754655,0.4868084860392445,0.44929628360866203,0.41178568602327564,0.38492891298757237,0.44565740477197624,0.46575887757648693,0.546078658494312,0.7240556792542097,0.822896349823074,0.8420506576030812,0.7218933584755309,0.40829936139689504,0.14418197192090831,0.10604033715054706,0.1440780300527007,0.30431003155890446,0.5073490422378676,0.599538646546262,0.5367015495200417,0.5099126976434742,0.539792154012219,0.5005949156797265,0.5757017570894252,0.6051904215899789,0.6085446241307644,0.620832503538693,0.627076397238958,0.6915276124601926,0.7639549922888633,0.8244632394992643,0.7874305542252834,0.7567826183914204,0.6998160548112751,0.6780337942924348,0.6327856033216914,0.5910122057435967,0.5770647569186511,0.5193975176640926,0.5562300778188147,0.5493297895847403,0.6004346142745017,0.5900240625821309,0.6080668074593376,0.6141376680980516,0.6632215360307325,0.6911052934981317,0.6823910969267322,0.6886198742122482,0.6811353496587709,0.6460932083882004,0.6410412064214109,0.5988912899781448,0.5713638442534971,0.5720311381907598,0.5707154166318156,0.5878034538981016,0.582344778997235,0.619500774278638,0.634447722027196,0.6271149607952797,0.6493121266852462
0.27959254150453683,0.40260979232286,0.40761848913170057,0.4033425762219315,0.43822995295471,0.4346026226853153,0.5317194282849104,0.5771020943714975,0.5603563190513018,0.5881466383470576,0.5759302944855392,0.5827014059518864,0.519991510377569,0.5323862796031887,0.409752587577757,0.4421239804355409,0.44956371221713776,0.390381313638361,0.3970420666037048,0.31104145291987234,0.24534258632696582,0.2245242270751997,0.22852461718987516,0.2320090608420367,0.20378236237045477,0.25944346880925406,0.26537825883529803,0.36641480089413614,0.80150481773917,0.8943139663854797,0.7358751045262647,0.526054863287218,0.3073415665258047,0.19766201179000642,0.1454213973904117,0.18650249200057867,0.5504499981085291,0.660440753383213,0.6435372176990817,0.6218951341733616,0.5108639960575027,0.49984034799665567,0.5099985973220806,0.5802040560871262,0.6004507675547394,0.6033961428676857,0.6009742253146245,0.6384516286172225,0.7381612665921127,0.7773581894067151,0.7599147109388573,0.7341674325321852,0.7693847986366963,0.7578476101451415,0.7759703680047405,0.792753690090245,0.7679664196078082,0.7345527838007981,0.6888702446475321,0.7344205874108476,0.7711015784149596,0.7935692341984205,0.7987458034397603,0.8459459525108812,0.8102288445676101,0.7781070739696891,0.7318196019561245,0.6928619624894505,0.6507415945189716,0.5787662978312424,0.5334355660906998,0.529764085192086,0.516574269542996,0.5235074386483747,0.5311107348925902,0.5431792503918924,0.5678960632259636,0.5661773947583542,0.6121919475021644,0.6461916680711598,0.6622957869923429,0.6769705262054443
0.24467175270641478,0.36096434978693026,0.3538975529768802,0.36100824842077395,0.3872409563800936,0.36125610577590145,0.4375957063360825,0.42437028037217894,0.39243546631525317,0.3681014408078239,0.30031888002871215,0.29895862837238096,0.32907284284915195,0.3342811214771655,0.346856574164778,0.3724175557037658,0.3651604473158485,0.27110024221013596,0.2373456078525038,0.25969330855155015,0.21505939249327705,0.22014608799921964,0.17967124998086226,0.15964974503448126,0.15298712501901657,0.18518366178320828,0.20106164504658064,0.4047132118562679,0.7864812926022472,0.8609735052272337,0.6378989678469861,0.39914677980044394,0.29335774067499854,0.2713894378027366,0.2848619426380651,0.41627817817510615,0.6678467152029548,0.6952188481023402,0.6850365859096336,0.622519416664734,0.517307948212669,0.49694343432094557,0.49162132856094326,0.5468998312935673,0.596921896705593,0.5814065367941664,0.6144537475311141,0.6830862275564829,0.7786631602844333,0.803646459924774,0.7984627647953894,0.7577452948830976,0.7361692694753494,0.727449233503766,0.6758248524867241,0.6729923172420531,0.6705046384048816,0.626531496250035,0.6152309580896222,0.6271146894079807,0.6229865085361271,0.6683422656104822,0.66604649388407,0.7136213798846898,0.747993071180305,0.7619454559965135,0.844545389676651,0.8770669881625777,0.8593180124130471,0.8751215995047953,0.836858101912187,0.7937760301095493,0.7752431401847466,0.7433983211287847,0.7342338035588661,0.6989110883269163,0.7281533129893285,0.6943729185958161,0.7192955586644276,0.716923911368027,0.7084941737757273,0.7196173801687297
0.33582352011147,0.48854146990285713,0.5022683788724321,0.4788860943572126,0.49273273103945153,0.4670402532482114,0.5235634971024086,0.5327409015850291,0.6284495030957757,0.6914518491995332,0.599435626911697,0.682447209785828,0.644629976630095,0.5795947573627208,0.6112516457308843,0.5185137463739415,0.531783995682482,0.44283276976069025,0.4503884584714142,0.48527483806868266,0.3764057708166623,0.3286146640337228,0.25282347072795713,0.308076753502291,0.25636144139882894,0.2985469321222963,0.2924358482260221,0.44466494295817,0.6749431585871128,0.8367240064693277,0.8841733234607548,0.7742820554371455,0.5240767296702356,0.28054727462805373,0.21425603267724436,0.1657588272208852,0.24708249220198164,0.5573448741513862,0.631014665566978,0.5541612435325706,0.4456329945944645,0.37732691928550255,0.29345668476740805,0.39815270667498526,0.45169060848296805,0.5017623252303876,0.5318025727314805,0.5406418624637113,0.5967287960891183,0.6887969073971999,0.7538469996557362,0.7453994387761238,0.7135164228688183,0.7502786155685918,0.7023067009806396,0.6907073583082894,0.6945462115180334,0.6647122413028014,0.6520258783701913,0.667659406227844,0.7279772272105002,0.7081059896967424,0.7366909089538458,0.7664724847923714,0.7319435932169839,0.7272017435859728,0.7208228512679891,0.7233923945553935,0.6493163314549482,0.654752328000196,0.608444144400235,0.5586738846206847,0.5019072927964561,0.5334593385375107,0.5235725346242226,0.563424475869729,0.5656773803838745,0.5657349837956674,0.5936801113400563,0.5907391842720717,0.6077720172276977,0.6262894201100518
0.3703570200152664,0.5319473615385311,0.5534385538569809,0.5209483321331135,0.5355797454064509,0.5404652603245994,0.5993557358642594,0.5745898408196125,0.6016126590587475,0.612947259653667,0.5450787312256051,0.5951155975399317,0.5435655759687446,0.5359070128264214,0.5754135396563664,0.5412617245098361,0.5862463470255749,0.5501501665558437,0.5288598240351026,0.5930389094645282,0.48674401422722324,0.5159730065418777,0.4985840526173911,0.4934325948501813,0.43492044238243566,0.43014683192612707,0.5262479648694314,0.5688906331707532,0.7349277075214868,0.8079484152325278,0.8633126554049432,0.8491152430211256,0.6199692028480228,0.25441998825430456,0.08970351508402341,0.10588254120818918,0.16166882752881073,0.331910497035095,0.497215903671525,0.5040101983584604,0.4540833517852423,0.45060782974688995,0.44360386510986105,0.4871674912137434,0.5350376941898904,0.546258793533197,0.561873536642736,0.5513269993353133,0.5883036796320638,0.6342822011807195,0.6886886838064445,0.687823963341808,0.6227157925160873,0.5737372705892382,0.4724238935137612,0.4400883039323799,0.42386699918302495,0.4039930660617297,0.3333357199594151,0.3307315265017726,0.335452688081075,0.337879732319486,0.31621473321738547,0.35988266737633723,0.38587306991508685,0.4402842653113015,0.48834192531893583,0.5272568362157815,0.6183930158953135,0.6902793266689307,0.711234660612265,0.7132321467093101,0.7125266318181536,0.7134143019763876,0.7181086536422774,0.7172870279590615,0.7266536008343938,0.7218434487213639,0.7316127371274513,0.7177603299071761,0.7203576253905014,0.7120846547793094
0.31420144254065685,0.4092572156772366,0.4365643469944074,0.42308667819834656,0.45677184307375174,0.43703837945980595,0.5244068857229358,0.6063264914889507,0.5646627006345526,0.5930316620581776,0.5516169134650108,0.5502817820349448,0.571967441429452,0.488241081836855,0.45491300189477707,0.45957288420277237,0.4789142233606032,0.4315232078438448,0.363172118911834,0.3679430674693882,0.2510782429277028,0.26295960736788193,0.2790823738930166,0.2879311722435644,0.25322599608386986,0.2150423106857003,0.19852477439965888,0.5007955104825377,0.8296049667092567,0.7989050974623059,0.5815428944811756,0.3527693759101175,0.2262236094536706,0.15633917262639518,0.15819860272275976,0.3568146075873724,0.6459775866436938,0.6483246572193383,0.6624250891233093,0.6250745772160569,0.5285861793881723,0.5360087134095813,0.5804652749313728,0.6628051577323135,0.6843444594846588,0.6561093778642219,0.6919145331584042,0.7671771151555691,0.8283285215044816,0.8410864807565597,0.8281685517930373,0.8698075988412005,0.8273303081803446,0.8190502545930441,0.9163570713366351,0.8334178331103248,0.8606499492070769,0.8040736844174092,0.8280380832088003,0.8961494492034288,0.8189413849588588,0.8413922011277751,0.803850035984794,0.8364617313161833,0.7752934191269462,0.6831106025701843,0.6198078544300549,0.5892640829701157,0.5111791605389959,0.45328084370078314,0.4590244216979972,0.4330416324954584,0.43139845040714625,0.42323385290578885,0.4461728725610873,0.4792409629025619,0.5124116023868184,0.5024779354636383,0.5499717644715026,0.6045195698815493,0.6255761025166284,0.6212589145243201
0.9728433155685334,0.6468667142665625,0.6702211328475689,0.6327117311316278,0.6192659745702552,0.5850925042279256,0.6217653892578145,0.6080273973547228,0.6303550720463346,0.7194738254817508,0.7019798383331579,0.832965196810338,0.7422513989838059,0.7250998071627691,0.7236253052293282,0.6892655118634121,0.7155685431056706,0.6452822676863355,0.5851276147035359,0.7388957864460517,0.6999000354096007,0.7332764389514338,0.6615626583992401,0.5894492196788582,0.519813711063593,0.5674727582050264,0.6585408453331516,0.6139176423084466,0.7632085786456567,0.8216168752808293,0.8238969390079591,0.8451209704352644,0.8798194625139577,0.8675702354867576,0.6811203148972755,0.4312181682915146,0.19198612462844067,0.2838961479092337,0.3089300684824918,0.25913513789322773,0.25954054233583035,0.26963941205399766,0.19304714302374937,0.22214960131862782,0.2161088037481923,0.22346018240555354,0.29743130651114774,0.2999522942600829,0.30211489549679393,0.30283945792913053,0.30272235512274587,0.36849060714016824,0.4181673911053029,0.5398098814538965,0.4825973586565702,0.4528269278898505,0.39686743973888383,0.38511301605164516,0.2972740446458186,0.2979551751891467,0.2691276638894974,0.31770509545442216,0.3436331357986505,0.3757951579794129,0.389204071621147,0.4748435892906302,0.5533984911626195,0.609822229296286,0.6586174356392316,0.713653578524199,0.7152593796061836,0.6974520452660065,0.6537172962416982,0.6275139100997102,0.5964024211850889,0.5362219825624043,0.5285854798820694,0.5050268962416444,0.5079762135070018,0.49273738793173616,0.4952946833756739,0.47487352462400534
0.36575777056804254,0.5208913772449905,0.5308414895395855,0.5064143092416127,0.4998111354225212,0.52149995525829,0.5948508691979635,0.5676841974783486,0.6552222051139452,0.7402614183213613,0.6457887593207633,0.7103448655578704,0.6809325052034009,0.6366764132561827,0.6595907482966952,0.5964744045565312,0.5621121582422812,0.4935201149843393,0.43614190231271177,0.5583487901411526,0.3971306183186293,0.42964215991465216,0.3639544638580437,0.36629718557845364,0.2622520018581119,0.2890495761899091,0.33555030904261623,0.46119491046478067,0.7040507043891953,0.8437396789277765,0.8845957838238415,0.7562466511573855,0.4924982907000295,0.27506444197933144,0.21026639781422118,0.14791223976408863,0.2250117787047896,0.5751561407084035,0.6275770458791254,0.5462696325121359,0.4429292290889931,0.3646700644351817,0.3266527570891188,0.3790743836427162,0.4590114185695398,0.5013714935972364,0.5394028834103853,0.5280290115439935,0.5853602843732372,0.6483304621489774,0.7388937885782252,0.7689660303189193,0.7329935401418742,0.7025202789445825,0.7130833079241041,0.7168223597581909,0.6653663884647946,0.6778286083570007,0.6408709104550134,0.7116524237318,0.7215022702008559,0.7540525684772713,0.707445397173095,0.7368140763601672,0.7286770195897544,0.7371680223606563,0.7573911588676594,0.6808780105562215,0.6428739411640991,0.6061753439032501,0.5329168554927598,0.5227282195594591,0.5046329129079621,0.47709136920156736,0.46868256759623705,0.5122506406560163,0.5196071364242822,0.5029076449551113,0.5041281422463213,0.5409170323640154,0.5508182461927583,0.5614596163818343
0.40587822897942627,0.5955984481831451,0.6376884155537464,0.6363037616722371,0.6590678889463868,0.6523456273862172,0.6714801833035482,0.5680232020467229,0.5733158753759522,0.6159783029515197,0.5413205579551769,0.5890604079305773,0.5959858086698769,0.6075154858932266,0.5748835207699349,0.6776626170715545,0.633112410492772,0.5973044301077771,0.44639793008936324,0.6379338029266912,0.6379124717841441,0.6366664339186733,0.4941390743278267,0.5679049063785163,0.5007652683504649,0.5468814674849036,0.5464119232387441,0.6568467080298264,0.8451888974980165,0.7853687480006661,0.522927425764024,0.22333985014269164,0.0873801376939557,0.07210109894174976,0.19727298336685717,0.25570186714289733,0.44617630571671274,0.548507789042071,0.6263723099732176,0.6381074871209556,0.5743930965604224,0.6230964907930923,0.6141062061397973,0.7052148616856724,0.69060485709877,0.6631534413514484,0.6929959933359867,0.7505596458944308,0.8366843995080508,0.8351155402713788,0.815721095124593,0.7774494740363793,0.6619592990773934,0.5964819846841759,0.5701552246385042,0.5345670377219782,0.5214909691101534,0.4780442601563776,0.41843026095002406,0.44039800944252205,0.46519680627490867,0.4570872884681185,0.45783177254549257,0.4300287934381697,0.4640608621247285,0.5473494919622337,0.5223393740360411,0.538734166716017,0.5438790238920967,0.5722683594000267,0.5691275307615802,0.539757784987207,0.5343532298979624,0.5140424568766186,0.511659185649421,0.5192677933891963,0.5113454779372352,0.5189491705171093,0.5321056063448579,0.5472742191860019,0.5817024746066842,0.5642302610528876
0.3478185611438602,0.5281463978289327,0.5388684748613933,0.5070044582582698,0.5238664854582774,0.5216872642172155,0.6087363434168296,0.5846998661068726,0.6157959525704724,0.6809097696384335,0.5721074601257156,0.6109134165210313,0.5921730347645336,0.5734803482810935,0.6166673339906316,0.6248284435173248,0.6121735439752671,0.6104858401160902,0.5860686524586972,0.7391245337451169,0.5679816998617118,0.5834596648912405,0.5663353206315027,0.5932385612330164,0.49923756930225593,0.571094476497541,0.6040708350992058,0.6362450544851851,0.7647932042186502,0.8289506574869503,0.8722708625846917,0.8642324462102801,0.6960518274492626,0.369577604057754,0.12755677758114814,0.06418740326698891,0.18099094730591503,0.36845971762037644,0.489201917584575,0.4434767428077895,0.35167272566338537,0.38215169047094866,0.3440629854327424,0.4185518521057718,0.4837121515981604,0.4781590418351969,0.5311679042415879,0.5254679510906618,0.5827753471219446,0.6582953248923101,0.7452141472055701,0.759867414311788,0.7441041024754681,0.6405324437036873,0.5920570485799501,0.554335824708923,0.5393086130896723,0.4733963886510326,0.41228953323713396,0.3687679851469031,0.4365080550222873,0.4267565512215591,0.40673907637925244,0.4194425053377848,0.36949678285624854,0.47357876311567804,0.5079929543361688,0.525657819497906,0.6037605913184434,0.6294176598036034,0.6532861776949207,0.6569587367545934,0.6430640490221999,0.6421013308673933,0.622861953348828,0.633394469931629,0.6064755559419639,0.6306396359470461,0.6337777023713705,0.6265519002066037,0.6075522196641852,0.601284844970328
0.9738575927270119,0.6405977326783829,0.6529599858751873,0.6063110905890806,0.6140482969497458,0.5687770142705614,0.5856137704923243,0.552307966483701,0.5765222192327603,0.6497721405208655,0.6619003326999267,0.7474777151309653,0.808639567070403,0.7403043687252306,0.7410303515860291,0.7306847162112609,0.700421715773807,0.6500039770186522,0.6458144531382954,0.6960228141015411,0.6930005283678875,0.7510579116233589,0.6821346102032211,0.6281246377378092,0.5330174743501607,0.5363632321373756,0.5941459984861756,0.5966594145545303,0.7628872556503388,0.8329519291284061,0.8305335776689636,0.8474480293169335,0.8518276149624475,0.904265685716612,0.8035324005867881,0.6272034590484888,0.2437329839270832,0.25904034613901983,0.30888967175592585,0.2363502618962543,0.17541640096090882,0.20703759867391414,0.15985649952285041,0.17544384516030087,0.19076325744136058,0.21979835877853504,0.25125668271025825,0.2684685728878546,0.2781735803155564,0.298593035383053,0.2720786660719667,0.28095858223034587,0.32088936595400663,0.4840797496300525,0.5270601171992129,0.47062911702980487,0.45315450594917783,0.4127169182954432,0.3045541721283687,0.32090636620781965,0.3614588445666834,0.3647079494167539,0.35964274255641315,0.3863712560191711,0.4117577508904674,0.48223762142734805,0.47727883378349034,0.5523251769771691,0.6245233832714678,0.6816318698711227,0.6768303478821712,0.6828061497658011,0.6419593461437363,0.6162372239594374,0.5983674966437091,0.5804348631888309,0.5737239769422572,0.5418589252738513,0.5443410894701948,0.5444129071169406,0.5403678284287072,0.5256782376965896
0.441810283646698,0.6626385104245278,0.7145102917205784,0.7072044767799339,0.7221215834753565,0.7566594305409322,0.7855672373911268,0.7046827371394475,0.7131641933392034,0.7198638984552299,0.6449231169991334,0.7028729018267103,0.6618670720015069,0.6640526494644577,0.6521002112889387,0.6601231570092095,0.6647949010212071,0.5315501770015801,0.5306898402747833,0.5962743062125871,0.5358191645542661,0.5862207594334754,0.5173390609040465,0.5537247211646961,0.46094553807486194,0.47434443682160143,0.47520993938039796,0.7782020827006977,0.8978071985276674,0.6968592418410321,0.3942542459325475,0.22992786813330235,0.1729202398755787,0.13784419315607987,0.16770507016624991,0.3413891872457334,0.5659007929275037,0.6228911920424082,0.6442165205484388,0.5797664904091374,0.5086598479207454,0.5351893580214497,0.545513740126673,0.6417176920602264,0.6445715793076681,0.6137267678126331,0.6837154255261166,0.7527586469366504,0.8221579545423875,0.8149412293360374,0.7888627119794133,0.7557524556328871,0.6998499744843073,0.7025786773086041,0.6632962655657677,0.6239691013556012,0.5999677643594891,0.5750122347620559,0.5387189080757309,0.5768577996329309,0.5772920011856023,0.5876051078784023,0.5560201743283646,0.5772380824130632,0.5925291674199812,0.5577562853476545,0.5409202490573164,0.48474015461373887,0.5313512496108344,0.4449159281210323,0.42073497214526867,0.4371031876843182,0.4058243829198494,0.3845007525926305,0.388846124093305,0.3887495069851107,0.41957150623237266,0.3955323533396248,0.4218048776450579,0.4491254765738451,0.46104709712899516,0.45763002405454123
0.9814009365651943,0.5002051672247605,0.4976772772977102,0.4872540406734948,0.46963789694411595,0.4060504322754991,0.43763087236056164,0.45895396331451227,0.4612641363962324,0.51631137126952,0.5403896622164409,0.6567841425278467,0.6785291033869526,0.6086066529561587,0.5829015768431689,0.5772773838967082,0.5801706955042051,0.5290836342772448,0.492484973288532,0.6405696394579383,0.5954371866061626,0.48639881875890056,0.5542691004536199,0.437923574916827,0.26048313621105773,0.46782078935725935,0.5679855525587684,0.5797599014930046,0.7172974656387828,0.8008669903284791,0.7995925833413104,0.8319489846290442,0.8567565771143918,0.873196949412539,0.7472600199036725,0.5946073724919457,0.28469708381049985,0.25027595437781147,0.27046159658218494,0.24048853903315515,0.22211440778680602,0.27108318307596146,0.19439283100872928,0.24175238819066935,0.2883820475085823,0.30241759968384935,0.35493529307999133,0.38098695538423005,0.39896511941402757,0.3863594035555204,0.36790188018007525,0.4035171046764053,0.5368020630867125,0.6586063188575142,0.6303258262991691,0.5062555771900465,0.44836583334104396,0.4969912427390316,0.3941643320567944,0.390953292097207,0.42697641213043114,0.4689955371973845,0.4775770931802277,0.4354782245809974,0.4958633555147226,0.5107642491344393,0.5453765655730032,0.5637688475953488,0.6190713180013645,0.7193605497875011,0.6854685439813388,0.6789393108134573,0.702954758692494,0.6844533590760142,0.6627952403704904,0.6665873610426822,0.6768457802020669,0.6695788263745133,0.6802967146880022,0.6681479138819763,0.6759146584642252,0.6662458093049272
0.9787617262859241,0.4317458014933715,0.457151779671056,0.40493047098857443,0.45630249142558654,0.3481968811341872,0.466153468249661,0.43964176918491576,0.4292125378139284,0.54876451852168,0.5465762168188159,0.6620392810136472,0.5451218608913746,0.5034229046020395,0.5323477651077175,0.5178612551263732,0.4769776718065416,0.4765007182883688,0.44772048096920747,0.5549375637937385,0.5044606676755949,0.5893709454564796,0.496741247476548,0.40049835780860527,0.42881184854693555,0.5239133746319606,0.5188566473757386,0.6206903924516598,0.7571413270187596,0.8235696460715782,0.8317900413508256,0.8590313673136628,0.8886550129336072,0.9067920845936582,0.8312748118272754,0.7709794325462107,0.5218970420835065,0.3872408687762672,0.35852173573237134,0.33853414697982565,0.19719683928921972,0.1532196047790294,0.0747126496922027,0.09611771283524462,0.12162862784775863,0.16527752450286026,0.20060965142558634,0.226864718520374,0.2325383094451297,0.23881521925475804,0.2508488853218682,0.3158623872195272,0.38001790114312783,0.57830438321895,0.6571133238263616,0.5673115831617208,0.554474837742592,0.5518124727726725,0.4295613014088437,0.43008809701773265,0.39333979051183066,0.4053927535152224,0.3885404565368682,0.423976252893133,0.3945680593363933,0.3369885771086639,0.45243352184888663,0.5360998501445968,0.5584044156322789,0.6541959548195329,0.6912354331008583,0.7450851262806536,0.7717572027449209,0.7980540837577618,0.799400435390548,0.825960434569387,0.8447886244239748,0.8149894007229591,0.823753786782669,0.7876530951589285,0.7201729766496501,0.6967577252497928
0.6688454273152626,0.6026884074671583,0.6290749164380804,0.5563314664133844,0.5671580286953597,0.5464565613901159,0.5899029765769087,0.5493987174858009,0.521185822818697,0.595486369363105,0.6209736686152679,0.774526840858623,0.8953384868287908,0.8828561055381304,0.8382426802810062,0.8648317417459863,0.8262541472140227,0.712871608742845,0.7021472886066816,0.6996125363017841,0.672637933682609,0.6618662400422018,0.6017144616011535,0.52622578028761,0.35386744112844726,0.37109114163088935,0.4091526836050343,0.47197461871221325,0.6924040446672649,0.778044600878937,0.7839558913424002,0.7879614965029949,0.8528902488574077,0.9220112934223641,0.8085940139759726,0.6732577676656052,0.4977951181710738,0.4441372454775605,0.35254837493241376,0.2324960180994654,0.25667866539600814,0.2363172749993413,0.10957790683530866,0.11048562690438357,0.05403805282950691,0.07100470654893543,0.14331647456032098,0.15861352402951878,0.2107891429306602,0.21833971708002017,0.18404557188413934,0.2939581897567509,0.4336892039622689,0.5269704184278194,0.49215263509439416,0.45329995190802347,0.470584235931794,0.4508269323665346,0.38766805825325895,0.43623898195006006,0.5051049218221806,0.5319369127108214,0.547339963612012,0.6131030671904754,0.5537895673899614,0.6358512311542694,0.6756157327863173,0.7852494929621265,0.7520429954357646,0.7906531251333314,0.7675495278176828,0.6841751237351454,0.6486924562856533,0.6480998810771517,0.5759484938414223,0.5774465538266353,0.568679062191437,0.5666087226991834,0.5506676139596571,0.519451880003786,0.5420204061541529,0.5274260478053399
0.3983020270954927,0.5706860410293025,0.5933112015937011,0.5802862344758948,0.620762009349041,0.6175980378917035,0.6750424447677675,0.6963584756537988,0.695027421322937,0.7133850556716079,0.6770993319289919,0.6892797590260963,0.6674368262945654,0.6592472170263559,0.6260169393261437,0.6009826018606049,0.6098794362078609,0.5524615335602174,0.4854710794874217,0.5129307091184621,0.4598320938621425,0.5010355982130643,0.43271958953306017,0.4094835714755159,0.39069066942514746,0.4116796186831793,0.40014607330621027,0.4678165831048807,0.7830135170647825,0.9371698862735854,0.8161894742285688,0.5704600152931609,0.3045041322479325,0.16183231785472818,0.10086045210855998,0.07482887881892664,0.3608488462601036,0.6002108237995489,0.6150129552026485,0.5607586669787799,0.46881599714928834,0.4354867754653009,0.4443847020471925,0.5035092118888074,0.5714170178734654,0.5838060792328587,0.5790013037215211,0.6509945318742503,0.7407869596889001,0.7534018139351456,0.7755900056846627,0.692194987653342,0.6440714644711496,0.6197363806419531,0.5912032422281948,0.588409476560166,0.6253929942365848,0.5773132074051367,0.5066580748127723,0.5511093215374554,0.570294881276037,0.61011442260648,0.5811559611001009,0.5925727017873426,0.5993898240751624,0.5756268309939354,0.5833018999764905,0.5793978316028268,0.5669971301389078,0.5968452297207418,0.5532019144682038,0.47384013184823476,0.46034420321818675,0.49363312625444067,0.47091474039067,0.49549653282492706,0.48452162227057594,0.5188443665984392,0.5136748743552234,0.5310993679233447,0.5593448368293892,0.5524673673821019
0.3642228018721447,0.5215880345762028,0.5201577110190537,0.4890978613758108,0.5046063779392268,0.48841831748319087,0.5114361691560869,0.5544606286307063,0.569655607915258,0.623724994216438,0.607207355950688,0.5761962225614814,0.5825199813122393,0.5635041708020159,0.5186386914730973,0.567640141800768,0.5515295801178988,0.565221152246579,0.5579135955211592,0.6641427956546637,0.5776045832475284,0.5462282666228286,0.506413716806901,0.552383644497993,0.4637547549741935,0.5068732499046514,0.5329597114611482,0.6082562950095501,0.769038167547902,0.8200840475955753,0.8284234826521273,0.8843010195898882,0.8323758086427715,0.643168128912834,0.30552714718197993,0.11340634703192842,0.15242159853359438,0.36735099134462623,0.41062705582573655,0.40842179533422696,0.3197555773468208,0.2768283858876104,0.2676323930051242,0.2933323069179199,0.319183524183706,0.39745251194492115,0.43933611910520753,0.4769108313991203,0.48179652081831986,0.5340175161357664,0.6184089429121962,0.6746472303882369,0.6903195959837142,0.6716404216349005,0.5528763862707686,0.5397227308681065,0.5023279418740371,0.4594757947962428,0.35427359057490765,0.3743771383119625,0.36059234195913814,0.3881729275906989,0.32920044084085054,0.3791653427980828,0.39053710257825547,0.47135343574494715,0.5050241712091719,0.5825948311172857,0.6182871668319345,0.6916944880280397,0.7111429449540975,0.7224728348937284,0.7164304075490144,0.7240985978823017,0.7125076259018004,0.7270276698147689,0.7404697689030653,0.731572671254988,0.7354533601682929,0.7266896240476188,0.7258514015967976,0.7151432419154785
0.5437164889332406,0.795937469402757,0.8693553830982097,0.8341980498222799,0.8863240291612218,0.8781446163179113,0.8660132749656524,0.7654946933625552,0.7834614906292254,0.7655629765749083,0.7245259568875655,0.805958258845846,0.7713226431994832,0.8031710941014143,0.8171951766712171,0.8223028644989407,0.7928114587376427,0.7413970054019553,0.7540468483368115,0.8172846771862508,0.7405063622805156,0.8538432251704584,0.8021094712014802,0.7527676735567618,0.6642120109453771,0.6233470868960032,1.0,0.656681792947263,0.4221855880651889,0.19875364169546517,0.040326887663250544,0.05558200160565285,0.05999894915283255,0.11316525868906346,0.3062777121578818,0.4878045629262503,0.7140575259332116,0.8168648393074487,0.8564587957818495,0.8713624397729565,0.8492083245831665,0.8731018190686884,0.8489245166670412,0.8817839314474261,0.854739470170237,0.8192770674176829,0.8667903767645241,0.889400969999487,0.8781327644908924,0.8455666893137314,0.7721628200734577,0.7581920732807451,0.7197150920277433,0.7254877052127847,0.6600058450895183,0.6169336963367307,0.6414526463398766,0.6058427704375919,0.5936306457475831,0.549448043182303,0.5446074817138055,0.5584574319976586,0.4738883805495022,0.38713035629132253,0.31835209314806223,0.20988537204541358,0.07839180118965206,0.0,0.0,0.0,0.0,0.0,0.05698133638301441,0.07730448820295358,0.11586096928491632,0.17624307935776057,0.21406237923269178,0.20590160323145715,0.2856821558849463,0.30841147599523133,0.35841962238108066,0.3529158129717518
0.1941137425585176,0.2811279066439514,0.28580463000264045,0.28418563293052207,0.3189442645612829,0.2795859667495544,0.3902858416523701,0.38629041094083577,0.2773907534817214,0.3259043779140033,0.32269520338212954,0.3151209644299571,0.2977611308257011,0.2491252402874366,0.29996531607487625,0.29175473736614294,0.27308330600177816,0.26450952204965844,0.22409669303826663,0.2667656881033201,0.17936425667818146,0.1224580577213128,0.14056341738278383,0.18560033539371307,0.18332259825309022,0.1592494238885087,0.17203278347440665,0.4681901376156964,0.7112454018422203,0.6813578697274167,0.47195860578794974,0.23075310379035974,0.17831072505932322,0.2020674792668914,0.2540596440644943,0.41147319868009047,0.7305403187071051,0.7638459065954617,0.8234415195862603,0.806206520979228,0.726205910246478,0.7449257167849328,0.7528414977692969,0.7901732622755245,0.796173238595455,0.742366918579322,0.7477924223959148,0.7997670676301726,0.874242605543095,0.8950045380785855,0.9122493538373464,0.9147065780980133,0.9048152679169895,0.8611351933716632,0.8935230424531178,0.8519237593267683,0.8582414971787657,0.7989643637574104,0.7895697096761165,0.912258041942176,0.846605739857404,0.8670814152062173,0.8257322856985887,0.8511664627568392,0.8153713024031092,0.7320017835797674,0.7102261999340336,0.6684462558234898,0.5891648637141518,0.5499747037822397,0.5431870859994028,0.530219422790209,0.5359193782161356,0.5172367881032179,0.5443472685913604,0.5838186520564393,0.6298736306407001,0.6477959151173582,0.6954476140424202,0.7360403957298913,0.7531151101623899,0.7710757834051588
0.3538951612720396,0.516158389971184,0.5040291264595378,0.50463516059818,0.5087033064550368,0.4913329730295015,0.5661589769710416,0.5727679095360296,0.6004220485956423,0.6318736405660852,0.5200368276914146,0.6018559366414532,0.5604535082238354,0.4723224846119467,0.5263979479967866,0.5305790179362374,0.591573410839984,0.4770248844967083,0.4691991198844785,0.5775413157353508,0.4679029531145321,0.42546017975729555,0.36820395492999947,0.4454793989815176,0.34865857802935096,0.406163133911726,0.4218722535025769,0.5001688171329732,0.7030905269968082,0.8525315474002438,0.8274204926898547,0.655066787677451,0.31490649072314747,0.09527719116202615,0.09005246312842463,0.11455645581172824,0.28430365787533973,0.5684256791564759,0.6406780665362829,0.6077053265093022,0.5787152550901576,0.5716330825839171,0.5161079994645,0.6313976427434587,0.6596159538402668,0.6578140318007489,0.6305094555296741,0.6702683587391032,0.7208430612048436,0.7970972465048818,0.821518600560803,0.8129048080020065,0.7901065654751287,0.7778080035633947,0.6488721905750903,0.6901817178215481,0.7482923210491692,0.7010833897267594,0.6111785893938337,0.6466248085024067,0.6708231172319955,0.7063339440309763,0.6729997086265391,0.7130873496144039,0.6604688099818704,0.6705621011269103,0.6207998253145193,0.6160017470972228,0.5841058111826332,0.5387180374378463,0.4878766462861809,0.4642312709085558,0.47219023421025186,0.44165137558963885,0.4609020743100368,0.4779840347159918,0.49643907957642686,0.5055303906155116,0.5246076861379738,0.5329092839167976,0.569791525436488,0.5898097741921009
0.28500345879353656,0.43255975971090604,0.4690930144375343,0.4287493550313932,0.4787153033807593,0.4748695720627521,0.5214712994225478,0.49181349120521656,0.40301896251743996,0.4371802343280972,0.4124876134538817,0.4328657207003999,0.4324860897156886,0.39471869912171054,0.4074808729722712,0.4030617589454124,0.42486536196330615,0.3354208073735866,0.3411438147494502,0.3638402740578271,0.30143667155742543,0.3303510304289323,0.3234954361881057,0.3209281346541378,0.23363219887083442,0.23175264805077322,0.25318751284367896,0.46520434744006517,0.7655753851437602,0.6867865220007818,0.42999092589399596,0.20504132616063464,0.15881312681321436,0.15096851423072788,0.1914255368482577,0.3454176959807802,0.6927974509851124,0.7280025881624466,0.7663111774415388,0.764430449952492,0.6870242174282747,0.7062988926785322,0.708344041143308,0.7439465470915839,0.7565737299367442,0.697947169761911,0.6926570887748666,0.749247363407827,0.823366864687894,0.8317907379892271,0.8399215501707487,0.8050796151174948,0.7840040839879229,0.7526491255665912,0.7655697930442451,0.7636320800970735,0.7418963506052851,0.7408381149404926,0.7415312103376404,0.7826138181146223,0.7863773558325161,0.8539025213810304,0.798896915587475,0.8692965949260727,0.8122310171477901,0.7396958812668528,0.7735488407903646,0.7363921167177663,0.6785613524057628,0.5990286585925998,0.5326909853839923,0.5080841083569954,0.49348653747141835,0.46412847508344335,0.48752947112168454,0.5076642427823673,0.5309067659943076,0.5505459782965494,0.5851327491044586,0.6198308782849626,0.6470771727822443,0.6322152279445975
0.3539949484266186,0.5367600889937292,0.5936488724782345,0.5377777711320425,0.5887790013948971,0.5885779375954997,0.645834405411698,0.5887558101418536,0.4938088230682325,0.5716254531941126,0.5117401827037257,0.507989842443056,0.5239501135275421,0.5128191676310778,0.5403032529494556,0.5445955268593914,0.5434966637185222,0.4906771589633756,0.46556660612179046,0.5143547270233542,0.5036903872104714,0.5352879673364026,0.47270037794366276,0.4882402770983616,0.40733100380397935,0.47074083961943186,0.43720904871450467,0.6363144361486378,0.7734830125328442,0.6536365377850764,0.334160038949579,0.09516771203822438,0.07669574666221546,0.09022189810412862,0.16313147735119926,0.36922354238672195,0.6510619175846032,0.7162138738658271,0.765011473792476,0.7439680635106989,0.6936136856219417,0.765070088367189,0.7623738348543958,0.7934264838729779,0.7833729508840134,0.7445625194915879,0.767352629182793,0.8331186092743329,0.8840518687859706,0.9130276865172379,0.8330404900242537,0.8123426931529172,0.8112732298369298,0.8029014007043989,0.7684083142021436,0.7622584167757027,0.7379899265518133,0.7325720861072871,0.6861991816932318,0.7239625765280406,0.7471201165684133,0.7882515575277059,0.7150336712816214,0.7183437620507092,0.6647280662367338,0.5813113750063892,0.47976715933506653,0.4606212982386748,0.4133184953925571,0.37320743950159707,0.3304755671634224,0.30734573409015437,0.3262134841692358,0.3549828230303111,0.37707338430700327,0.3886768180712284,0.453582242489284,0.44915741475492993,0.48649136869230414,0.5139626493783991,0.5347432879774559,0.5630291668832677
0.37072331120388885,0.5727262049476778,0.5745382061914649,0.5476745163433251,0.5563447580948335,0.5474876036113006,0.5956227735667193,0.6231442656854533,0.6696448471978124,0.6766262726557476,0.6614051629620111,0.6765868113867607,0.6334231591499337,0.6752032896447597,0.6021916494780511,0.5702807134864211,0.6171201065670351,0.5414802939332035,0.5204105513825927,0.5593665759785719,0.4197265569073021,0.425025608204637,0.44590194338609523,0.4110971363730688,0.3621234011309275,0.3670039246673951,0.4381645108076516,0.48429892421539245,0.7338798054662996,0.8955054512677779,0.9251470945768507,0.7237420550212941,0.41799768328767495,0.21322336175857304,0.15813159989803238,0.15458432135625988,0.31411679201959797,0.5434613173321864,0.5813663011570059,0.5172375001748831,0.44143729753002114,0.37558026301227,0.34641538989014165,0.4058864409990614,0.49430197856872105,0.5098287597041324,0.5245486430594555,0.5655189644397427,0.6496106602177064,0.7127810426761723,0.7252900069605805,0.6833265099653099,0.6163096226795967,0.612670114209043,0.551204914262704,0.5468106213058104,0.565067883528412,0.5322308681111498,0.5319032547460203,0.5587166497140099,0.5961267550439556,0.5956321360161708,0.5760594954681775,0.6227100430690022,0.6142355941091725,0.6472771489266689,0.7110402951768935,0.6683866330289947,0.6684984900971445,0.6754938831146576,0.632105160165039,0.5850519174091948,0.588906639486495,0.556497101281217,0.5492008369399284,0.5472781279264529,0.5645522858617407,0.5296396773853161,0.5297348601849933,0.5481700317344915,0.5494526766954086,0.543546277899122
0.3768645487067917,0.5386401954382429,0.5574601608020716,0.5314783497895029,0.5189406022964268,0.4941280065214929,0.5408675133635661,0.5540569782481,0.5505917839398682,0.6558771214557253,0.6684797466278458,0.7360508787673158,0.7261041237978739,0.7438795919033498,0.6779791404046661,0.6398904756991153,0.6624249129391149,0.586164309798113,0.5651709236789513,0.6112883923985242,0.5512621579356778,0.4703682888585574,0.3905465351336691,0.4282220665073624,0.36307131266934856,0.3366639634895649,0.33627046725111703,0.4952509106610592,0.7036348245062909,0.7895540993305035,0.7814944115323798,0.9029537380427647,0.9797790933800963,0.8331593944905676,0.5577903155100514,0.3652497964189594,0.2946121739648786,0.3445024161047965,0.34941790423475616,0.41082607636238466,0.336270125196274,0.2442063244469349,0.19155000615911144,0.18176974049621486,0.1445925694906528,0.21321680835513612,0.25113016371212377,0.2915701756239896,0.29728361839932993,0.29753315917007045,0.37001735297065863,0.5111755631060564,0.475437164530124,0.4876173255004408,0.45914809419882424,0.44851329481541363,0.432394159778567,0.41213380494610985,0.34238580606154073,0.397164315451781,0.42219134649188794,0.4778226033295555,0.46350367506342316,0.5318625718658472,0.4641722106522722,0.5983700511041785,0.646501284613775,0.7257390512474002,0.7478246192491798,0.8071413207798989,0.8054814316126159,0.7846570538093717,0.7845571141163377,0.7605781631520373,0.719935694381697,0.697646146068376,0.7184612263624823,0.665838821119699,0.6941260198708363,0.6717311352805843,0.6542603534548245,0.6517725523140089
0.2981058743699949,0.44936668790586076,0.5232103599363969,0.5115710034674789,0.5356960656769152,0.49712807051559044,0.4718377992449496,0.4450028133594556,0.38367130274804095,0.4098677462473143,0.39555770282915514,0.39575837874790987,0.3936432834208218,0.3946486824982185,0.4203745872373901,0.4191027183369601,0.3656956782207321,0.29851674179351906,0.30361008566947084,0.3974090989230317,0.33710058379052543,0.3672044117074043,0.292434284990956,0.28609746689989407,0.2723717660500179,0.3673362575895687,0.5557167784952871,0.2771029873509958,0.2029020078612087,0.0903174446035242,0.03170648279565247,0.09411166640825286,0.11891064614865132,0.21314811319380134,0.418733019752891,0.5808245178349142,0.8410767856917681,0.908604455487007,0.9248040527445018,0.9542639851021348,0.9590866363346006,0.9786108880390838,0.9723244613146319,0.9897746319798649,0.9888333640867908,0.9430910147052871,0.919293557156871,0.9164579066863947,0.9003476392648834,0.9046876004935299,0.8755879415851247,0.8731051789140554,0.8860233400965906,0.9393148925421811,0.9366102045644222,0.8924529866447541,0.878676139591313,0.8708268109325468,0.8291770546096766,0.859888531915719,0.8323757729548452,0.7619252739641581,0.7071464852376681,0.6738499287258579,0.5512834084974801,0.39202415230641363,0.30615920389533136,0.2132351230644921,0.21225770626559376,0.22344053484834844,0.24145197297913962,0.2964398215656272,0.33258617672105506,0.3441409098291363,0.4003130338844249,0.459383637013044,0.5150191956439776,0.5536270210815185,0.5929184910271466,0.6538893130923904,0.6791105419232586,0.7026224629740931
0.9814521136983995,0.4593143129572641,0.45250528430518516,0.42435305760975234,0.414416679466198,0.358771482091768,0.4238887003867429,0.40896048241695315,0.3947739455237166,0.49146748147330666,0.5056636590591557,0.5956651035351251,0.614472445851393,0.537745140286492,0.5379951104929852,0.5573516148668537,0.5145415382276388,0.4483005399045322,0.5012655526685671,0.5068013869068861,0.47242396246781965,0.521425264571897,0.46164161623408007,0.42889902376746547,0.31560929232159984,0.3915925869045922,0.4069917580094592,0.5077680202166835,0.7070039052003768,0.7883116260989235,0.7977361494137557,0.8198483659481454,0.8447334905392206,0.8609121263760725,0.7563432028355263,0.6095711626520829,0.28936592165642416,0.3148256403576013,0.3588097100580073,0.28933678700430554,0.24624349527679013,0.29556242501889574,0.2193336456046875,0.2505253359973363,0.26480016516477467,0.27274762946580544,0.32455786598398695,0.3708444732419736,0.36807178366953164,0.3598333384140251,0.36224511833630924,0.4234093348129424,0.4885860428874493,0.6244307849647971,0.6573043632612392,0.5920046949878031,0.5310170303528808,0.501088172269133,0.47347883185056544,0.4881596406613854,0.48290363344918186,0.5264970096581342,0.4800876336237436,0.5471833280181109,0.5695456174725219,0.5984528857854343,0.6952889962587507,0.7239981575522578,0.7566605005230305,0.7915511049613061,0.7786905442214194,0.7388148003067019,0.7046964101853403,0.6865151370788737,0.6841313628047274,0.6865865274653207,0.6883823835377398,0.6638166245864863,0.6749590544194182,0.6720674217786547,0.6716693246445418,0.6620155957118558
0.4044941349349384,0.5717466262067553,0.5871079511202019,0.5761865707766818,0.5963682299511289,0.5862009141424929,0.6342429749399862,0.6198003848771663,0.5950173369357623,0.5658578054800923,0.5742370242987755,0.6257529396494751,0.5662245325499349,0.5590914089529174,0.5876223518924694,0.6260482943618809,0.6301363891602763,0.5418198152286835,0.5866550314227612,0.6771731272675081,0.5443023404086617,0.6072275575709984,0.5897068636663378,0.591796649933387,0.5218891956753835,0.543289673256688,0.5723188829881278,0.6155457661603818,0.7816478460585302,0.8532450712038341,0.8724688483313542,0.7794829134908872,0.5210683062167993,0.20201664822932686,0.08029298501842674,0.08011711253517495,0.2752627711538087,0.4102501024240982,0.49397030624045757,0.4574963414880937,0.44313712232598856,0.4383718151363444,0.39499242777799004,0.5009167805498854,0.5321797377347033,0.5504383970594187,0.5630988680447846,0.5616706464081254,0.6275584414532833,0.6764859580958318,0.7543627123891117,0.7395378166796377,0.6758726567248736,0.6580996631502524,0.6117808682759893,0.5259425236175375,0.4673415351270115,0.4493414666480544,0.3876509235019026,0.4095875770785502,0.39466901030857715,0.3838233501895989,0.4074163968901736,0.44197284787252555,0.4544021360242484,0.4363872242244029,0.5119557626179472,0.5497061394648386,0.5892017579822819,0.6484572040390003,0.6396871303667456,0.6303090731077733,0.6048953842665061,0.6167902550066634,0.6085552728846503,0.6090397194488346,0.621106144522124,0.6028282917119372,0.6155247670143998,0.6078860486787123,0.6176066163462244,0.6112908443744421
0.3645375000887123,0.5118395232026898,0.5132356641285157,0.453415028027724,0.48245734262277784,0.44108978847076885,0.5154976284487616,0.46569918792911424,0.5274263701778324,0.5785074508176244,0.6624287539304189,0.7697701660486529,0.7076872803839472,0.7225573634461817,0.697797604596739,0.6551395041671123,0.6459050726402359,0.5107698968545663,0.5419518396191189,0.5782795137928064,0.529259428414433,0.4672741152281751,0.3526920386593935,0.266396266982133,0.2496181620616505,0.2920746903179829,0.33938039786834645,0.45151881432403146,0.6719559468444696,0.7715189802368081,0.7739311881058053,0.8732482961867978,0.9389608476498608,0.8116710307729373,0.5979575422267178,0.44040833984358985,0.37339319551962147,0.36610621593358317,0.3330461267817403,0.360655828339872,0.35646871098938027,0.29586526120402934,0.18259965642286868,0.20666445180406245,0.1674088533930287,0.22353645849452325,0.30871194797171014,0.3543955398026941,0.36641775311434344,0.3514517061615662,0.4263053254275329,0.5661851477478208,0.5726537134698578,0.601801000395525,0.6049970347403137,0.5731034572459903,0.5559478625146144,0.6327291762220395,0.5524327063238248,0.5846649817581637,0.6036732195617046,0.6601163827291753,0.6044666375102841,0.738562738159342,0.7576119966016525,0.7403395033775029,0.8017618268118405,0.785977258671426,0.7649513528358671,0.813524185857179,0.7506283735274035,0.7144751568508594,0.6541534717200537,0.6242078040339227,0.6120445266643951,0.5858133730747794,0.5975738898042572,0.5977922590626377,0.6100007049645167,0.5915958063488506,0.595583697331444,0.6078447263564993
0.48710938501093526,0.7197351728584189,0.7640634981923665,0.7351730589335828,0.7510278491134266,0.7792168694800286,0.7994989745394963,0.8015878019209086,0.7821001824813099,0.7290609823921788,0.725453915329983,0.7640308430999719,0.7341705713194799,0.7449870164024247,0.7084962989218794,0.8089125577307578,0.8252288523658329,0.7136563666733597,0.7258328940697493,0.7941649749199683,0.7338752111646796,0.7412419442411653,0.6938711694381805,0.7362518947809527,0.6227322199456999,0.5915643815510855,0.6884552865735448,0.6488542297130662,0.7792355894800633,0.8733040807285396,0.8467967090054163,0.6558950901336863,0.3159779401761377,0.07298937797646832,0.07607487385655709,0.13812529911554972,0.3185581948260823,0.47308141539359294,0.5200996649453763,0.5006864174222759,0.46699330957255747,0.4548416974686995,0.42021269980415077,0.5124800157863412,0.5446199666618035,0.5627602231147021,0.5462686421798179,0.5703034234849695,0.6504874357135767,0.7023633336070734,0.7657597413890078,0.7557459515301792,0.60575225762506,0.5863047659310512,0.48012411164817076,0.5048558349714276,0.4219666500699013,0.3664698486457707,0.3281943154238464,0.3790192170505913,0.367981369565789,0.35827205531833395,0.32301540807075935,0.4056628181216957,0.37652843069890585,0.38382990800530503,0.41386979273439617,0.4336751266510501,0.4877963823098495,0.4980934374324075,0.46246777624734337,0.467439438247807,0.44872241280225467,0.4132822320434172,0.4474640382866441,0.44389605147955136,0.4523542307637281,0.4072385173554007,0.4398832012719511,0.4554882771393512,0.45711451041353596,0.45371561626927326
0.9767754384456977,0.6129265199204058,0.6429613711574498,0.5869245903103585,0.593841184212304,0.5583307509161393,0.5859568726513935,0.5526315552811644,0.5975970742558147,0.6703314418045689,0.6619588352039475,0.7475067248594237,0.7618424632500431,0.7014426650623186,0.6890292426649252,0.6757657269234166,0.686154680116684,0.6506728800308074,0.6465440475073556,0.7877795969549587,0.713310185668956,0.796160815329968,0.7466620905747017,0.7007893315904509,0.6182552679540404,0.6512695015301012,0.748080671371446,0.713621548592982,0.793804689675875,0.849352335447028,0.8566922031432224,0.8685129644976745,0.8724436524427392,0.914866317240431,0.8608546463637997,0.8465140846618783,0.46975801783026516,0.22256373163492094,0.221149950306317,0.10957634865771992,0.022237378989474754,0.08906857725289674,0.10025530234863056,0.1306790780695125,0.1933017259536367,0.2365641954705715,0.2529803411420445,0.3018970317697389,0.3165850050277539,0.3326766568972563,0.3453318296556789,0.39170281418268593,0.37566558624785124,0.4634149058250726,0.4823616706971628,0.40874245231337675,0.373876556507281,0.3226482934165139,0.1898877429003994,0.18820486293253835,0.20122021886243235,0.18013503883352444,0.14620357284856222,0.14654225471561344,0.19335881899596552,0.22030264586750214,0.25092549409279463,0.3192843150865947,0.4243615220010188,0.5222442027976073,0.5431110551718724,0.6227478646635052,0.6730226801196222,0.6661552762607065,0.6740583123154379,0.6857138903994948,0.6957283374683636,0.6802635008584047,0.6908035974767887,0.6694281839501109,0.6610294381739108,0.6424951987045173
0.36425811321309404,0.5393526564808916,0.5431265405369554,0.49549809121191896,0.480344357710446,0.47299959220578097,0.5238583895065314,0.5379921786508736,0.5396071793030286,0.6795999008664162,0.6985966734161733,0.7418442497103991,0.7374551773218989,0.7241805134617054,0.6449777071493092,0.6596755538578863,0.589538913681309,0.5653080256266715,0.49062338112501414,0.5983812006266007,0.47443559086589515,0.46721314331237274,0.3136113919503249,0.30984458341261195,0.27260077733049226,0.3002365612657125,0.30981807969768604,0.43136531193712585,0.6794634737554046,0.739464334831969,0.7830980046335276,0.9039275915796863,0.7904536713897407,0.5283424950068819,0.3339130772188137,0.31720480681096497,0.30795541172734864,0.3798004907935465,0.5447404082136467,0.5413226411310706,0.4072553309465059,0.32396450445396296,0.2253019998792849,0.21862324502864905,0.2702696218255626,0.3328218343875653,0.38253015531385953,0.43837145202123895,0.4351828210062646,0.4848202063691504,0.5846592376511733,0.6986009496880926,0.6579836995352376,0.6235992360438051,0.6174280980336755,0.6508611622086768,0.6648709802277861,0.6580918444386873,0.6252474441682485,0.7054596241415432,0.7358824217520136,0.7307665477288691,0.7293340431682749,0.7621168263198366,0.8131696595571295,0.8219944349441746,0.8475151395190916,0.8406603218746325,0.8206998744016518,0.7414300810549094,0.6986491866993276,0.6076625763535054,0.5830560714791189,0.5514642462900314,0.5235759569726326,0.5193485746652723,0.514186820971149,0.47802995646833646,0.537974173617538,0.5176287635918732,0.5264540612176073,0.5296560885829215
0.3594463867472812,0.5342872692308851,0.556334634588138,0.4930803172328435,0.5071916434609809,0.46712474286182787,0.5335182592360975,0.512773037884126,0.5651651366348659,0.6396689899423741,0.6221346471562248,0.58802410443069,0.5949010385410879,0.5928027750325929,0.5655450813454165,0.5435019263590118,0.5741127340246337,0.5068854984804879,0.5313272318363645,0.5948937631028101,0.5469106012389244,0.5617837399739418,0.45571678407234295,0.44465666502073886,0.4134912513896028,0.47599203675598095,0.500318928085135,0.5514947044632453,0.7267214116787604,0.7966565446692255,0.8271257726553588,0.8757091108478313,0.7385551915845638,0.4653895191057837,0.16765753482890589,0.08189372913274506,0.14995385957491214,0.3313848010819176,0.457338034866588,0.5051082636546022,0.4285044096630817,0.41086102204329833,0.3897665028018964,0.39456765402034355,0.4873367865409481,0.5201952253644182,0.5461375674076824,0.568925734217278,0.5733642780862207,0.5976764880948353,0.702147861399735,0.7333589636558759,0.7409461572262604,0.7237870701643788,0.7031723901680573,0.6137704833602382,0.6328806438462882,0.5955152413899056,0.5185192392659961,0.5345631154715722,0.5829670393520611,0.5766878758653707,0.5475723999087616,0.6015270398294517,0.6442027042752351,0.6545507961544981,0.6624132999744001,0.6743532779239596,0.6508626353398159,0.6618739973643384,0.616218862793151,0.5913163210331959,0.5666354148767834,0.5530250563572514,0.5463018611809771,0.548219745796484,0.5484785072251355,0.5607547540868383,0.5609103308781256,0.5685756047405093,0.6102756687404439,0.6144713132865574
0.9865657265398384,0.493179221139174,0.47746930979811203,0.469979384929227,0.4732053188500731,0.40754379385312145,0.4596177865150951,0.44369049995810694,0.4796106086508093,0.5803094335948464,0.5533314344226525,0.6524227365506873,0.5335581800213598,0.5091187163322415,0.5078225597633558,0.4948928567205939,0.5392046093245818,0.4862959636655696,0.47778812879435206,0.6087708252195796,0.5616537543690401,0.6013528512672063,0.39640472683837435,0.4287967999638241,0.44703147642986363,0.4388830654372625,0.4850339329356256,0.558644182874029,0.7378521142906577,0.7982554772243073,0.8073403992248558,0.8345636642716605,0.8452742556426448,0.8733695291848333,0.8231816039644538,0.7733416208863382,0.4694300482497016,0.3477603521970897,0.37247829291150647,0.35940177682901175,0.22632477641125048,0.18516872417837138,0.10265798681934302,0.11669017187517572,0.12399115169604602,0.16681523522031738,0.18455465360050932,0.2245309766670256,0.2290113243670473,0.2203315856466091,0.20686226084295092,0.23407271584043024,0.28610703533536175,0.42818369433974335,0.4551083519494829,0.47054629359733907,0.43546336664823215,0.3983753916497903,0.28930461059441676,0.28883005042849685,0.318913018333691,0.2838998482711066,0.2286401608573393,0.29450211274911064,0.30679338066851847,0.33281758749539314,0.3760795568141386,0.45966836744804507,0.5968952980129576,0.7030303252105473,0.7362876516736745,0.7967683353858583,0.8437263299929032,0.8561233613435171,0.8895783910331512,0.890782063533285,0.9128157777191017,0.8837306280934945,0.896805372745924,0.8744087342747511,0.850190515623867,0.8167766731954904
0.4016426755783746,0.583219394848667,0.6063362464037158,0.5778264697508727,0.5871398453387293,0.5992281941466662,0.6480861911274026,0.6347355764366682,0.7141656500402029,0.7087788039362919,0.6670233507267795,0.7136797026313285,0.6745683377828633,0.6621328381401224,0.6259604494535833,0.597798563645938,0.5982195270437664,0.5336714769192268,0.5234356001110073,0.5770516939756103,0.4912632612104981,0.43748366379282155,0.3348831625332724,0.4088282661175898,0.3601173754812575,0.36611887559797307,0.3875120032346854,0.484589600244557,0.7134946965261229,0.8131603061285742,0.8903062311956298,0.8914495716960771,0.6242231503753235,0.3539663212440405,0.22053876421340135,0.2093406512952234,0.26109049598950884,0.41998926573195183,0.5294611535371891,0.47666964704721493,0.37164685504326866,0.3138538385464722,0.2485242629001101,0.28138841907490264,0.3373079332361232,0.39765572439668323,0.4509668975683802,0.4450813506367235,0.5270296561941538,0.5892171542005842,0.67097648569222,0.7169971805160248,0.6362464083101304,0.6441991140832967,0.5436655011292386,0.5246423791974533,0.49085252121834944,0.4518073823289548,0.44209904375848325,0.4793530065551185,0.42845615920235147,0.47876606782450903,0.4501571486382716,0.5016401554268619,0.5854836301907643,0.50733361550181,0.5704306880434036,0.6278196972230425,0.6837419389970045,0.7281686645528809,0.7259637850295665,0.7021880270373787,0.6436196068694224,0.6310681530258277,0.6403455289284175,0.6395133491094303,0.6302922271504338,0.6195619542264336,0.6100869855273888,0.6102689574980341,0.6071534339042505,0.5935119179276722
0.6747068058884458,0.4926285234843727,0.4995713491362618,0.46272344623374223,0.4682333627697657,0.4188088208918943,0.47233448805245154,0.46428339372988076,0.4709491175286367,0.5432334699465537,0.5507939836511709,0.6580141495988552,0.6681644312819843,0.6704150108049747,0.675179964899817,0.627641426808927,0.5988239113852413,0.5628050759034622,0.5208151683906221,0.5831310381557938,0.5605133917974372,0.5851793128937933,0.44377319087904704,0.37563961730933537,0.3307735729317408,0.3784444951277434,0.34877607234789887,0.4698168650146597,0.7073617923991379,0.7885633022630386,0.7875273575364733,0.80078986746219,0.862539446459194,0.9679038341306068,0.8326423444801727,0.7062920016938379,0.4802525858699105,0.40372881969019303,0.36579865873812,0.25600874535699925,0.24896216302716834,0.2385651909075912,0.13785673591755487,0.13268462285860683,0.0900425233463229,0.11773961857194204,0.1708251977122976,0.2038425392268871,0.24550073759383367,0.22096390028463514,0.25325903368380237,0.3589268252806453,0.4216695854142593,0.5097159231863847,0.5420391698341631,0.5257082722163782,0.480327243540422,0.50392201566838,0.40153392741964106,0.5066095618937201,0.42943829827887536,0.4976158157148306,0.4944782387656457,0.5267222787250554,0.5446085661566072,0.5581883931910117,0.6284289019157823,0.72051269399738,0.7330319906844933,0.8126167555605236,0.7658664215502307,0.8368825375728713,0.7960334202691643,0.7371904023656217,0.7561286320790158,0.731148155451018,0.7517206576869617,0.7198409868286862,0.7353112440510305,0.6998747891784424,0.6850699566197901,0.6724844458003794
0.5043855215237696,0.7461364098531784,0.7670833201949288,0.7378236705671816,0.727703031133716,0.780808912646467,0.8130768185534849,0.7668344340208753,0.7702875191021241,0.7320491725795768,0.6773894589100968,0.6692305345534388,0.6946113277958635,0.7668005525925741,0.7148689466683571,0.7620337089762518,0.812647949516352,0.7401991225338846,0.7336340648736821,0.7819245777263716,0.6970638907789743,0.8110255195376062,0.760950829800136,0.7220009911972561,0.637009594315614,0.6941610413149504,0.8345847308707975,0.703320150126846,0.7851381657921827,0.8969377873938746,0.8572866439011103,0.6899779961325829,0.36856003385631386,0.11823838252977181,0.0762676819850262,0.12820634755779592,0.2924993437169352,0.4349551942157036,0.4846617349980643,0.42827171642212614,0.3947289560203495,0.40478702706110803,0.36674023543337186,0.4654173014383611,0.515416752593554,0.5337592399054405,0.5163337116659757,0.556027354374121,0.6545549980491776,0.7325028277966734,0.720524083066701,0.7034307359837699,0.5836798457156835,0.511176654922393,0.4533289500435393,0.3764213940920093,0.323222264267642,0.2988846978815898,0.20732712565769912,0.18675983991394984,0.18681853894149458,0.1930017934826571,0.1409786676020467,0.1919892141762939,0.21146666903214206,0.2248913397293515,0.2420718307034745,0.3378339544232559,0.42506063878775296,0.5123194503014443,0.5437168229905426,0.5850696085314829,0.571177352457483,0.594839482057389,0.5946885029350029,0.5811201161633327,0.5894301220795493,0.5651090093511767,0.5739610493064302,0.5305134347370231,0.5457715995491621,0.5457819473974995
0.9753189009612075,0.5500852166171839,0.5838363217342719,0.5401370324027444,0.514293952306938,0.49629395907948703,0.5295233376693241,0.5087134366317387,0.5171883618163714,0.5711995153747758,0.604819682949209,0.6952134670127615,0.7422996414336924,0.6922351469659576,0.6665203418746147,0.6795175879851592,0.6601847196168067,0.5643192958215599,0.6045735465850747,0.6650014870831488,0.6213938673329029,0.6473698337589162,0.624854053127276,0.5874810426099856,0.4128919560761853,0.45189076683656226,0.5250474620378005,0.5847292428691231,0.7498185245847049,0.8023608250211942,0.8113055416335249,0.8437058134553564,0.8431053018651542,0.87997702764776,0.8462013661059261,0.8461481759895821,0.4481615476587604,0.245160192729875,0.27199816836674484,0.190353911239328,0.10388073488875182,0.1846142768530291,0.16048096612614338,0.2001809706064528,0.22370461416167087,0.2283139032455428,0.259954146993701,0.31027509397105807,0.31764906547955896,0.30160495668009946,0.3239853824099466,0.36814719274462887,0.40043240509042094,0.5513321941681861,0.5571293164356597,0.5393327923818692,0.4998541217267428,0.41957811127617883,0.3878377534872279,0.3848014959766637,0.40394893687684963,0.39046662645355534,0.384598291256272,0.44912141238031933,0.4736864404455202,0.47230508181241837,0.5415553811036977,0.6313395099408374,0.6770943613325975,0.7022455657034338,0.7090292110204313,0.6995471904523671,0.6785819329620857,0.6303848985462788,0.630633582444327,0.6100765097614813,0.5941944863045657,0.5726226269243923,0.574683467976137,0.5738954017252272,0.5828853182476957,0.5613448871425705
0.2638541290050148,0.40075143063294316,0.3815485835755521,0.3642789869028509,0.36005368135045945,0.36372834294211487,0.4557604260448692,0.44456176080928833,0.5421464629878427,0.6178213824965897,0.5424260483721747,0.585660479489111,0.5460263454135225,0.4896333752048417,0.492301265318152,0.42099830970539565,0.41498904182990887,0.354021032608643,0.32372372101291974,0.3709433347920351,0.24770809238512048,0.22606729649885393,0.18187475941086279,0.10566032457542629,0.1253505898760005,0.19502245238804833,0.17180651948985037,0.3807002608975047,0.6381573568832509,0.8161143540271264,0.857306940202545,0.7167656535826152,0.48626905414506766,0.31904779361693913,0.29084046134911645,0.2747849688715829,0.3592720473853568,0.6116365949571803,0.6678138392058697,0.5960521096090989,0.4897736746930136,0.41188444348683695,0.35998825370607235,0.4437175843688448,0.464651676817322,0.5193150031067508,0.5513695865200844,0.5343907188462323,0.5986193470007867,0.7235200461421774,0.7801070670671202,0.8024224218694662,0.7379596718193921,0.7425445345473325,0.7304289432970417,0.7888683930743752,0.7672939174523183,0.7518052730608682,0.7252188046552672,0.7605113078001993,0.8021104255185075,0.8722304384196363,0.8661395369343561,0.8896459090194655,0.8819356622605409,0.8744951455962438,0.9485422203000695,0.8660302230128019,0.7817307476041415,0.7382803880862758,0.6848522626249665,0.6226684823958983,0.5622967808946335,0.5555519883898604,0.5647790277502817,0.536082327038249,0.5719742751365384,0.5680699661772426,0.6198871820307057,0.6324759748154714,0.6359655386443861,0.6365007721651706
0.3191720561024395,0.4952407183969079,0.45978190770700245,0.4857772938353363,0.5279242674499327,0.5336870135518289,0.624586736635838,0.5826671052329836,0.5753916372872386,0.618013021738475,0.507316626619363,0.5335165407352007,0.5378442237215364,0.5156367463139059,0.5107172440277468,0.4711278025202776,0.49106824539899546,0.444036545406398,0.3568713501783643,0.38722767331087976,0.39285008669300847,0.37860743983938405,0.35987382945182855,0.29629631758626895,0.33292910476207255,0.3029203506016183,0.2978511378538642,0.49365421034179124,0.9121240657967092,0.8331986260878356,0.5816269360337776,0.37037003640532307,0.22619951359505563,0.16171861334792448,0.14263874674516486,0.2679825083731955,0.5350702767393793,0.6431720689292636,0.6567359622113427,0.6039807335922792,0.5341168038647842,0.5441030064998214,0.5085772610022363,0.6081477145928589,0.6488873280793116,0.6519510216567909,0.6494556192196173,0.7394522231820443,0.7744844415534485,0.8060840167397871,0.8055557755787682,0.756336577514426,0.7020550236834631,0.6676572926454053,0.6868832724795038,0.6894863679280934,0.6788896943939384,0.6619972996188843,0.6218557425283304,0.6241696076025658,0.6976511206615731,0.7019323730429715,0.6683505258143065,0.7078448004001139,0.7115549074879318,0.5996226594438712,0.7256935261906474,0.6793549296132233,0.6551693012856961,0.6412115667621642,0.6154129958544714,0.5663089705842079,0.532719937663269,0.5489403999651709,0.5128694945397972,0.5295105602693229,0.5630668382703538,0.5252486974913498,0.5982846085111828,0.5773374359220669,0.590509937570819,0.6197781111943621
0.30430892832007717,0.4403811531526647,0.44176463861032317,0.4253799752300156,0.439015671837965,0.43251529132234096,0.4940359029873044,0.4978123188721862,0.4348780698496408,0.44520794041008244,0.4088838510921241,0.40365516260340917,0.38851474062889946,0.36105492584289645,0.388706141533681,0.43104648681881924,0.42055614701619437,0.40063069695796877,0.3550175641307569,0.38099096696077045,0.29754710534312545,0.3255331825164258,0.2700453469514076,0.288155892162797,0.27744213475513013,0.27950727922093116,0.3357013020223446,0.4612933436953262,0.6758110258486512,0.8030460282509468,0.8414821238279662,0.7564915950743373,0.5262418960227948,0.2424518071531646,0.17049725454675624,0.20264644699573875,0.34620209850092354,0.4712951487160383,0.5964003406160638,0.5586096361201612,0.5104555453635121,0.5341851214366907,0.4476662466497089,0.5058062082854506,0.5442322815179427,0.5597871816175577,0.5625052192937514,0.5507207593449537,0.6125697895121025,0.6438100294706235,0.6884317443837861,0.6952770859125144,0.700559210854894,0.6157263381837027,0.5650621287734463,0.5292669932928418,0.4929304695107778,0.49232783228734645,0.36751648913840357,0.36730194405346883,0.39503487838598217,0.4467927359155708,0.44645610032201843,0.48172154912856313,0.5341848733375484,0.5527344187852468,0.6148223820484808,0.7085742346009916,0.7958605617635697,0.858973713382387,0.8498587323504921,0.8314196253088478,0.8512704360413292,0.827461929054819,0.8185246416331029,0.7937294029097886,0.8150659300790319,0.8194030687410783,0.8310397502445207,0.8083621639579024,0.7893288861116212,0.7895662889715576
0.3025205723795672,0.4251299055383082,0.4387408917524573,0.39792521474364345,0.4145022235997509,0.4131175041693998,0.48027429677883826,0.44673137505828703,0.5140695413215588,0.5990190752330098,0.5312831835371713,0.5759940074241076,0.5666045056180629,0.5046348506040724,0.517736609071215,0.4893804269957721,0.4703822831364015,0.3831910579160617,0.3897291295043756,0.46393526828345244,0.30408924117712344,0.2634703493751214,0.22041146620488128,0.22125783755746614,0.22243456711650095,0.2612263863146888,0.20100142004326238,0.3956926067316356,0.6732879272276902,0.7717669144531595,0.8648035475880087,0.8989949628240187,0.6462704039049526,0.4220751544874326,0.3005854721825314,0.3244327667578035,0.39931058753669735,0.48346111792726376,0.5934216923137647,0.5394263281982457,0.44268318056859846,0.3673628139232149,0.27082322048977514,0.2669823163902256,0.3363668015768623,0.36502234241869475,0.4259767176606871,0.4435425924876173,0.4478480223818268,0.5047824503601581,0.6362442456397067,0.72988105065315,0.6171999494763619,0.6279675238134299,0.62655102206625,0.6586405365726555,0.5821237205019654,0.5363252653685143,0.48684522301490846,0.6409137237489333,0.5677990750966927,0.628121732265242,0.6317969198935429,0.6689217310329942,0.7085997362417166,0.762015512391351,0.785057588145265,0.8690090651346862,0.8914293431360285,0.8745658748857082,0.8679001339995255,0.8168245253486033,0.7566057637488781,0.7550664325796246,0.7090803752090138,0.7177243998513454,0.6976561840607851,0.6817866034100086,0.7163667340693537,0.7057995764722291,0.66916077218546,0.6952412934933302
0.6770095008888971,0.5412451581039576,0.5337864195115006,0.48965196616735934,0.5083602030474824,0.4683547511704036,0.49166366017883784,0.46956923672280204,0.5154989998387575,0.591587181581682,0.5580756872778425,0.698542563517676,0.7327824434821654,0.7106325234923115,0.7409324421523189,0.7108317152329662,0.6821645743324785,0.6086819772184732,0.590099248844473,0.6909621283007777,0.6001267245414423,0.6869597994360827,0.6015536274212016,0.4376883356221119,0.45195991167530614,0.393745892537594,0.4024093691082426,0.5047807333641827,0.7227426905555002,0.7926284456764631,0.808426106660572,0.8193367188407267,0.8703676660709717,0.9633365173700102,0.8379145917493306,0.6896156963872395,0.45882909930451166,0.41241371128318327,0.3875760379296126,0.2873301526523049,0.2187900537480837,0.19922901768769752,0.09513729421241346,0.09064265779760505,0.07072543473883386,0.048139020552168454,0.10750451264521721,0.15647503362577747,0.18004894900001228,0.1351100274834558,0.10445596169499485,0.2008382691379881,0.2755058304451891,0.3896076151466684,0.362029678331287,0.3937961645215408,0.4388756456167535,0.35934616257519014,0.2837418747621024,0.26261310009830807,0.25826091944469476,0.3137397850071103,0.3021351472578171,0.25521830338689766,0.3425722653694524,0.3180199395071439,0.401750322898063,0.45617968724914837,0.5749607677795845,0.6985608094344955,0.7488964605117561,0.796964532209862,0.832095977601039,0.8417727850588718,0.8805682417968699,0.8669759139985027,0.8890062881751678,0.887308609413695,0.8986252452966157,0.868864247171915,0.8450054504483423,0.7716785163602242
0.4576616663164174,0.6747334330521023,0.7010529878465146,0.6838993984546273,0.6845054013800789,0.7131324728133401,0.7375781809339835,0.6854424611034695,0.7508535557205966,0.7003364360843343,0.6493825819366922,0.6610225053754648,0.6841566522483533,0.7059039395963922,0.6908759850642956,0.719205563775189,0.7641749663971302,0.6632453393706416,0.7080879894533332,0.6832719224939015,0.6620049003555994,0.7398935049942221,0.6228933723382776,0.682706386817747,0.5792385775160324,0.5570292506080318,0.6451423348668024,0.6266899619967016,0.7690678259629005,0.8846971670989536,0.8398906514640173,0.6858867026879454,0.35566003188995465,0.08619633275354466,0.07987403402281767,0.14839875799131796,0.2941648697693666,0.4742550682611699,0.5467824509296415,0.5029607099381682,0.4302391601537686,0.4101576099321387,0.3696611439767229,0.4655759152574064,0.4816202821767194,0.5219248047270225,0.513651634500335,0.5742157155461804,0.6345893496188774,0.7015876259420974,0.7074016385360594,0.699196119634505,0.5408190209643741,0.486349430699653,0.4227508279400904,0.417957345473606,0.3632576161042793,0.332529739600927,0.2608822805864491,0.26056487048082155,0.272790513286873,0.27631849636915395,0.31836702479370005,0.34711517310098894,0.3386883143455304,0.3823985157459874,0.4088951959015614,0.47124794127602776,0.5731471284224365,0.5704065244182738,0.6139353736897544,0.6235128348654543,0.6030418724646196,0.6059401515492838,0.6231907454519225,0.5868333096374924,0.6020474601076877,0.5756622388975046,0.6017463981042513,0.5773023307906751,0.5652911780167271,0.5582063063852154
0.4001180366275294,0.5453414501699889,0.5578931531724196,0.5032644739628068,0.5764679574148888,0.6362016269350614,0.6349261914770366,0.6194402538828333,0.5500040748057621,0.5704350280879587,0.5436146959198876,0.5674539233626879,0.5863695984281844,0.5677701715983983,0.522858230608803,0.5721389100061886,0.6060843517049106,0.5534259890014822,0.5119621080528238,0.5488425780825084,0.5409062689903168,0.5287854636126718,0.46613451584716903,0.4808775956654809,0.4704424078474397,0.43850450954183906,0.45640389289665767,0.613531499676103,0.8220788772351519,0.7683920310721686,0.5435921543063531,0.2266037911721437,0.10951097577379343,0.10099920912494309,0.14029811473468712,0.23151766804179552,0.5482112990736379,0.6462278075574944,0.6826321932184094,0.6855781522905317,0.6545471045716709,0.658271365104821,0.6709139198498155,0.7196411123344018,0.7370278129760681,0.6861572140896506,0.6860719218441981,0.7549351567274629,0.835537507823533,0.8807402705525317,0.8642374231079025,0.8481663107972114,0.7986282141727372,0.7897155394441029,0.7785207479759892,0.7951298838837098,0.7702565142883182,0.7432387094951105,0.7191571415807787,0.7575192086828462,0.7797187509788056,0.7413915971020503,0.7091339012393594,0.7326038039851788,0.6985812867010993,0.5744876579687639,0.533091787395831,0.4512428279608387,0.4036723706125909,0.37858786001131917,0.3046553015395334,0.32218757964978206,0.3151167820586463,0.32143505762846447,0.34485298377446116,0.39731142547024095,0.4330190028818933,0.41674216571316386,0.4844700492056365,0.5019550063149643,0.5681506000105832,0.551708285546825
0.3373530702731432,0.48132236954088703,0.5082089786123217,0.47766267164937315,0.49095162487546395,0.5054492773488812,0.5781821735948489,0.5357898517912647,0.4944403674889318,0.5177370669197207,0.5020537644827776,0.5126705449803332,0.4920465197428023,0.5182865687093233,0.4911735724227135,0.5361951289088119,0.520233105628218,0.4991159196661633,0.476337035972654,0.5111533584958176,0.47773312552547487,0.5282579232204663,0.48913967306670225,0.5066746108070584,0.40363651549121204,0.4651226972709144,0.4883948283982004,0.5777911166134179,0.7544141566787244,0.8599420643237716,0.7612558282904169,0.5029403312134779,0.19344625459140585,0.06560969600710898,0.10304994441390658,0.1532195135153196,0.27624438720356936,0.5723412587917879,0.6361930455617789,0.6284511976383957,0.6066339880736136,0.6149943471212544,0.6079227538667712,0.6557199617001082,0.6736454449895006,0.6840673825683902,0.6707614020655749,0.6875726185795359,0.7580248679633563,0.815906999979986,0.8034892178502547,0.7210897757732866,0.6863171135234797,0.6434502371572371,0.5927215030001172,0.5733901940659827,0.49304061637020447,0.504259901423802,0.4601293918509571,0.47624342490380056,0.47295689846201505,0.5187851408250447,0.4913939747257794,0.5239303206024126,0.5485642401052419,0.5445945382465323,0.601550829082353,0.6166619632821235,0.6331982713752959,0.6456939611180849,0.6156065988048437,0.6034879650226403,0.5784658817911419,0.596049604721658,0.6069102640822777,0.6046880641344401,0.6318877136449961,0.630185246967466,0.6396885712098404,0.672978593047092,0.6631299649857995,0.6693172582527182
0.4214325536246067,0.6002918732215942,0.6186905326090311,0.593495478640474,0.6324688418688641,0.6321771965987075,0.6631967191620863,0.6444605222116753,0.6484606016418741,0.6060960557459515,0.558154499319667,0.5980259484529438,0.5934051966321063,0.6313399625577119,0.5912598835332492,0.6137426701800002,0.649543031581395,0.5984805606238293,0.5306043059620574,0.57586018511763,0.5859435371895322,0.5615012071372766,0.5210948743441212,0.5667738435824433,0.45685554873765966,0.5226078411816731,0.6566294650521256,0.5181965572904119,0.7425877318965598,0.8624713461858835,0.8588169317330185,0.6591664981524411,0.32639348933818246,0.08545183103842957,0.07539924537318621,0.10116704987759295,0.17401600528236227,0.46650567809880084,0.5717006952981419,0.559155292443238,0.5452779393821663,0.5495347257750447,0.5159236732401125,0.5785921932639999,0.6125645396696008,0.6122437882838594,0.6141582294601063,0.6257167293932727,0.6955045012867032,0.775274084918159,0.771252197105196,0.7266784482992885,0.674915447591262,0.6106009964293295,0.5568060892431193,0.47760391154627774,0.46074162878342073,0.4746881930567901,0.33169929000933845,0.310218128435806,0.38913359247132917,0.3942175077685405,0.3531111683984408,0.43667804497525453,0.3701263572352558,0.40868546853268506,0.5123480074091487,0.5137071828063025,0.6541647709852427,0.6801373060447652,0.6204496642212185,0.5958855658751904,0.6045959924198435,0.6208545260315969,0.6107781652568184,0.5813225035083984,0.5730591297622937,0.5491725338314836,0.5969633690387269,0.5310711336324824,0.576524276991536,0.5370876513934577
0.3824416352000896,0.5597828556021011,0.5738711849489814,0.571344341860875,0.5994728230735864,0.6093011498636941,0.6528106994347849,0.6350051613230074,0.5400596307950064,0.5514905642678577,0.5145127672911249,0.5374340912102328,0.554124766785642,0.5200297570122688,0.5604454928675019,0.5811196829918349,0.5836333598165017,0.5162599952906279,0.49327401375829794,0.5682714001614505,0.5186266914151245,0.5523119128386733,0.5122616390463046,0.5573032536677461,0.4695526808957021,0.46592478672511367,0.5417274716106653,0.5956030413115422,0.8022227339119589,0.8552721366861439,0.7443233457931403,0.46532270581858065,0.14629673222201311,0.05843287245860618,0.13379670731285254,0.2396668936813059,0.39579612007744713,0.5681206812553545,0.601958040361094,0.5863431072525719,0.5326163831012835,0.4984846016208567,0.521947533402263,0.5951627115461539,0.6477622028405652,0.6157594339285756,0.611364444005047,0.6739497799939635,0.7440351465935882,0.8240519660745595,0.8130061214012825,0.7887068284614188,0.7007278346970844,0.680230711525796,0.6105832331290364,0.569582150868845,0.5297588677458639,0.4646942909421956,0.41898848667099936,0.4555971148500809,0.43572315464396205,0.4050338319545953,0.4190817292849288,0.4495149146052184,0.43853263649853014,0.4572710915705456,0.5274952300145326,0.582991052732341,0.6196813558465972,0.6472245664377443,0.6572569613856671,0.6395244014859929,0.5989697343163407,0.5832300318804492,0.6040254401964811,0.6195092575200037,0.6187240752845005,0.577205851752008,0.6053511831728369,0.6024070350035413,0.6156672377030364,0.6026940792999693
0.6817215624875557,0.48636522827614576,0.4731241449898546,0.44408574354213975,0.447909095731454,0.39790500830071407,0.44622486310638654,0.4325485829106925,0.47379098540411985,0.5441719876976199,0.5304407758785461,0.6675748679353323,0.663419362111986,0.6498384103626543,0.6468753607621038,0.6114331375669253,0.584752983477858,0.5486476196573362,0.50024142232414,0.5954895872617603,0.4988380834871795,0.5297574590517592,0.4505595303645363,0.3586959116801665,0.26288685677189305,0.30403362102311654,0.3661011946094727,0.4602451888119341,0.6927119944024921,0.781626877834838,0.7912796979400701,0.802225237815484,0.8375265922736417,0.9263917113107111,0.9021609211008321,0.8357047168014664,0.6336095453935807,0.4989132977143198,0.45416984480825784,0.33396361583558043,0.22446711700281885,0.22890038896871834,0.14553760410675598,0.10641188332573592,0.06625188350730027,0.025329565554822686,0.04279370630663193,0.05520523518821285,0.07961859846075459,0.09196398625278784,0.09501653015971334,0.12850857361018242,0.1555349888102623,0.3839143219380118,0.4379541075746081,0.46432621450423733,0.4202785105024621,0.40986373754075045,0.33735308480600407,0.3158303796407993,0.3305143541547597,0.3421639328186007,0.3182699954894793,0.3761290009540149,0.4043890228092907,0.4430518852231897,0.500921672545807,0.5840612761495207,0.6846321365253649,0.7742548015908847,0.8270210206112886,0.8737283618628022,0.9021872936741453,0.9210385770094583,0.9309637712355563,0.9247527324284426,0.9243565009880643,0.9131888526936323,0.9301881471965912,0.8829159461710088,0.8476387583913401,0.8166103557399874
0.9727780627523125,0.7382838881884475,0.7078918357209896,0.7173598992612866,0.7193250172839316,0.6504908991937652,0.6697929769662738,0.6431166147236875,0.6960508335215394,0.7614099931639517,0.7439014993745505,0.8687629851028635,0.8599825344568817,0.7575510203048841,0.7231005411225333,0.7874351304324149,0.7661549495759318,0.7126935037825327,0.6684933162876372,0.8405050621749024,0.8553701535370517,0.8007194526080053,0.6989817107487023,0.654411788234433,0.6804850387089714,0.6295616777452243,0.6672373112139346,0.6977814534929311,0.7923416939493841,0.841756037067976,0.8366689586837754,0.8575660164982963,0.869115899684141,0.8996657407065196,0.8922797774449509,0.9517459780079436,0.6764839735102373,0.32735254556855153,0.27396075631255457,0.20941107121865898,0.1266373394639232,0.07032099586835538,0.01899985810863536,0.031445934894796856,0.03922917979249563,0.081688167921667,0.08321504513972255,0.14048730648545388,0.1459179227054444,0.12526386061962747,0.11367325866183373,0.12860703726093528,0.1818351384000384,0.3675276572913576,0.4297717556879144,0.3799653720732949,0.3747461103837637,0.27960287978112874,0.16301200778896846,0.1890412122229339,0.16674262031610554,0.1260967064135332,0.09820639132426667,0.16871262743426185,0.18757348098257032,0.18013707290259007,0.23934732448510765,0.3561707782940172,0.4783770980902185,0.5620122845901167,0.6224682634600662,0.6697963414032236,0.7159815797580471,0.6950049367220641,0.701784082558883,0.6705776002161835,0.6685194514607944,0.6499560303855588,0.6029605110505035,0.6152647348038945,0.5832066586090314,0.5438873374309973
0.42450105252201153,0.6149161277786063,0.6146423651848034,0.598880781091873,0.5960334559554434,0.5818430873114641,0.6362798470192513,0.6182849778745843,0.6705735899826133,0.7213212835147275,0.6034552033263046,0.6931907108935953,0.6935183802600285,0.6523669477509197,0.6402526145879853,0.6656109435088156,0.6754816174322683,0.6693678747103324,0.6358849072189481,0.7747780935770192,0.6623019942199254,0.6729170798121312,0.6074539115453532,0.6626039435011816,0.5639311150907897,0.5707075880138337,0.6574688484735431,0.654835905951605,0.7745389728737933,0.8515016398654975,0.8840370890394518,0.8202814679950964,0.5378028473746357,0.17465338255605212,0.05461603585437824,0.0232647467450946,0.13526114334253836,0.3901004313582259,0.5518522007406264,0.5086544177956974,0.47090697127132075,0.4882519573017905,0.43348428943334516,0.5523865793460587,0.6050103496067019,0.6087121744160855,0.6219035043937804,0.6154193082368002,0.6784181453781102,0.7488876668321691,0.7639660818111509,0.772430890567581,0.7340392561134682,0.6750313899254903,0.5835697507863502,0.6028219987816961,0.5797724261042626,0.545195413904439,0.46398966774493206,0.49683439545987707,0.5253956102055094,0.5159947788490088,0.46980035720947155,0.535851269666743,0.5401871892468603,0.5017649727889755,0.49871248607854235,0.5022569640199412,0.521350634048714,0.45821686055337774,0.4326245438858195,0.4320415905570096,0.4357829446895315,0.42244192570813915,0.399197348302788,0.43252344991478325,0.45422987977667817,0.42590201011857526,0.45766900896176904,0.469444159610438,0.5053378269925648,0.48989042810553396
0.3142443595741653,0.47292776263920344,0.4713707096331714,0.43015083692402417,0.4332046417501646,0.4160979030376389,0.468783498310235,0.47091772802788,0.477247377983626,0.6041845777881008,0.5643546044326819,0.6069760228366314,0.6147393146563813,0.5717283222376508,0.5444022824721639,0.5641348445486096,0.54384425530237,0.48885198021578724,0.4877162010472676,0.5692984564135636,0.48376247407054646,0.45793364435291284,0.3164924126934828,0.3572488364976727,0.3275320417580504,0.37369021326701163,0.3805569582888556,0.48026586112666725,0.7066073235172275,0.7847198821876199,0.7846679461379589,0.8887242273759913,0.9436529161674142,0.7744611061725315,0.500820947109762,0.3607833668793061,0.3649254817805505,0.4098149022716254,0.4234815619555756,0.44720834159917466,0.3696460325823745,0.2822885635211255,0.1902183722242704,0.1611553921942871,0.14016103719816586,0.20794680671248633,0.25050709496929746,0.2995513531465456,0.3144766022760296,0.3335898815555436,0.4402993740315754,0.5799028794910049,0.5904008706520457,0.5803491629814638,0.5285245888037884,0.5097589952783763,0.4760098529649953,0.4599425387029831,0.3900398138186874,0.4264813103299616,0.42286123854995517,0.44857970456983365,0.4093997009966891,0.469575470817829,0.4843322467319967,0.518966563932233,0.5820210020138494,0.6383862579453261,0.7305250547593805,0.7811904264343322,0.8248155710194547,0.8349529904024364,0.86012282587773,0.8435656469141157,0.8527476940848469,0.8421157218327292,0.8488193583361926,0.834336180242931,0.8357512187609828,0.8141923297307182,0.7765504443360557,0.7540903648866419
0.9817996293009196,0.5032718432306472,0.511347162917927,0.4919660437486094,0.4730169483111275,0.4311529708932203,0.4815254410354251,0.4753776788930143,0.4693247545493137,0.584146489725841,0.5915991231862154,0.6708807855408436,0.6414697938204994,0.6134530663633183,0.5819352711194498,0.5721412031641007,0.5041262453693018,0.5190671096434942,0.5104497008420149,0.6284424800495244,0.582553150584193,0.5496095948677504,0.5338759842966376,0.4753892025221209,0.3709574291103527,0.4325089650408914,0.4488535674551298,0.5539930323277393,0.7270320464875241,0.802395968290976,0.7995397159417174,0.8208529760223391,0.8322877550943947,0.88438292966681,0.8728358514714384,0.8285773517061209,0.4878315375823794,0.28541110171852324,0.31004385269408463,0.21425626640115814,0.0685916653059142,0.1337247461586505,0.12341754392066662,0.17727011418762273,0.2427524112577174,0.2637671912830047,0.309778295302119,0.32090476168084,0.34575250015669556,0.3395233756808988,0.3411583125717045,0.39344047877323707,0.3839077116807775,0.4531312565364155,0.4373032234933926,0.45661839329552173,0.37814904202705846,0.326541547646251,0.2779561423799925,0.2783885016794566,0.2507339275372775,0.27612923497536335,0.2818376904764053,0.31092742407767937,0.3452283479345023,0.4109551836351848,0.4619543397336541,0.5428656013179969,0.6535390481436658,0.7252942396474863,0.7871062465105124,0.7891463469270334,0.7881195200537596,0.7909452696387448,0.7842552795659377,0.7621178319677715,0.763760936976675,0.7440486932192403,0.7564070338019402,0.7356822823563199,0.714761541524549,0.7123109313691582
0.2866478100484606,0.41898872063229536,0.42428865789147896,0.40327568290910953,0.3739813833127064,0.3463843265020435,0.4226799681197401,0.4264877043301605,0.43320188958265654,0.5337851486208868,0.5316699329618102,0.5847186787449672,0.5844196009999811,0.5554334528736358,0.5293956365177103,0.5732091832055066,0.5190087652345704,0.4644776331500995,0.4449091816990509,0.529621844884456,0.4543843274212735,0.39982865291813374,0.3275913978994381,0.29704217771383123,0.29905112281259333,0.31521969042987763,0.36184789086934227,0.46840761011011633,0.7010122065159452,0.7776906505572769,0.8060437509896763,0.9106808969204211,0.9147709972287396,0.6985000752152986,0.4312059455906562,0.31333550903510865,0.32985990505962715,0.4043536508696005,0.4619453090925413,0.4997127697021594,0.3904206847219359,0.2943346921892752,0.22024279551242265,0.19043259407073831,0.22961298101318695,0.2911137880219876,0.3339453671107857,0.3761824701145399,0.3827228053696951,0.39621530816448886,0.5022481906840905,0.618189302354797,0.6143640674940709,0.6163879073020296,0.5800537673704294,0.5687091630597139,0.5202969746276647,0.5095341651216205,0.45297887652331,0.48703572037006515,0.4893108646058839,0.515615190133678,0.4945459708167377,0.5556550600493755,0.5893322741606172,0.5972054335964017,0.6648370972701223,0.7270631597817943,0.7776198974931234,0.8340294792546227,0.8333205956410594,0.8147755441208316,0.8161582233740488,0.8096918633579673,0.7991902230350625,0.7941038864007149,0.8135011455530949,0.7935315069129865,0.8083633325047168,0.7838016018795761,0.7702627213018592,0.7539232418897013
0.4314723401000438,0.6347111394300364,0.6499992866929638,0.6133589965046091,0.6380799826694291,0.6119955931250038,0.6929010162428813,0.6656757705899466,0.7171127676080735,0.7636338857165511,0.667779582817589,0.7061532215511052,0.6417624892484342,0.5986129370561836,0.6463875268500071,0.6630058041569191,0.677509840564964,0.6419748795496851,0.6228591264667729,0.6817966549033446,0.5505039645215266,0.5597487978400228,0.5055222639957263,0.5250453588189635,0.43533216461570734,0.46126390310668564,0.5267461433090648,0.5641141225734525,0.7353788734392672,0.7977540820899534,0.8643876140659844,0.9627738248523489,0.823724746476999,0.5437543125710945,0.33073280981070696,0.26974679428144344,0.27259040944038837,0.3422650666945104,0.44740335373545204,0.4548373167391462,0.3492629450017082,0.2522720610466129,0.1665827577720974,0.13920444234852525,0.18954198237819808,0.2511078363920743,0.32410788110749783,0.3460993555746189,0.32673238584239694,0.3572168430200876,0.5016417395107163,0.6270547507347186,0.5894130563501597,0.5435901936333936,0.46136582508416685,0.44935083367125045,0.3935169289059812,0.3756276978956037,0.2899857169608337,0.3181837358188361,0.3461598827509019,0.33622079343161104,0.3371197225110385,0.3864930627903834,0.38136158706900447,0.42318243447429227,0.4814374019425782,0.5440357704600529,0.6422156645565249,0.6982487586647247,0.7405605072525513,0.7669827115126461,0.7624593821768293,0.761509652971951,0.7485692194169002,0.72025889637432,0.7134409747739588,0.6693915934130633,0.6927490335187719,0.6369041093815567,0.6191113785501056,0.5885754455644363
0.3391456227977175,0.5081722562651857,0.5328715860508608,0.5012653087834557,0.4623800585437893,0.45371622747754553,0.5061464318662746,0.5425284921967122,0.5772096786697681,0.6755638090648124,0.7176225965004889,0.728511905632274,0.7510880250296872,0.7602183363130901,0.6514924917276153,0.6342391829117137,0.5864811831401229,0.5152410934182281,0.5359472285106879,0.510340894360872,0.4872184348769346,0.48216359927564656,0.36228341167972766,0.2163180997830786,0.304488268720122,0.299318364976963,0.3090099413277687,0.44389308531544575,0.6911335880237971,0.7688206823971138,0.7789108582860145,0.8866324974124925,0.877263864891321,0.684059752549985,0.40370088602318654,0.28727822382585666,0.27134616553006463,0.3046785914446428,0.40383197993471753,0.4605683751919202,0.4192124677994151,0.3245004047802804,0.23164402953032448,0.17476816879440038,0.243574274961471,0.35845871830459486,0.42388809966900787,0.46945978727022575,0.4486520356480195,0.4645938346660771,0.5699369599028961,0.6905240569385188,0.6180956528567431,0.5486814106546559,0.6197803369937038,0.5886905127166895,0.6498671969294797,0.5463386774935138,0.5205444444852414,0.6150599122957043,0.6361905372650224,0.6129217209900951,0.6425096632392118,0.700350129298243,0.6668098401751791,0.7215993617133845,0.7686340594755967,0.7521026656271546,0.7450516302728716,0.7276946586923858,0.6764557069411198,0.6902427990421984,0.6174290424511433,0.6007532737840978,0.5783084343098259,0.5980797144792558,0.5725327941751592,0.5692578185050904,0.5784624694330637,0.5855109601006154,0.6067380471198812,0.5740014283458001
0.43107616580760316,0.6341057094267377,0.677896924866703,0.6817734702780124,0.7039982604366415,0.697126925330471,0.7433912268893941,0.6129077141656771,0.6126963746813172,0.6330138120101907,0.5733613042919871,0.6378036205657492,0.622297397677915,0.6230887180309432,0.6365564382845049,0.6470560336557711,0.6858967295263514,0.5869883407878183,0.564750052793021,0.6722809444313874,0.5883365549353192,0.608518873421023,0.5886362377340549,0.5931885702482553,0.5009654033380283,0.4992000623680498,0.7133878947333359,0.7424602697770747,0.6137412598404266,0.38447040635776586,0.07009252023936186,0.03138208930110864,0.06881209106677144,0.1196333086208442,0.2831614042795354,0.4663972622605699,0.6741600436528543,0.7672862305599562,0.8017180420698835,0.7809480226795347,0.8219551636895684,0.8393029799795755,0.8516131655424347,0.8806274135755942,0.8680669345241168,0.8439463948596961,0.8782320876445134,0.9244861336848981,0.91885664108855,0.905568685028429,0.8645956946005146,0.8623792898678108,0.8561107466920671,0.8291091957334812,0.8421272469589696,0.8285089721399073,0.8209215433204473,0.730012994299998,0.7019602155551721,0.737337483127452,0.7195094398332459,0.6799644311753547,0.6292732442293263,0.5712706170253519,0.4824222810037663,0.3533589631384546,0.23853788156031974,0.1395403725873231,0.12578133970782107,0.10718735475405591,0.08878519116929076,0.1336722238600177,0.14712980901836734,0.1758853488462367,0.24101900431613635,0.29309922354887935,0.33116871050631247,0.3208552951441538,0.3798032321366869,0.42921510440517313,0.47638896382294393,0.46678029007654565
0.9754980209274259,0.6159232346238027,0.6479860192487569,0.6229173554971262,0.6329979656961053,0.5995465922977102,0.6005623782737459,0.5879923585140246,0.6199599262537548,0.6854504347582874,0.7035358751148588,0.8086069174573036,0.7713726619087858,0.7728594734210108,0.7715592913852855,0.7240016213249237,0.7356006328580631,0.6829608879615645,0.6058139421028399,0.6788805387975294,0.7035221307820787,0.7118493878846279,0.6902259108075919,0.5941900090458965,0.47520922394687515,0.5720038365800333,0.6340394465572279,0.636536665937393,0.7559277350833375,0.8227162146994434,0.836962246381069,0.8522055473813599,0.8573081780078943,0.9165395135303375,0.7785558892853659,0.6053325788643916,0.21673309741533386,0.23208245869149202,0.2550627266471436,0.17848182407139523,0.11294056160032673,0.21066093647809225,0.16849887783546724,0.2248768235650178,0.2742590552195848,0.28574470364454,0.33357919899706145,0.32059639512651156,0.32588717438433634,0.3692866301075286,0.33320788870408447,0.3709080952467928,0.33583588436408807,0.3569958632453252,0.4094887395893791,0.3374719058035473,0.28567993248957524,0.26300101195949244,0.12332614897687183,0.2783435497274742,0.2095719700397044,0.34107864071472105,0.34546824034986745,0.3776239776392152,0.39093184127862635,0.4561470507266585,0.48962101069012043,0.4664307870972828,0.6242797232653676,0.6814030202864038,0.6701733125705209,0.6301615078881714,0.6049097004448865,0.6168743569561496,0.5865653894082139,0.578587000395209,0.5910224198586203,0.5603891933645426,0.5842248006221422,0.577476485069078,0.5529758675718044,0.5443601768292341
0.3766738123593171,0.5703079570154866,0.6069134376245994,0.6062542695526171,0.6179126959212112,0.5986213508558245,0.6294097066332713,0.5487114004309822,0.47963844418397694,0.47474920046007274,0.4355666890085106,0.5231496617667846,0.5189055958369619,0.5485750334816731,0.5437086912188585,0.5059012630946105,0.45632088489452916,0.4090476446834536,0.41602688579235614,0.4826753198366469,0.41433930370226846,0.4334483184265592,0.41262904668194766,0.371677970684091,0.312770555363367,0.2809606657514616,0.6591716550960388,0.9466735634962221,0.6902355106198214,0.4628802489288502,0.26602345843563546,0.21438406317806324,0.18478820119836248,0.18341894215953536,0.2998144396770861,0.46748163758626227,0.6467395628065757,0.6770303266307169,0.6873900299028303,0.6188863221550458,0.595009544991671,0.630170159209488,0.6575193192294218,0.6934702305254107,0.6850661874793257,0.6958924037561927,0.7491635978088302,0.8153934620296261,0.8243170546869073,0.8350033970596897,0.803978904980758,0.7735757017414512,0.7123439140572311,0.7064983858035444,0.6994507422887515,0.6733443168300326,0.6499614912305828,0.6234871864553566,0.6072372294086186,0.6487235786929328,0.659965166869278,0.7009339540506972,0.6919268763405777,0.7324046238466495,0.7108726935010393,0.730660063505842,0.7638077326239092,0.7276827083958832,0.707052704349854,0.6600167023136183,0.5960095354795301,0.5650582537949665,0.5165042485252517,0.49134428611864,0.4717023584204524,0.4609245736613354,0.48292667898639596,0.4594861590360235,0.4825459782439378,0.4890837331063798,0.5165584027214045,0.5087232216545003
0.9816020966064988,0.48606891892502574,0.4502232517694513,0.41209871787817093,0.38070573478643066,0.3229570884547974,0.49225286640248117,0.4074757008629985,0.4462195512158333,0.5018074084741008,0.4760828699897149,0.5979782322334367,0.5695282569615481,0.5380516890316414,0.5512566884157171,0.48656137526797416,0.4821753430616316,0.4148170498669639,0.421894729557176,0.5578373685938902,0.44845858439827796,0.5172303434364924,0.41380777966846816,0.3254175895071434,0.22219149463149984,0.500124265445716,0.42415822080007215,0.4852098926278668,0.7196466781618873,0.7808710733625414,0.8010654090523961,0.8282840387728421,0.8280002268210431,0.8597733597725699,0.7829857177062156,0.7127142054935669,0.377168915224277,0.2831787265229335,0.35001558679739697,0.2613235029380253,0.21204971762610436,0.26453928171901,0.21296092028457148,0.2632148527038951,0.239828520555458,0.2819452307208852,0.3225648896249113,0.34020331471180026,0.33534510964342085,0.34716410241306983,0.35131896814025293,0.387868222424275,0.3933233503420104,0.5273225470417494,0.598980101136994,0.5583374938893966,0.4586896382657769,0.41810173871889034,0.4455119802509751,0.3656638098789994,0.33277745978541917,0.3730559994618249,0.38673767605050635,0.4338843095164562,0.44117453788318517,0.42368403826132806,0.5091664260451509,0.6377207572738228,0.7292873211170559,0.8092771267017386,0.8208138450470152,0.8340003272635921,0.833083273951235,0.80623298193195,0.7850900242582839,0.751498346766702,0.7864867994092242,0.7938109840294401,0.8020766451610615,0.7493615854881109,0.7238859050882409,0.7153588585069686
0.39399180505455017,0.5714777395171021,0.5934001774801234,0.5528859464231457,0.5416077188360514,0.5309816294487034,0.5862133291589158,0.5825057155263419,0.6028764124535217,0.7036406030261337,0.6618602004690132,0.7076981926776701,0.6753426262690854,0.6543813727146495,0.6428562250411848,0.6240971381747541,0.6073067782570198,0.5617516651719502,0.5615843267263257,0.633685828068232,0.5264567298235616,0.5190646381944293,0.412739806538994,0.42100301574591475,0.344087619261885,0.3919957010437273,0.4163414540402563,0.5032956022876278,0.7076133678507096,0.7751037403285523,0.8277843313219128,0.9176300596821622,0.8477348737900636,0.5464820896772609,0.3133326762500762,0.27683159129857715,0.3235705925576928,0.40767241200826887,0.47647592501761205,0.47452610271671136,0.3696457096235065,0.2879601671302956,0.21226192155256263,0.17940991020657648,0.21607295650153913,0.2771057461796487,0.33202542531852974,0.3568586224998605,0.34300756847146985,0.35796187957008524,0.4805982447194071,0.6062063395399995,0.5828514382555039,0.5993775648680593,0.5500895449011052,0.5309530136573808,0.5096295291856494,0.4691074668061488,0.4008099841748332,0.4628867420687065,0.4580407647390884,0.4867143357452123,0.48068591437183894,0.5337983279176912,0.537360640723238,0.5825371937806958,0.675792520873048,0.7168190676224158,0.760247037705942,0.8091058137939874,0.8172492429104272,0.7827755687866125,0.771169234179089,0.7383910709465761,0.6980723144685574,0.6811372716864916,0.6709453020443024,0.638555553788769,0.6341158193150819,0.5992359686521146,0.5866365557771357,0.5667229351905394
0.33791709314277674,0.46017624012038566,0.45493520305551394,0.418322977948653,0.4342265281686011,0.3811705780052409,0.46642577747864655,0.47130674883827145,0.517637002641524,0.6305151631571368,0.6707467551720027,0.689393126228784,0.6515149754352771,0.6805259658034637,0.6166077242992178,0.6053857477603216,0.5369031489711478,0.43698429708135333,0.40567839315457166,0.46754058613976845,0.4116090962248413,0.37446270054605246,0.269691708259425,0.22044364939170608,0.1758069013747115,0.15722759001658493,0.2556782615513678,0.36712262214794184,0.6435694720233237,0.7391859994455364,0.7982760739187593,0.9084419262198955,0.8081617684936674,0.6007169771074705,0.4085523572197932,0.3343022142246017,0.31394655964380735,0.35462965542589386,0.5029400332052428,0.5588895334621556,0.4510373882906903,0.34699418557100503,0.271296187476767,0.2289238916504428,0.2968748619807072,0.341783251161163,0.3940551379225329,0.4203965627476978,0.39659457770316375,0.37635379808652136,0.4687242780129034,0.5913146395323817,0.5972579645122218,0.610298187712688,0.6078829466155873,0.563111635732322,0.6024264898396944,0.6213601924596341,0.5584660970585753,0.5989643191755034,0.6867107115031988,0.7273570001666397,0.7311020438746068,0.7970854412293289,0.8079571712011625,0.7906056952598386,0.875910230562237,0.9107574283367612,0.9041114025385621,0.8592855788488504,0.8244685387993614,0.7597356533622305,0.6709881535877054,0.6633168847055664,0.6543842179297203,0.6206813333388754,0.6244142675321573,0.6132522988917068,0.6017463094294694,0.6209306878929862,0.6302407733546904,0.5945227447830316
0.47573734696637493,0.7238707903842186,0.7792222226740573,0.7939791552526163,0.8227621487026586,0.7743372452950187,0.6462619123864981,0.6202106677134702,0.6078650884639994,0.5909590540962099,0.5754000313592895,0.6013968175226703,0.6358881348100777,0.6369835754770556,0.6202846370432358,0.6444709806037552,0.6329312274683383,0.5971221329090532,0.5720838861663468,0.6390774550120647,0.6161273091804008,0.663440153167141,0.5458686265750387,0.5976549409161744,0.5028723483194151,0.5491592125407395,0.6670236743914082,0.7345427388908757,0.6696983639883723,0.45421576025971805,0.18959661012418405,0.10328799623550422,0.11206350427622724,0.1805913658958469,0.21497339625343037,0.3603133500157283,0.5358450919770685,0.6549588197200821,0.6998546249379506,0.7151572914808589,0.7399205431217739,0.735390989169908,0.7284556152072611,0.8003136439217804,0.7663547598335407,0.8001779418311498,0.8023548007881477,0.8587678339087874,0.8747011462918929,0.8287757273229795,0.7943892702097097,0.769001268300028,0.7147309399326122,0.6080098990055988,0.6070334996473294,0.591950243822946,0.643721456908215,0.5890910956629046,0.4920954944171309,0.5345063788186646,0.5526687997645469,0.5897426483259193,0.5643765732996142,0.6043631943778356,0.6139337625659557,0.5295588666511832,0.5470095896359404,0.4189525469760702,0.424269878217348,0.39430236802339413,0.2988678554621488,0.3959002601647248,0.3421206301988655,0.3096997910007467,0.3208079646618786,0.4150266952580665,0.37894107068939215,0.3473590740071097,0.3840636268163182,0.40338779887449916,0.43385949737708346,0.4498568713973501
0.3478015986151421,0.5263449980850834,0.5224930759635994,0.4775686697178567,0.4912787297333516,0.44283681925296053,0.5014666200885368,0.5182180837709629,0.5246708753140393,0.6109901497710026,0.6465422001686624,0.6568958308850169,0.6669938101894479,0.686752194838224,0.6182782233725153,0.613360353101477,0.6026709885833152,0.5457486625456024,0.512491900383997,0.5974041958058383,0.5226595788615664,0.46486707553520906,0.36922165723265626,0.37220359456065905,0.3131158341699468,0.3598370929544359,0.3434865623730045,0.48943267287299363,0.7008113532069317,0.7802365890445875,0.782750454673377,0.8710853214782656,0.9720612437385968,0.8671290982607204,0.5758234090885548,0.37418057016110096,0.27557858946714386,0.3193631713638123,0.3182387972169961,0.27345683325236136,0.21828448470880313,0.20948050340259838,0.19634893154686306,0.2381483697229273,0.29661698810019277,0.37311172637738566,0.3828978400441563,0.41700746316821835,0.45921925190381385,0.5171394196886159,0.5568630743869087,0.6068497556729362,0.5678060438818956,0.49387811945935867,0.4374169190275102,0.4436360168311106,0.4016343861316263,0.36035866880839384,0.3016908327856333,0.3066411679756341,0.3388922591605711,0.3812740655396336,0.334868231463605,0.4006564176379759,0.42195886337197186,0.477778111557579,0.5302924211503082,0.6414921575059611,0.696453691380039,0.779173492584231,0.8065336401420116,0.8251096651467656,0.8204023289822435,0.8068277356871374,0.7806125442511962,0.7578434704558603,0.7525333850751805,0.72478807188803,0.7259075494457974,0.7010607256791087,0.6847772667923071,0.6597144591895521
0.47216098007758583,0.6777158677867706,0.6937449572692419,0.6552245288240159,0.6546658017757528,0.611234058123412,0.6543127110219721,0.626639891038903,0.692653064644253,0.7539492806515428,0.7345278240992472,0.8170842749761216,0.7504823016724164,0.7799156856888932,0.7265547093760772,0.7142199515671614,0.757768319709975,0.6609868838409853,0.6879631197155802,0.8189543207105467,0.7849551587564743,0.8106076841536729,0.673541754723202,0.689063724805473,0.6294539458281083,0.6393681257749079,0.6833475892831062,0.7049371716765341,0.7893558385366952,0.8352481098464803,0.8430696635102646,0.9021453031116387,0.8951492842921881,0.7325020972792955,0.4159916708488568,0.11008358892691406,0.03950250877814443,0.21225148643388714,0.2927317685901474,0.3613117638780621,0.3516647439656492,0.30515441281344935,0.2717538319975422,0.30733622128956106,0.31717335254032575,0.38470581093338213,0.4182201480805463,0.4618004633016931,0.48679516978753284,0.4715251505279563,0.5504617515527277,0.6163719402317509,0.6416316180929941,0.6153111753929511,0.5396882668142389,0.5032504101938609,0.46556889068691576,0.4245174819045373,0.3365771253517214,0.3730565836036601,0.39424683726405496,0.3997141418647979,0.39485541377258726,0.4427596153441695,0.45021547807560347,0.46803881550216886,0.4614593814265806,0.5382600563636448,0.5814697453190647,0.582223131031999,0.5704320641958321,0.5510820394045569,0.5083014942797162,0.47726748432998,0.455938189181192,0.474169549976977,0.4844398937994073,0.44569560565492466,0.46612268998498146,0.4580724870535385,0.4778427600720051,0.460207770080859
0.2469088893260981,0.40311690444019666,0.37960188867703737,0.38129461049478564,0.3974059114946519,0.3954534298897055,0.45775262841300357,0.5133000593998057,0.5330232050598388,0.5557681531778784,0.4884151740021882,0.5130775431666385,0.4768912476480153,0.4657913074040372,0.40792728203538936,0.3915232097307084,0.34464536752795294,0.3273697696142195,0.3019762767081386,0.2857185261347156,0.1662001636851837,0.19528220291282933,0.16906581425206302,0.17984686931697452,0.14347704110242554,0.129984238405643,0.122110560437933,0.40038164191118575,0.76791630949467,0.8239271227910158,0.626425313961861,0.4127611347206962,0.2945617500005857,0.24999775451895578,0.22479821045122228,0.3301454119205036,0.6342864626858655,0.6990143920830049,0.6693148177732604,0.612274718143862,0.498502191743056,0.4886266263085439,0.48142661191599406,0.5668549762461222,0.626802402583275,0.5947814204398015,0.6209653866983627,0.6893278534086119,0.784022688920138,0.8307290277415027,0.8071019773254178,0.7955865653749191,0.7907366892582266,0.7907326496496709,0.790133723737219,0.7569407461572202,0.7957666279836877,0.7432347959826988,0.720052921903475,0.7974514855298906,0.7625900490449954,0.818381189738811,0.7560460564241109,0.8104986417300875,0.8486132731413231,0.8032371434746,0.76615938877966,0.7552997800217571,0.6906091066102293,0.656419223902496,0.6664459642893374,0.6134923326404288,0.5774923469974034,0.5576468556843209,0.5681072461629539,0.569405421908292,0.6090914596125055,0.6064667150302095,0.6538829504701094,0.6928347003781894,0.705825584201873,0.727696396909814
0.6823968798508372,0.3921180447288388,0.3744459620921975,0.36297053201237384,0.35747240288823817,0.3095325139456643,0.37290448874377324,0.3704747967508922,0.36562742519921804,0.4881553532695975,0.48298043134650814,0.6051148375464233,0.6206825983530901,0.591044162197172,0.5955796587472338,0.5715576273648316,0.5284838188516583,0.4819050865098558,0.4386267505554059,0.5098818803836116,0.4565929825482948,0.42221857141272545,0.3301210012991813,0.296349700063672,0.2748192626981995,0.28733863027119083,0.17843590254741715,0.3922555417534627,0.6666423089219524,0.7563275172716324,0.7633666020019161,0.7940377090460118,0.8524076133803813,0.9365743877637718,0.7945611307063354,0.6693952699022427,0.5241342508686437,0.4874649244232435,0.4537568217461958,0.3546898620756469,0.31320311101202436,0.3015608090870726,0.16056315948796762,0.16094779620753275,0.1612138114298277,0.11886233403879987,0.17172199204932714,0.1722092723484625,0.21475514553795466,0.20653692004527327,0.22905733003301115,0.3122924756886887,0.4086845451488732,0.4683645373970696,0.49667212046635983,0.5107216211061889,0.46585846829613076,0.4425179124484542,0.46402454920305053,0.3908336227115242,0.4756783813452622,0.4341026291818566,0.48082046471953954,0.549600268211875,0.5304998673505225,0.5562792723640189,0.7272106652397945,0.7543455855495484,0.8342165926347993,0.888252469826715,0.8714681551727648,0.9226897956003376,0.9251784522034281,0.9144982553030883,0.8519015415644677,0.8672554812693629,0.8454576903027522,0.8439921623494742,0.8460623224102751,0.801872613459367,0.7985823392413156,0.7901538374705224
0.3876396134273342,0.534959259535419,0.5464062537394453,0.5142182721300991,0.5079320835181617,0.4527027714038942,0.5451827274468218,0.5206973099517233,0.5201943386243671,0.635654939003623,0.6783954261005942,0.6996667040345185,0.7035439852284755,0.718364199548368,0.6401053802894202,0.6751972532869428,0.6584834327392118,0.538429447749735,0.5476162233853378,0.6518847586161642,0.4988940426341325,0.4834192829958677,0.43117042104192593,0.35830859172387663,0.30070943012140416,0.39436125876070943,0.34601818536817347,0.5029016822808372,0.7229486810600013,0.7770179104277376,0.786828135482944,0.8249132181252999,0.9312346354720636,0.9801343955334689,0.7771404462793144,0.6399513064705338,0.4539603387223057,0.39303408355908354,0.3546692424501481,0.24884553424993672,0.24748577963083895,0.22015356534929909,0.1531990908982922,0.10586418764986227,0.11505227815617036,0.11817922976386308,0.17105297456378077,0.18700112634533483,0.2650793479424596,0.24152001095720024,0.2643427604674136,0.31267117818256657,0.3197626171864896,0.4196551508998917,0.3872037820886221,0.34029596206608165,0.35709526563345684,0.33239495362933813,0.25908221376091883,0.33063299668269786,0.31226851827397406,0.31565460577313575,0.30895649580638085,0.36152385958262345,0.4092180940656954,0.45395198771849743,0.5049305206505825,0.6304919242418299,0.7085548140311861,0.8109417989643489,0.8544351129080759,0.8428175674265443,0.873963346631665,0.8714209872935313,0.8675021472153075,0.8499513490316524,0.8432761856257954,0.8266255593457933,0.8134187409422404,0.7670585022749333,0.7550741930068724,0.7205369325712409
0.2882193531573098,0.4343110592935031,0.4555368975397106,0.4795414901227096,0.5262577273954441,0.6375327845273138,0.6384680629245768,0.5591620865264664,0.5564754282819381,0.5656814579629209,0.492387244010163,0.5107416439977391,0.4443140122038093,0.4382673204109982,0.4338292766593175,0.43789584789981956,0.42525992212579533,0.3285505319019947,0.28362255671038394,0.3737189101632958,0.27358582907281687,0.31672741578907404,0.2858053707697321,0.2786640814678687,0.23114814309088316,0.24041751431676012,0.6324831180890759,0.6985748918463877,0.4855233340737106,0.36404323422304724,0.22757179996195165,0.1826522254315739,0.13207488630440123,0.1842383597755637,0.3168830925963786,0.49121726252985054,0.6693146685283325,0.7245144855567893,0.6963586150498082,0.722659654433559,0.7274723703786418,0.7702710250765055,0.8013613554603698,0.803622760700119,0.8080567824758601,0.8100864414728617,0.8428816274129962,0.85970494785311,0.8682424094112116,0.8411186030737854,0.8339533760884174,0.8256483053471297,0.8171856993141551,0.8316010094997461,0.8911369128020292,0.8367658917379135,0.8575179636801469,0.7751527125921376,0.7651677430962252,0.8276250580768589,0.8255466542757669,0.833553486892464,0.7587225575256991,0.763665834024174,0.6813503938574831,0.6084059379127722,0.5329757815426106,0.416694118234299,0.43214216801768074,0.3965355508333066,0.39223443821461534,0.3719407860191711,0.38719820291404594,0.4125291059793712,0.45817437013142026,0.4632049330015042,0.4985460656654721,0.551518882650011,0.6119486312899609,0.6341548877126756,0.6533640017905394,0.6732171461535716
0.33052209103536706,0.4888621629031117,0.5606334292309089,0.5189160201030834,0.5777820075890294,0.6098044547928259,0.7394123765653072,0.6889789903352035,0.6808636690452855,0.7029579052337558,0.6195798484854926,0.5882824886844908,0.6057370004549114,0.524077745273683,0.4899344015254667,0.4939496459526532,0.4649168879703173,0.4823102634726357,0.29747585974069596,0.37053255926716305,0.30854663365180973,0.3526254400288058,0.2629885326468523,0.1887976123891802,0.18452145993928948,0.22550225454200234,0.24619128613077423,0.5523758462438195,0.8995025527325147,0.7549539379163273,0.5001164565093501,0.2894731076505266,0.21353991516119175,0.1476126677598889,0.1500941277182677,0.4013271267050409,0.6625055454486053,0.6900872911410696,0.6997848953056426,0.6390921501013647,0.5729930698678719,0.6005792073237095,0.5938294081975841,0.664787136599168,0.6782893863618688,0.6425410305366227,0.6620375184399248,0.712644873500986,0.7903454230345801,0.7910997392251884,0.7828101010086033,0.7647827340129377,0.7706273212019611,0.8049038142888241,0.8253592298994363,0.8585267002204222,0.8761931615916008,0.8125573736026854,0.8152509078358443,0.8751283370635861,0.8755592843478787,0.9108166676516628,0.8651662741900794,0.907214047496228,0.8379507762474684,0.7263890894058591,0.6747473806391908,0.6081205097300895,0.5330535156291618,0.44030947320076386,0.3744342068633635,0.3327233263205075,0.34037244456649207,0.32839712008269695,0.3354672240921982,0.3604781083595909,0.41774266590498693,0.39994111939535093,0.45956039402934956,0.48944945205184,0.5173339961045348,0.5267638726050178
0.3927501952656026,0.5755363047116365,0.5913008673746893,0.5791841456149711,0.5869839770891765,0.539063801818229,0.5793910012165673,0.5877890232216818,0.6303125742785609,0.6945960322950671,0.6657931915548543,0.7032732433002781,0.6503770545227363,0.6682098192721342,0.5942898886184481,0.6015064635339384,0.654356868019728,0.5685043736292623,0.6122251309972304,0.7287954861374636,0.6676562868167674,0.6731314336481216,0.5812600191364052,0.5835442381893186,0.49122445307843815,0.587090083813385,0.5943750707843651,0.6299243274829481,0.7790075942462037,0.8330001045503654,0.8236681731051126,0.8566511644690649,0.9008218377436304,0.8556067740541087,0.6436155170908414,0.3846708134351746,0.19887703949276503,0.26008423308986783,0.341130433096416,0.2760910420126037,0.2309990985179915,0.191160974979675,0.1357321897243241,0.19546881411582828,0.2038906014549534,0.2255536801308406,0.284967324969888,0.3090028461703304,0.32855698216009577,0.30347759518230777,0.31255406799487245,0.43340923680591537,0.5134197736085334,0.6122367300985361,0.5363308383948764,0.5018644937222754,0.4223538061755694,0.386669040096841,0.27685707047156066,0.29767471145630564,0.28855613249746526,0.27284037412169027,0.23766845492226407,0.2639939599008081,0.2571023494889465,0.28556320409479075,0.3048042917815471,0.4320022420008811,0.5399412019797425,0.6181660429743385,0.672734000070411,0.7275385700732462,0.7687047023377074,0.7848047112191984,0.8012006523181061,0.7990041426631214,0.8116444101380045,0.8066410660297803,0.7994250031553443,0.7789425304990991,0.7549099384220873,0.726637754352394
0.22854134524890504,0.34313246478586834,0.3341682803293984,0.2914723466968437,0.3272060950709683,0.2991758126280777,0.40888663834101874,0.3671851446826683,0.4203529540558416,0.43559527942602794,0.37098335682467165,0.3904625508234376,0.341587516358121,0.36256317732464266,0.38824165867252747,0.3712494601107134,0.38811097594765304,0.36571889947163855,0.4023131679531837,0.42471452921340347,0.34691564348870413,0.3566008800433907,0.3451635295301294,0.36880757992857177,0.3247330149966982,0.33405269514180075,0.4181507254724809,0.5479352727878006,0.7178500819719846,0.8171614786170361,0.8512228891149076,0.7707859793775257,0.5104918241453874,0.21332502383370233,0.14274068437601894,0.17081359384150985,0.37593602013900607,0.541512210573518,0.6180484975301792,0.5739232113543784,0.5295301881591815,0.5146242197986208,0.49294398210995527,0.583499841543587,0.6063491568368857,0.5966145938726779,0.6183586708618809,0.6043718261304575,0.6580214341559176,0.7375874487351678,0.8005991273268088,0.7738911507227795,0.7728346155679016,0.73711915268674,0.6727078932860888,0.6265200499705743,0.5837177552411101,0.5315711535115242,0.5062482482776516,0.5021748088471395,0.5138148319789256,0.5224566697408811,0.5114173051621302,0.5618007330089774,0.5482877362669273,0.6127705073562577,0.6553061288731978,0.7213333977428005,0.7391963915432815,0.8035881298592608,0.802758168919963,0.7598623005380964,0.7235611816095273,0.764694037715063,0.7667767912610117,0.753931834666763,0.7548476870539308,0.7704967511829374,0.7894924521503487,0.7923367452655907,0.7717792224545308,0.7656303098606434
0.3385676720988815,0.4991076168118012,0.5067398452743708,0.49649947126530286,0.5316236176132748,0.5150141980243276,0.607062891997276,0.6042420724191999,0.5783826742623828,0.6069913781883556,0.5658566014533871,0.5759964534839745,0.5903050381633115,0.5298118547579633,0.5340432703222991,0.5152745338142223,0.5181011659921027,0.44054958517755455,0.37502742622714863,0.39675096553974726,0.36279344318502754,0.3446170366411706,0.37044502223809134,0.29251432426616825,0.24294413839206908,0.29916797549347324,0.31130320614098256,0.4114680620113851,0.7481390233482714,0.9339610108701168,0.8397675474943656,0.5920183801275081,0.3583161595243465,0.2265239281454049,0.1832113238840627,0.1783409356717458,0.38379777540102045,0.5827358839695479,0.5935394570400402,0.5448106380741458,0.4542303903441205,0.40623658788700023,0.3920845585519158,0.46699228629157014,0.5392152870557637,0.5495699590289796,0.5669718091311503,0.6099518154974309,0.6869873842814391,0.7391107303283037,0.7069754741663896,0.7004085111084283,0.6526529645885685,0.599959745692187,0.5824157797870082,0.5499359609089125,0.5572657090563551,0.5019332607434333,0.45119722955548786,0.5059341891881262,0.5250347102134383,0.510177655809324,0.5314223605088104,0.5905276988064536,0.5833181697803597,0.6431775607910164,0.6822772480680643,0.7237780471972433,0.7669048747390272,0.7761624064895812,0.7495144513864539,0.7344684028634886,0.6870441809397174,0.6676190506672391,0.6643364071057942,0.6155465195668336,0.6366730443798367,0.6289247657924784,0.6696880036912356,0.616929998705073,0.6592726837563994,0.6227200290789717
0.428335862947795,0.6098923428939833,0.6514690075092564,0.6006294016366054,0.5831427815904908,0.5083600959572536,0.5897983406690246,0.5761809477259228,0.6272058966039742,0.6834190472502667,0.7339004760270045,0.8643847004100174,0.8171958842633205,0.8263275872961062,0.8310500912615757,0.7386046636402412,0.7793541987342452,0.701460184223264,0.6697098680058559,0.693139566496912,0.6789336379415742,0.6247414604121262,0.536451774659293,0.4748173815339166,0.4034469094658335,0.44168070906187473,0.5063331879638138,0.5606856100345342,0.7387886103153021,0.7953802990657771,0.7824215334244006,0.8761011152856897,0.9435621485699218,0.7832955687776874,0.5166981497994987,0.3389758174782356,0.26966951992177335,0.26995962006686325,0.29087761396301426,0.38169016423563185,0.35489677790511975,0.2546312589490113,0.18446047354525785,0.1777040149848942,0.14301889079181318,0.21897684339833312,0.2946893585365939,0.3583452670888426,0.374691339697723,0.38187746557481184,0.45507474674103454,0.5828493271149359,0.5514775366908904,0.5902141082334804,0.5434399381895669,0.5149306764921642,0.49870951648970807,0.48740848963427097,0.4517711825303867,0.4832462708179551,0.5192281034422749,0.5309933297794512,0.5175512247907987,0.579113882991918,0.573247664219528,0.6126114513174188,0.6097700854618744,0.6681510138546025,0.6212738268905156,0.6580507268730701,0.6095655029459007,0.5910409697242759,0.544224390878674,0.5366741536112916,0.5590552271145943,0.5516052997527681,0.5713098794561134,0.5378934036449389,0.545561125152927,0.5238582047916096,0.5700331472735863,0.5456725078803433
0.9865212126851476,0.5320171830351562,0.5321132436959156,0.5111030478405215,0.5046903235145023,0.45292128523785274,0.49006814931992226,0.4820501605728282,0.5102421134506681,0.5759961942282064,0.5920785434982913,0.6825362788587677,0.6688033933659886,0.5770489451306681,0.6043828886206056,0.5979745790856519,0.5853844931902973,0.5492830128013926,0.5586549738264511,0.6455802912598413,0.6214192043261225,0.6694716943924752,0.5796143202345306,0.5827485403647982,0.4690088172222988,0.4882950575737899,0.5674944461498174,0.5946998769998877,0.7625126817617005,0.8216366024155842,0.8188923944601694,0.8516435772662345,0.8508800567499916,0.9006376272651333,0.8855288574207475,0.9118108419671204,0.6212968153362748,0.3308874668792021,0.29149821162785916,0.22785492176284772,0.13533323766830307,0.1023096625724963,0.0743315160292245,0.08578951695648107,0.10765020745308229,0.16473068874642005,0.17999451932686106,0.21561772344715946,0.2350966009504899,0.22348354350896646,0.20771171193879467,0.2307953476286977,0.2733109731215686,0.3861653953701236,0.40587080284972893,0.3793903258364913,0.4097421802440303,0.29815597884988254,0.20300463984588518,0.20258499237168415,0.19838458422536398,0.17851998063801455,0.12701250141774711,0.12795984973926178,0.18027916032939095,0.1916911658549839,0.22278549508730305,0.3508812944051244,0.45259801741646216,0.5661788294584635,0.6383403718298518,0.7090387433064866,0.7862496122412823,0.8240599690887584,0.8495472741781129,0.8923430851825531,0.9060946991499137,0.9184172346926687,0.9325813613293414,0.9201695274415224,0.8666162850679069,0.8442245310352559
0.39477961206313633,0.5851345035978592,0.5803559000458182,0.5604672244299355,0.5918527727369884,0.5939131462953986,0.6320344008028868,0.6607350647260033,0.7209194471131264,0.7037605290677835,0.6678120715868121,0.7195121924801802,0.6836380506361673,0.6780415301372381,0.6460656990278814,0.6427909026930959,0.634360910028955,0.577642218126378,0.5662227473140303,0.610718515124722,0.49645584271200116,0.49637464188331915,0.4584917781396336,0.4557789022715528,0.40162886348535587,0.45551271404633753,0.4682832645518562,0.5131426670343502,0.7751471634858639,0.9366370467072161,0.879936906170796,0.6376365512126504,0.35610332385799615,0.16785666073216532,0.08371646267987254,0.03749064488281162,0.3011378630047792,0.5646740740722962,0.6075279063717273,0.5380090735779927,0.4676458710337351,0.4005560051751278,0.3993500458440452,0.4880873845469781,0.5688402848683487,0.5737281962038123,0.5774479328942665,0.6346497545030174,0.6665144695247341,0.747869830968948,0.7170554203702588,0.712836024888439,0.6064028833259014,0.5498242028961339,0.5743153421224831,0.5711889516686284,0.5245734390764237,0.6213141511371445,0.4735708699435655,0.49034728207589817,0.5115602349082059,0.5347603184470994,0.5444633502785292,0.5541734726298821,0.5479890560971316,0.5383502156167699,0.5173981288860072,0.5920414253202384,0.5688912660810672,0.519488140379856,0.5300943552613071,0.49768453777135135,0.5364041524404699,0.4812690235729197,0.5014630231132771,0.5246699469226448,0.5701226896380602,0.5126701314708925,0.5540168161378645,0.5460495376416993,0.584415415234476,0.5904817979756044
0.1992771032796342,0.29818308486489015,0.28443609712255263,0.2732014287799148,0.2773012674838915,0.26761903557278666,0.3601398535828343,0.3578773839923895,0.38856290349325606,0.44490175134898663,0.35104250650757185,0.37952563046516113,0.36516630190990595,0.32431565050029476,0.36257149302854796,0.3171913378380388,0.3590422521741361,0.306809868438283,0.31204471106420384,0.3536146616709676,0.25265592280158067,0.2707748204403744,0.22086226326575692,0.22913138891587392,0.24242492417961348,0.2676165841728218,0.2684131644313754,0.3849396783096189,0.6805215888985181,0.8168519229705741,0.7848104803446903,0.6043460794535165,0.2861876228765332,0.1553083138619633,0.18191466921926314,0.2239164327424592,0.4326322281411885,0.6829671827712575,0.7086783173424701,0.676843599531307,0.6409066599620407,0.6394132377181561,0.6130243233306232,0.6954875711250919,0.7249583484695161,0.6981937071036274,0.6750965557495455,0.7049059581482382,0.7824647899784405,0.829363829259414,0.8166743267260428,0.8056140652557515,0.8140133377308568,0.781750182873157,0.8282854309157424,0.7712559639505767,0.7229856379926833,0.7282185337559584,0.6958229147925534,0.7455079256214068,0.759266685478769,0.7945421893611172,0.7558111073025315,0.8146579638019424,0.7971435251006312,0.7996042990639121,0.7646882895535096,0.7026959325364062,0.6934003454250517,0.6477747319576077,0.5814084967227732,0.5871751937578207,0.5878710563651515,0.5863161007224249,0.5904516356035105,0.6090689857578411,0.6463089193141259,0.6651531505063331,0.7216093497507795,0.7265326174002986,0.7603009793911222,0.7866816585088588
0.36490751626934076,0.5188105542977736,0.5206966119849047,0.5271414911594442,0.5135697805107493,0.4656171188814313,0.516574493090359,0.522461553876733,0.5617598137204733,0.6512137102511633,0.6841962293099524,0.7356110573459329,0.6871451614750195,0.6893934799710496,0.6931127471229666,0.6794236279915151,0.6255830249736181,0.5554941713184448,0.5417596494691398,0.5896486461451149,0.5119813399639205,0.46108781221531636,0.3763269652851747,0.36213779768730864,0.3347801691613729,0.3502165612224929,0.30861788434565013,0.4562142905593952,0.7024019343711138,0.7729034750434243,0.8220416334623284,0.9041786763869756,0.8101498400804716,0.5622853195372753,0.3286130537786589,0.2869779352741265,0.280579867642895,0.32361307058687694,0.4741602397581157,0.5166993139708551,0.4072699563695257,0.3113389047316282,0.21111278732295757,0.1961350846719797,0.26109159520543335,0.34765053457539874,0.3984182068302913,0.4506135137980018,0.43938747323054705,0.47538592275416036,0.5768765093727872,0.6619823168593915,0.6629116042940809,0.6581171118345411,0.5698904975599932,0.6338807859563695,0.6605415897078118,0.6244922685253088,0.5585351256283253,0.6211439767588689,0.6401226340457234,0.6587993697761397,0.6305024724483035,0.7142897767683563,0.7354656615263876,0.7194946434320058,0.7517707961185649,0.7506644811102292,0.7331377411000963,0.6964449236182082,0.6698779078038603,0.649382988181921,0.60762665458885,0.5931142759858652,0.5587478015650862,0.5608137673728141,0.5710886305728341,0.5405872044528748,0.5793550623989661,0.566775898948362,0.5903644437632571,0.5961188259175814
0.3988603255583256,0.6083781615895956,0.6146345404732745,0.6168457346740706,0.6406267214844008,0.6348369785743289,0.6803512073098925,0.5481057412467725,0.5378332423932698,0.5683307688532412,0.49089984725896857,0.5460739983204324,0.5362462120559338,0.5408530122551548,0.537564620437762,0.5743664623988498,0.5542915916374503,0.4801595087605961,0.469109565360399,0.5584300879346177,0.5325071566259093,0.4849201698083855,0.47414382733026983,0.4898589004934143,0.4053260115681361,0.44371201095169477,0.4904390962354761,0.6038711453688568,0.8064278222899895,0.7640540875959623,0.5728980399506326,0.2488473522793465,0.08851754058109496,0.08533147325445789,0.20569347169394414,0.27784642516316527,0.4819760023935702,0.5793239217555154,0.645786874390887,0.6504962364210803,0.5839610298452403,0.596773539761923,0.5951737516615221,0.6571283917637463,0.6875133792326382,0.6469021409203124,0.6845600832063246,0.7397227253722866,0.8213868623427085,0.805965890657484,0.7859073428448653,0.8129233847885075,0.6596942212084178,0.6693639800049668,0.5438590015064131,0.5629669568249767,0.4783908945936556,0.5301388655205197,0.3816665503951396,0.5019982205709063,0.4609392142481946,0.47738474389723795,0.5043485004774939,0.5228937781563372,0.5603031060986897,0.5818154447785231,0.6269144213341049,0.6365884985791337,0.643119771421266,0.6448834444512337,0.6159567081579229,0.589964734475886,0.5754781334934065,0.5476262495577631,0.5141118070126015,0.5620803893125134,0.5594124292235673,0.5448663994668932,0.5883525747757489,0.5780359031369336,0.598571588579853,0.5795169504311686
0.26770713037828103,0.402305401533741,0.3996374666987276,0.402122156057282,0.39128279220832035,0.40725881658893326,0.49563464920192085,0.4230205910333124,0.3307700612344717,0.4564364984353214,0.4410563457171152,0.40501912529982287,0.40333714359874473,0.367542423052142,0.4178356786545125,0.4434139038039556,0.4366646522298211,0.39964862797706524,0.39184692998409776,0.43164753692494984,0.3549852706417042,0.40794849448074405,0.4342672714293838,0.42242602474333396,0.311884089594607,0.38612582296213,0.42598139030998555,0.6310499019863735,0.7637999293102283,0.7158088360630095,0.44139206354447413,0.16699554893267687,0.1270661474335637,0.1541877023885332,0.2052424526797343,0.349357713886573,0.638976049393755,0.6736441081594114,0.7106068476191967,0.7150139664848678,0.6940599686404634,0.6935494254984251,0.7193542732211484,0.7921172067204434,0.7960841540730605,0.7410860028377371,0.7727377673261832,0.8322076942144752,0.9095245421265195,0.9356209290215736,0.8975226474445023,0.8708439340555263,0.8462168284223788,0.8354450641052428,0.8634457572634096,0.8423733788451588,0.8284995714598751,0.7710345465020378,0.7399731718750191,0.7875115155207397,0.746262750669528,0.8148286894216975,0.7406644845448138,0.7449327109418087,0.6588338307640108,0.5994910655118084,0.5149511304196408,0.5014788808077728,0.4778662012596137,0.44777325879631324,0.41212823118329167,0.426691354797174,0.4323624179727175,0.45973974517142135,0.5003694286364664,0.5014297075925631,0.5820710746623059,0.5888451279408828,0.6374651840637229,0.6537429175316429,0.7022817821413843,0.7263619101127456
0.31171030292683527,0.4736867776226263,0.5272846607721727,0.4648660179897396,0.4808105578855111,0.4818726738809427,0.601492094696768,0.5964644300384053,0.6871270761993389,0.6793784367831772,0.6271227118339968,0.6800347358553203,0.6084391350916715,0.6008856992169357,0.5525158007059505,0.5618254966757511,0.5197467714540176,0.5068478501789173,0.4674778528283001,0.4564563704043736,0.41501516480405476,0.3650024189674351,0.3654770103409586,0.36800450512853095,0.32402297499172433,0.3558237521692658,0.3920635006859358,0.4069777641390128,0.7279510282311328,0.891169307633958,0.8200700837596654,0.6120429786903709,0.3659068773914803,0.21818404521513945,0.15772151594290962,0.11656028349342762,0.3475927307909674,0.622405682507962,0.6385138493148945,0.5644604274980315,0.494283149366158,0.3925298649463833,0.4380866610657218,0.49026811896738015,0.5416212956200412,0.5951651339235763,0.5798009101879571,0.6026634082428513,0.6620852028090645,0.7623458849922754,0.7646468444697876,0.7191369857582425,0.75690864314804,0.6842842147290461,0.666344037131541,0.6961062797624185,0.7543186932009862,0.6273044149513323,0.6965473476016855,0.6723853142823315,0.6350093892529979,0.7558112308279569,0.697646750968894,0.7868139786066783,0.7661832654367985,0.7494469467965954,0.7252455744220143,0.6406477884509727,0.6370731560067222,0.6032274462364458,0.54020654079875,0.5043346534177744,0.4974154098442826,0.4866240067570434,0.4704990175547666,0.4844173986043387,0.5141437944760555,0.5145179531380003,0.5381847651404061,0.5600792720875237,0.6089359903627635,0.5955417333045225
0.3596698399093124,0.5414923941843773,0.5536345414232394,0.5211358963807592,0.5090670785675895,0.47548126557508535,0.533814454821333,0.5472609540031468,0.5561573932252838,0.6353081066903756,0.6430237573394677,0.6691308508443239,0.6798010468517144,0.6548230963217034,0.6065711348521923,0.6299525884948183,0.6165078911791478,0.5451606003188405,0.5544622240346881,0.6064038160344557,0.5477434926280843,0.4686039073790027,0.431797080560179,0.47037339567548286,0.36501950102714553,0.44028343473024995,0.44166875325736193,0.5206102160062855,0.7248833623672746,0.7977350792031528,0.8159646805631967,0.9162635277199269,0.9022448677718944,0.6804659349880345,0.41487815723831223,0.2992344591267795,0.3134630309158042,0.3760669499627378,0.4030727104658133,0.4033322386302942,0.32240670055681697,0.26202822412882987,0.17198413006003588,0.1503719654032475,0.17342733352300144,0.23701751921781294,0.3041456524432361,0.3509524793058527,0.357230488851222,0.35710315512379814,0.4774873267604964,0.5947183567607252,0.6027910008028502,0.5437642297722586,0.5129305818451575,0.46943079825374917,0.4705548676464538,0.42125798647887214,0.3471709301599774,0.3588645234122675,0.3576787597763139,0.36736891960761064,0.340433053377996,0.37302743087302814,0.4083415453845044,0.41262768198297484,0.47613436353781347,0.5681126955827263,0.6588404782602004,0.7054009104229452,0.7462814103291127,0.7867131722281092,0.7847443683429987,0.8046456807354423,0.8179410541492906,0.8017282723420227,0.8166087886586251,0.7924852875495243,0.8081574001026854,0.7897600221424724,0.7572570932921988,0.7361291403218813
0.3328418163308677,0.5144237484691965,0.5236856778296772,0.48173077076440046,0.49648461241080066,0.45585468243527466,0.5034414232009148,0.49500104657871064,0.5366807974828939,0.6245008688701087,0.585886309041157,0.615257790339634,0.5470391758549354,0.5813031192221262,0.5376534017574119,0.5117399720323467,0.6056659012867136,0.471682905755328,0.5461831290252059,0.6501787967926567,0.6056460677688352,0.6275467729253693,0.538542772784338,0.45882168432254744,0.4956091262977391,0.5166366717906286,0.5720655505499017,0.5793759504232201,0.7638797121630594,0.8166930626306007,0.8251483062341936,0.8636115339650301,0.8735984946259256,0.8740246066965103,0.7348023113741105,0.5498055355093706,0.28934631914042397,0.29344698919402035,0.369649734591341,0.30547114684454046,0.21371443217942787,0.17906519138291943,0.1299292369062376,0.13476135369416187,0.1757154370471754,0.2216056069115087,0.27000234791203126,0.28127910395061106,0.33387945866400603,0.35519163686567956,0.3272769953467822,0.47484299942487684,0.5422861783747714,0.5961755703353566,0.5898330598699097,0.4849915127277304,0.47041162620311694,0.4493803715655583,0.3435389748278263,0.3628879660982097,0.31093587221148,0.3753478033420151,0.33606587804324506,0.3451622953775101,0.375896288534148,0.3987445221503749,0.4670309250457785,0.5456871725233807,0.6201563448868292,0.7555404646600881,0.72715617406166,0.7627897636752033,0.8125662838192418,0.8158147610246552,0.8518391376619299,0.7987387245708373,0.8315254021964944,0.8288610481125763,0.843016757464717,0.7934749966662182,0.7864868555129239,0.769481885413771
0.4523331233152058,0.6737711017417646,0.6999882604327985,0.6231830307264241,0.6292349532864964,0.6039138968240443,0.6501507955364457,0.6274647584385421,0.7041976690630518,0.7835798688637099,0.8384522402272174,0.8982672328528044,0.8926299935612487,0.8983287355645144,0.8521495001965591,0.8258966551137974,0.8396493086707262,0.7241907615796718,0.6777603782372691,0.7788169776451619,0.7274432780431591,0.6716801476224297,0.5129668830419652,0.5151252715828748,0.40564455714490466,0.4789764951785812,0.47128102661287147,0.5624191092923161,0.745428509046589,0.7783417063581849,0.8357438458112318,0.9623054171132311,0.8892293738327905,0.6712107607177477,0.40271327772059995,0.2402818868112534,0.11092972096792875,0.14699616010260463,0.3870425334023543,0.4604646376064826,0.3517172939871622,0.27587473648802197,0.19901605540142087,0.20901189520763797,0.2758672439650588,0.34627539858065526,0.41559106955497443,0.4526034405077852,0.46406003944829965,0.4642067242408752,0.5670184246050965,0.6209194217407206,0.5958166265198473,0.5550958302988612,0.507448727409824,0.514824853831221,0.5469476514734843,0.4940749278208748,0.4494075047763119,0.4849767994775127,0.4721600632580023,0.5275078644741559,0.49079843524113476,0.5563311587230504,0.566673782545663,0.5041325426637839,0.5484009348380017,0.556972078783194,0.5191837370066081,0.5054022631370896,0.4826591108805873,0.46416654266069857,0.46212824862425167,0.43887430426933105,0.43469895620531734,0.43878801296395,0.46289678731834866,0.4324938050634508,0.46485029553826923,0.46833592016362435,0.49536064046046113,0.4783952578097778
0.29892960246249545,0.4474850158239527,0.39875909908121376,0.3891432105440704,0.40310487030271175,0.3131310681926903,0.4114082302244253,0.418507157579156,0.4397215577716607,0.5101917216786703,0.624664908854397,0.6765082576634333,0.6586873408901457,0.6345794148554421,0.5835282136111838,0.5713855397540345,0.5519114295406005,0.4662627446472724,0.34876011749080016,0.4301001483706751,0.30836524990625136,0.2945779364003546,0.22974683734643309,0.11833599958305718,0.1722182109201008,0.19172340670931215,0.14581932806484132,0.3646980056192733,0.6426435139927641,0.7430516211695539,0.7497858801614261,0.853270639235537,0.914754578251909,0.7241012204305909,0.5128342202360014,0.41227922682769946,0.4162385637660675,0.4171804052331265,0.43502746613205967,0.5136461032788694,0.4359043200673711,0.34943277247981075,0.2658237838884864,0.24893899221541405,0.2537412124261421,0.29254065558393816,0.3233566819614288,0.35988645393138047,0.385556071376411,0.3512117681213139,0.4060691169388084,0.5703388637510765,0.5954522595840419,0.5895086276661315,0.5830428278842621,0.6061264178475585,0.5928182605556171,0.5953436799119781,0.5610008163485112,0.6614334393865298,0.6689118319891759,0.7070995170281366,0.7674964280766141,0.8481075487435923,0.8568863286768097,0.8799318581063207,0.9708316574414824,0.95673418498196,0.9565113253565427,0.8873996113541082,0.830289363222053,0.7578466515106879,0.7434807052752621,0.7084168997976317,0.6672511688321858,0.663904540132622,0.6617954663633268,0.6161939984079232,0.644495365116937,0.6630139476901938,0.6623095277817382,0.6769847641503556
0.5329567332429388,0.7783609970069306,0.8283616610667619,0.7598339310507625,0.7635242802101829,0.7369366348720416,0.808767293968258,0.7627700064405998,0.779137115632422,0.8678184799961317,0.8362497548331262,0.8342891741000711,0.7952907885945553,0.781883974115294,0.7316006832382138,0.7623205265593285,0.7575979313242374,0.7593821628773438,0.7910664096493755,0.8748089435793606,0.7969263767899675,0.7885241806441081,0.7393213537485974,0.7290213522245221,0.6174894045435647,0.6730597939026769,0.7471539868060505,0.6889346249138008,0.7883126981958218,0.8389434470812454,0.8466387979926128,0.9118582248741331,0.8292853515243352,0.606428649224391,0.269472093827689,0.09686400197145972,0.14135488922285777,0.36835246657016807,0.40830963815301524,0.3932999953596634,0.2748370738833118,0.2463221543198023,0.21035026631378573,0.23479995285016642,0.26196134095600776,0.33279214765755744,0.35992780525960727,0.382806537670663,0.3584351404757128,0.40419621495471225,0.5078417248474156,0.6119817154526344,0.5526785827539766,0.550726576734903,0.44246452261639363,0.36691701206735444,0.31406125396957385,0.33369159237395707,0.29022493032887714,0.1998610863191984,0.22027385399762267,0.20409194266398312,0.23840180000495714,0.2688793237923164,0.2639461404604483,0.3173153403104271,0.387015404429333,0.43092730849781624,0.5424521824636612,0.5869613366038748,0.6129824026991585,0.6037175320107886,0.5766846788224309,0.563287956195424,0.5548079694100017,0.5459127321938566,0.5130145165285092,0.4857335031755468,0.5079378902983581,0.4681023754752996,0.47066531282640045,0.44782388619396485
0.30825925200164495,0.43451887953460566,0.4418612100500561,0.4204661637705882,0.4300386747782998,0.4135159429859586,0.45422195717142955,0.46982933874605265,0.5229024693390214,0.5861027008228523,0.5462128724528245,0.6004738045040356,0.593005925639205,0.5458912045322633,0.5674745941253155,0.526649823061419,0.5024627864245756,0.485007603623161,0.4640582992799235,0.517627954109759,0.4155420510530833,0.35056665129866277,0.3048354247273141,0.3302757781703224,0.27728244690709414,0.30529742743515137,0.33550808184491865,0.4717235511673465,0.6931350467421034,0.7853695498466156,0.8869905621053291,0.943896817541658,0.7284562842068649,0.44828291224853034,0.26457522071701345,0.23750294837208374,0.2852136273022927,0.4129407162402282,0.5627982962109662,0.5252693130906894,0.4114062751392481,0.3710948822825222,0.2731181910671836,0.30192849745832095,0.3436223974471412,0.3950552430288558,0.4446168002821665,0.4539843594209976,0.4971110508320461,0.5548646863412418,0.6575749975349813,0.7024636739181471,0.6870646949794138,0.6619867921830151,0.6462030525598563,0.6204800332132447,0.620827267966625,0.5931419263188629,0.5689142564803016,0.6056723653288876,0.626062381506525,0.6608923781309998,0.6486010932843957,0.6845276903937292,0.6973241221411647,0.7028827589979314,0.7338622716882457,0.772012773063639,0.7686684996738704,0.7712718815989691,0.7317228103647881,0.721862453211002,0.6950657471358717,0.6728808389120221,0.648819078599596,0.6413475324658169,0.6594477534187193,0.6382597430129154,0.6689223560653107,0.6673377998952943,0.6633314512144577,0.6568326011319682
0.9817318925406372,0.5559448560479735,0.5696248060821489,0.5364389179839179,0.5198681768885378,0.4804678719756062,0.5044148637341384,0.5060349333209828,0.5490955546325461,0.6144680462075434,0.6088208079499271,0.6772485563282457,0.5991427224062918,0.6110382361402932,0.595955927408351,0.5734348783683852,0.5908970324269862,0.5548294510720005,0.5310481816904679,0.6123728841177611,0.5654806238802322,0.629677439189491,0.5405607825216365,0.43518736847187967,0.40626021766744613,0.4694090539377047,0.49156947322083344,0.5629047408469255,0.7398066271342104,0.8055680148237692,0.8144031998413104,0.8416316821689338,0.8575789258338858,0.9137508797295737,0.869997594315247,0.8097832505084257,0.48255593881722314,0.28607101420157877,0.32986454989394387,0.23441140726850596,0.10498128643675297,0.1544348748103629,0.1130656451553893,0.11772316621580148,0.16741199066999546,0.21398671120072937,0.21457972801187963,0.23833437827437626,0.2639249588617873,0.27222333728368986,0.27586439630804777,0.31121763373615696,0.2856083424341674,0.42503900360415126,0.49777504449119997,0.42125560520192745,0.36643671720295956,0.3352643063985553,0.22219764201343123,0.20152108901084842,0.19771914631276843,0.21809118632902647,0.18442123990315573,0.2078278860843643,0.24065375591772498,0.3255517865837857,0.36780266002629824,0.4320200484231296,0.5558062305145981,0.6795406293947286,0.7146171990471787,0.7516514938245706,0.8140858092320356,0.8172320200282128,0.8219915730682639,0.7999052204319606,0.8516829659411042,0.8400849720220077,0.8341818524694005,0.7945217364437034,0.7699453161931206,0.7342198594319449
0.9728721372051845,0.7029112909664135,0.6969071240240274,0.6807867061901834,0.6578149844043784,0.6380108447196413,0.6247577314795317,0.5998146060569816,0.632771876020384,0.7092106993027336,0.7260330495493975,0.8203879180167383,0.8114329428623832,0.7734462804124759,0.7574931809220391,0.7264538853487439,0.7045138690048209,0.6862768485134195,0.6457136827178168,0.768660405258784,0.7535586617491656,0.7698475051500826,0.6972251750969463,0.6317203767967486,0.5332510639927113,0.581998483212545,0.6741898809490257,0.6064310374327971,0.7597741305106597,0.8376033965263241,0.8335782706285392,0.8372710479198623,0.8483358009957647,0.912367437818638,0.8538620390671304,0.8277063607724868,0.48837433239676864,0.2634077066424594,0.2553796007752156,0.1630517656248882,0.05328858230711142,0.1428798981534235,0.11460519785365997,0.15892899076862843,0.16040079381850492,0.18728898496142143,0.2249469871416508,0.25550611929979855,0.26948115919341215,0.22343466559278893,0.24125552424636082,0.2474590480978395,0.2523729612717777,0.4003105479485659,0.40424510436838706,0.4024679875802855,0.3483278535165507,0.2790381829607914,0.2272604102793821,0.22800404555418663,0.20336980088799095,0.24775092205711258,0.23412440104821342,0.2822383747848608,0.31679204658710347,0.3240296572818747,0.43214893169786817,0.45354537067772793,0.5941134307368319,0.7021618086084597,0.644907657429409,0.6629090280485236,0.6852040493917166,0.6587971106942669,0.6276196342779827,0.6277140444746547,0.6107743818145919,0.5508754632606179,0.5860444958232699,0.5393473924219391,0.5290507205771022,0.5199349353440219
0.34199543728060966,0.49221013772336936,0.5182377297190309,0.4811580226917302,0.5052802044858321,0.4918494834018388,0.561962988067152,0.598817879416446,0.5756971972469792,0.5993836358871225,0.5845188434374649,0.5673344364973072,0.5732437405090586,0.5660028449037219,0.5145542960159427,0.5239675182809962,0.5007685071745573,0.47342477323718657,0.4060112937849112,0.4383851392683463,0.35676560747085184,0.36782756957339996,0.3741511031011939,0.3337453709478609,0.2678058727044237,0.3090666874804345,0.37109822999371206,0.4230157793038774,0.7600694763390584,0.8883055256032084,0.7955454895930502,0.5453631975681617,0.3166650965994564,0.22232677477665452,0.20705586246340169,0.2313220996824712,0.38811055819024065,0.5778368060951407,0.6126935688785351,0.5525732734798134,0.46687644459934174,0.4090376754010826,0.4084703633346778,0.4755127163753048,0.54301607238562,0.5667105460501413,0.543673183963031,0.5839824518470189,0.6555799970670186,0.7447907537298748,0.7556170137833076,0.7514382308484245,0.6816436806946694,0.6548844050420387,0.6232563828317774,0.622949599942836,0.6091721639307373,0.5810972285972666,0.5187155545601081,0.5423430834420913,0.5753340045197585,0.6064546188958907,0.6271105015861067,0.6271338327608438,0.6505083690557073,0.6783258068479061,0.7305051106318214,0.7135245348660948,0.7099240451585842,0.7707038343099358,0.7251380876783099,0.6883723994437059,0.6533686123716531,0.6291445425114099,0.6161180153992729,0.5911289660901982,0.6164657028110954,0.6060782275184183,0.6268254812306522,0.6329047735751059,0.6086797320907564,0.6316879205194817
0.2479927859167469,0.3617195914241859,0.3547331555043336,0.3307830616689674,0.2925838414667038,0.24981461278574466,0.3053063786742358,0.36157835311003633,0.37465063840193863,0.4455469145331694,0.5084187091235052,0.574430483249364,0.5713882769297274,0.5697083041676475,0.5206639800478807,0.48399786404481565,0.4709521605232851,0.3626656282767967,0.3567366361022084,0.3958130021566375,0.3200807371335605,0.20375324626567465,0.16041936873784746,0.08158122500331011,0.08742704691326075,0.11805841829307495,0.08564446441923002,0.29827978909470987,0.6364811844023661,0.7302464948597622,0.7457451902928676,0.8875595812202386,0.9381896373294936,0.7385786517493097,0.5269801832728932,0.401018315470985,0.3991979017283458,0.374140881672137,0.45353483661522287,0.5322448427321533,0.4596959155403506,0.37990779798576757,0.3020235162184468,0.28404610000659125,0.3238638271104266,0.36563412236074966,0.41007376064700374,0.4247791012893832,0.38303891058635336,0.4326035234264641,0.5093258280228943,0.5698895906291026,0.6182308355305103,0.5646445744861475,0.5534443014402595,0.5435031880960448,0.4997817431138398,0.5221996725253386,0.4810969423036204,0.5182043104487501,0.6304717571058541,0.5924450120443913,0.6524545101607786,0.7261891608206625,0.7209329279188693,0.7887195529303526,0.8709234289469283,0.9332995547417957,0.9363879682859237,0.985919820833938,0.9447770876250479,0.8721721505219439,0.8411627288105741,0.7954274242768549,0.7824862645896484,0.7650485339600499,0.7781215288327464,0.7713419546614012,0.7777169140348237,0.7720780069494121,0.7424899751191296,0.7468747140327894
0.3040080901663809,0.4509567277783051,0.49619884013609356,0.4895382622890943,0.5065683919372612,0.5176638908404303,0.5373203179444066,0.48479987751319414,0.4675754818230688,0.4821245839941744,0.4269925182032042,0.46837140341195566,0.43504368596655674,0.4047511608568509,0.4175443298762357,0.4298311873014099,0.3921901262033356,0.31048659793214434,0.3067498460727666,0.37591086778861926,0.31426061154177065,0.29333624244623746,0.2883567775600325,0.29556245222929334,0.2351510122542551,0.25975351434694066,0.4196850281523193,0.731419551774142,0.7587283985833992,0.5530777787639429,0.31125433557853577,0.2312692594259177,0.21932612094983162,0.21556232134703324,0.27489892261374593,0.4652866842200678,0.6596583086582364,0.6795059583783456,0.6913726116690433,0.6314968115991451,0.6015984134045832,0.6085252716201566,0.6233126490820946,0.6830024123396361,0.6737045389441698,0.6874013904197803,0.7441472700095992,0.8168563881019033,0.8543475750871723,0.8368891765098541,0.810785361000279,0.7962914586430392,0.7514706128624017,0.7176119099696824,0.7415492384104294,0.718516570731162,0.7107947680115458,0.70344519446718,0.6585216626094024,0.6902669577973763,0.7006740007217428,0.7231752471679188,0.715032186430586,0.7617446521288074,0.7486632632611837,0.7189822789827229,0.729086697397342,0.7350889163694956,0.7029486609353623,0.6704444606378945,0.6279512015857066,0.598183171909541,0.5807577875590746,0.5633251488217972,0.56296043497,0.5609359001214893,0.5829799150148063,0.5671579065696186,0.6064318184035051,0.6194847797712894,0.6418520448808258,0.6361158274070543
0.34659409746878217,0.5110936659752632,0.5200012605368615,0.48894813495414846,0.5152020412931524,0.5108879938372792,0.5363711332669558,0.5846783949432075,0.6124254892660667,0.6142923624724369,0.5802078823596271,0.6381181062405937,0.5785500273449469,0.5880591725129476,0.5500877266622427,0.5610966993215714,0.5483713544429347,0.46299955840542895,0.5008270228347019,0.5130592324448954,0.4095025961737794,0.37041590739151703,0.37888180662210663,0.39853631225185343,0.309904034820286,0.3701903979940841,0.3749797704049866,0.49770934941434225,0.7346940141692433,0.8914810683567809,0.9142235331253585,0.7089431322511728,0.4436852725304053,0.24200723517278933,0.1845047117444727,0.18615786736738849,0.3238036446923609,0.5446265925750113,0.5937030913437512,0.5172239948749074,0.44525660910236275,0.37411225331962294,0.333396062850448,0.38597876197712466,0.4566618038445092,0.493015381392348,0.5258844149542564,0.5708040855558421,0.6417626633270266,0.7305285873310009,0.720158202889591,0.7404184989154631,0.6915725172161918,0.5896892312064632,0.6254665199523182,0.6020894307635254,0.6173742523442445,0.5910891164040024,0.5684759740188214,0.5821102529844224,0.5708947061995681,0.6050895207576993,0.6076916197406148,0.7028405327197811,0.633855928311157,0.6767330046548832,0.6812330745496509,0.7222519793705129,0.6953103636591065,0.6919034175072063,0.6568769354618903,0.6389397592472823,0.6036833967098649,0.5781433411370553,0.5766400240440017,0.5791047976989165,0.613800628018927,0.5584167585553098,0.6367946844788687,0.5944540904068607,0.607360849532953,0.6309086732968812
0.5053913710148962,0.7371712255617466,0.7468948311438917,0.7060900826756049,0.719169514182019,0.714610696284083,0.7613626824552886,0.7389619408073368,0.8003782604166303,0.7580644820821061,0.7056192458405692,0.7849265487033987,0.7614879294291379,0.6892857612777477,0.6734640328034887,0.7319967076382399,0.7783654062143954,0.6758206238487258,0.6529596142392631,0.7772859939814969,0.6536952146226678,0.7062589098100577,0.7793785650935781,0.6718248027353634,0.5453996609386177,0.6206677431332971,0.6885102126785112,0.6540236179886234,0.8243483390895261,0.8708314734243507,0.7090616105274453,0.3759697450260664,0.11749552053335699,0.039476554749451886,0.049904303882277845,0.1175324132795541,0.37728962545438294,0.6006758692402001,0.6217553106093872,0.6142309608453288,0.6341186643385485,0.6207968591785671,0.6250721958648533,0.6925396721346738,0.7201761354721453,0.6878124129574125,0.6721796340622224,0.696418876032718,0.7900449873758844,0.8030368481439889,0.8474717063263167,0.7981698524147818,0.7735133058535505,0.6731574269873971,0.5783474202943857,0.6097937791542658,0.6142149195752665,0.5015281546571762,0.4629880191370695,0.525247856103213,0.44298118469019976,0.4951358755868077,0.5916254173145279,0.5283631154641102,0.4363614569289539,0.3995241097121254,0.34363670736961605,0.3095918773764752,0.28044664950721493,0.26157220313263574,0.23962736133228746,0.2370808672866615,0.2725426340471791,0.25747434328383806,0.262572498505536,0.3012251900416886,0.3472254732540562,0.3358907717032045,0.37345105107697,0.41361276859546847,0.4346850979046469,0.4411246545301286
0.3008469707119339,0.44150994852884695,0.43591117107482624,0.4084721401473918,0.4261835621752323,0.40419234539747567,0.4728312980399044,0.48426491578882214,0.5653373316677888,0.5730175938363555,0.5392402584080755,0.584461458851767,0.5186961058800272,0.5122830755113418,0.48033940392973656,0.47722616663110706,0.44626019727309174,0.3989687881636166,0.3742439042990415,0.3829415561642532,0.28185137562493184,0.2672917419779446,0.23828518862188353,0.2417081932905546,0.21235786748110974,0.23511421561171036,0.2220075240256869,0.3985653443508706,0.6644166281724389,0.8318498522249648,0.8894714034502088,0.7356301353520984,0.4694013327605506,0.2713845143776322,0.22062116768739448,0.219310285612765,0.33280922395817214,0.5960044707718086,0.6392847338270122,0.5807163350380469,0.4840094125439325,0.41745335167548103,0.38288859272641895,0.44772224921359827,0.47721559674614494,0.5080928835170799,0.5061501645671164,0.527923789692925,0.618314729294516,0.7191533696773731,0.7518037362074548,0.7424433240954285,0.6835903584635873,0.6337738793453743,0.6647255105391787,0.654768475580012,0.6722587145097301,0.6558609121574442,0.6152509078358441,0.6434610415251858,0.6669284809568007,0.7205066378281885,0.7105453092584917,0.7768065096477068,0.7669931684060108,0.7843537504943179,0.8216924782711066,0.8196892963125941,0.7862810735561221,0.7644600393649083,0.7201070607220375,0.6756351710339814,0.6622237059899272,0.6436552801588745,0.6151193371348944,0.6118572280125039,0.6266966682466328,0.6116965439378869,0.6524349503968049,0.6547175177578765,0.6601888853870714,0.6633444504317056
0.39808795448783635,0.5741086768885937,0.5897213339401552,0.5861181861608677,0.6144356190103961,0.613357358868731,0.6663504492399037,0.6475273538128515,0.5769148272726514,0.6090125822075534,0.5815762729682372,0.5895092102728737,0.5844318553003147,0.5812054981679071,0.5541681311307878,0.5887223726884633,0.6073513584879566,0.5559546351303638,0.5340532249346236,0.5796941071430931,0.5109146148260798,0.5435219223723345,0.48206696757623935,0.5231278050470394,0.4180568059109916,0.4574739489410489,0.4275835844843748,0.6062217966611598,0.8142880532269114,0.7266025274977549,0.46259651673080193,0.1554936519548783,0.039180453811703986,0.03506330293828008,0.07780594683570874,0.22720863612466746,0.6252768712091772,0.6928776946853634,0.7514628605548113,0.7858339869863351,0.734971429155391,0.7674115243287223,0.7658614590170294,0.799677408994438,0.8098024890641147,0.7498370503246018,0.7590239870920763,0.8169039026468058,0.8893960727439361,0.8816018395332849,0.8383362514914484,0.8174428006488065,0.8142726544944777,0.782950536456901,0.745127729760692,0.715541348599404,0.7304649507988064,0.6842054466251437,0.6321706180627207,0.666460525519299,0.6518781518254301,0.6668705746973148,0.6343133997412018,0.6346059909380739,0.5834819244807211,0.5068573441071476,0.4072011479262534,0.3404702813971884,0.36455497620812943,0.33429536633792156,0.2873342054369841,0.2996304876014988,0.3007934455890416,0.3121141029072044,0.34008381793735426,0.3672073719270162,0.4143461208549415,0.3905946023326733,0.43975553175458726,0.514850820360812,0.5536826695489026,0.5473421670439463
0.6820671264197415,0.38721594837520174,0.264042498966538,0.25157617966452867,0.28198654324720684,0.25500491320230556,0.3024691626822964,0.2995243968626472,0.3279489900942179,0.39115021343603085,0.4057845166315397,0.571594698801575,0.5687158072424446,0.5169116503444258,0.5702910562027224,0.5169904569250308,0.47282804759373376,0.37836555203443906,0.3261684781295078,0.3743082531059559,0.25321545188633177,0.2667134509094664,0.1727132002510876,0.07894095756208008,0.0523318728880664,0.04470640555545924,0.141316883858295,0.34728451768492097,0.6000722738423863,0.7131143491470747,0.7409498835622277,0.7879423456755195,0.8467207581144824,0.8697099606112687,0.725144504217057,0.6416533495977543,0.584809425715062,0.5598496094183348,0.49224049163524963,0.40720091621643206,0.44152122069870614,0.3771210868492362,0.2673887049083079,0.24755114699770198,0.19178945559411398,0.18320778568418739,0.23040974524727909,0.26272099237033725,0.2791079658034765,0.2866713822133388,0.29784485426033075,0.3450906498177737,0.4124268245954403,0.6307853253603363,0.6569124406222964,0.6539689411473004,0.6508203714721781,0.6023827650524839,0.535334366314058,0.5990323545622875,0.6200561376511401,0.6947682726368413,0.760690670463926,0.7797963445290306,0.8005812066328709,0.8221539393439403,0.9199164467842178,0.9375479373298947,0.9517657754563542,0.9999999999999999,0.9899305951586548,0.923985271688244,0.857398661648771,0.7977604819481583,0.7866089919768746,0.7638686291188272,0.7717881472736186,0.752092341769129,0.7253503318949298,0.7495815963618111,0.7238681800529813,0.7152287098620181
0.3707530828012896,0.5555181007641591,0.5766748565869537,0.49279354245867224,0.5156024204939976,0.515404093812307,0.5469074161335411,0.5902190118648227,0.5754491421844081,0.69994702277005,0.6417604602720611,0.7301860395510731,0.6925384897463913,0.6391192564544552,0.6526365028620055,0.5978660204162796,0.5736793848659926,0.5375059246059115,0.5132808668621427,0.6242634094016244,0.4654839209158136,0.37941632207164866,0.3306405918164698,0.3289404114742818,0.3200699976926072,0.3350191288756928,0.33176814603640864,0.45872929568043547,0.703084225043394,0.7466398473050795,0.8589705951789945,0.9915514266178919,0.7926540673242044,0.5137221512945914,0.30525040218153865,0.25510246870826925,0.27028075159026854,0.3621813860042744,0.4986531766798674,0.48924552916012676,0.36551529638736935,0.32712725844902735,0.24911925151376113,0.24425962756424213,0.2684940773546809,0.3268341852099616,0.383381403759446,0.41126198837958056,0.417900153276767,0.5080020182216871,0.5610826557149473,0.6676867713233221,0.5725980569669344,0.5572216723990853,0.5238553375148962,0.48242988355936184,0.4681601208179681,0.48649082852539627,0.4106196293263717,0.41597622138933543,0.5089441668011238,0.5477854818034881,0.48312975073805653,0.6248407136526017,0.5397489149062648,0.7207178841309827,0.644008004645551,0.7659854714528873,0.8038461978582385,0.8291457179347334,0.7658317183282214,0.7286052004848571,0.7227420050296582,0.7046531241847186,0.688236145986777,0.6375948685342026,0.6493644706603889,0.6191899495398816,0.638358434700925,0.6002005840906437,0.6270397524859491,0.5798421097498117
0.4002037351618842,0.5808059332667538,0.6242195621054769,0.6146113799975597,0.6528686944687203,0.6204622236186124,0.6941384820641754,0.6790223958101479,0.643217712935015,0.6844980023210768,0.6360739357404601,0.6342118118154981,0.6509272414286886,0.5917103322564486,0.5878918513631155,0.6010778788280636,0.581475619095878,0.4960811149329291,0.4444137954711802,0.505171834439642,0.4262395122608239,0.44701181440191506,0.4110416197335585,0.4035270182207463,0.3416624680700539,0.37489197394474727,0.3800893638195936,0.4902301878334816,0.8260349913265994,0.903548765830616,0.699241156910417,0.4351614359337111,0.2472610571360887,0.18962152633230722,0.18923657789872994,0.23391281377580997,0.4951326150329518,0.6003310776215075,0.6122647966053363,0.5586553009157036,0.458063912106652,0.4128377494234805,0.4099210254342348,0.4692499119217233,0.5302328773691278,0.5423112916703368,0.5465529959385956,0.6201162915256841,0.6996157284575067,0.742109929122214,0.7489207471228735,0.7373860278509241,0.6757120682164386,0.6245504790758404,0.5926343153301694,0.5583635727866445,0.5499182693250503,0.5298353956536589,0.5161197621206948,0.5303087169458502,0.5455622677687783,0.5790955697792427,0.5713398393414024,0.6053884803615908,0.6088382251791701,0.6530208765814811,0.680108421970566,0.7095662246404237,0.7142043721483393,0.6999775458717179,0.6640066525905639,0.6295635783258539,0.5736059725293682,0.5493230933793432,0.5367550815476254,0.5362532417134638,0.5425283782274845,0.5129553738470338,0.5197431132208483,0.521026842586388,0.5306307558747997,0.507809328180589
0.11696352426714782,0.16217615877879155,0.17873674390537458,0.17092172892258545,0.1506913522847836,0.1951469517967387,0.2982771309991029,0.25714979258031534,0.19724970463546682,0.26507202521903495,0.23440695678996937,0.25105217581086886,0.23201498603614457,0.1673728986894778,0.22489710202882146,0.24994332394091684,0.2427146944274285,0.19147467851624222,0.1947416523394227,0.2160440857763653,0.16117818895863023,0.14490297537260777,0.13900307379962418,0.09345305877188492,0.19052247708955433,0.2508746012856506,0.23052966947480957,0.4214553065827643,0.7144483144922908,0.7842803067893642,0.6193181733486932,0.3687486330138515,0.21122148869977286,0.22375842695769532,0.2538099668718534,0.3505450867348394,0.6700011578094246,0.765186195655368,0.8083677921151378,0.8053630727916888,0.7708435087003447,0.7663700465475088,0.7744815258908424,0.8082368307853901,0.8112849392203376,0.7633335019628474,0.7659318201228289,0.7869952664765019,0.8398466512580182,0.8575134847849547,0.8538789210136218,0.8449542195811803,0.7784932630317946,0.7580746361997616,0.7711602101911907,0.7685301949892278,0.7181346288305048,0.6672761674489519,0.6738851702398743,0.6498896566257066,0.738053417938494,0.7185551609912132,0.7705753238088897,0.791879742118003,0.8353719023312344,0.666726597577237,0.8247552744749842,0.8162130231691997,0.6900667411391608,0.8178738103933011,0.6355412919994595,0.6610083333522068,0.6613889999962217,0.6617167154512138,0.6594999813312435,0.7762758075181049,0.7771157007356084,0.7173712480279157,0.8061545323602359,0.7500421347962752,0.773582809576681,0.8211423587198463
0.4128545041594235,0.570150918783431,0.6492636054817444,0.6585353490645862,0.6660684497135765,0.7516168948191055,0.761785119737711,0.6825302218806821,0.701845705309509,0.6945280873979829,0.6112648900232442,0.6626580348734122,0.5824313006160711,0.5822809586708562,0.585482105924682,0.5754187512430778,0.5468119855810862,0.475594879539985,0.43641152777601033,0.5054302463317271,0.39204569734985095,0.40803874358177267,0.37357864448799344,0.4138344349936128,0.3645435885481485,0.2767075661842837,0.6572998320648947,0.7862652957035271,0.5131010255117296,0.3750016575793954,0.2468286742749033,0.21370703392475754,0.1516905477276801,0.1616582681240094,0.3219813741981006,0.49842604644145594,0.6696793211797732,0.6920707810679904,0.6866447772318379,0.6511531848567689,0.6488727172618414,0.6744625272573879,0.7209452728755241,0.7689650373137917,0.7383902526450428,0.7467095580795756,0.8093116394918993,0.8639679765919428,0.8701790168274559,0.8788054173184019,0.8539790044789399,0.8424870708684358,0.776932990283173,0.8452489067691045,0.8582097861198563,0.8734729224873905,0.9082945290389659,0.8372224006803066,0.8586228800334863,0.8478315679517245,0.8544846663615197,0.8392962318624991,0.7916406770144033,0.7836127592118891,0.7628170150354364,0.5444883887970744,0.41827040227265133,0.33671869798981,0.341337876918354,0.22687582653961222,0.20480695184174685,0.19868659524923676,0.23596561288616894,0.2478582274857612,0.2622608807719255,0.31333789933779,0.34508410970795406,0.34337281832653893,0.40469128022443,0.44404667507433304,0.48578461889852587,0.5005096325034035
0.3616642494865592,0.5341777419272234,0.5591430487596023,0.5589498914219774,0.601890316221508,0.5881900159634088,0.6585146437031322,0.6149464779722349,0.5573330638555375,0.5464755176065348,0.4736834178822989,0.4974572440469131,0.5232309977373857,0.543538348247875,0.5653912868345379,0.568080624756255,0.5261241042046634,0.45007627873274725,0.41749827081584057,0.4850111707396058,0.4428983849890743,0.4514917214714717,0.4153479431542548,0.39265243657669247,0.33198944359305455,0.37938137106495345,0.3849735131952306,0.5043201310575791,0.8430105978749027,0.8874735737872179,0.6080686302705065,0.3494909342541177,0.22247654018797824,0.18109461978084507,0.17721980462493003,0.26387602616155215,0.5454743980823924,0.6300144420215024,0.6351685200043035,0.583387261332598,0.47113917869737476,0.4720665113539495,0.4613377932364719,0.5428181210454601,0.5834581183103917,0.5579941697833368,0.5624896680495998,0.6117339952590872,0.7026908304745763,0.7462206954189659,0.7377710198786052,0.6884523220314896,0.6229693191127375,0.5934025816455165,0.5301090137671791,0.5403154688191236,0.5069672467513546,0.5026368872543835,0.4376245482239219,0.4649408640366556,0.4843582545722873,0.5279627787504696,0.5222731653037829,0.5546404380825551,0.5589993712426439,0.5711422129122568,0.6534757740203561,0.707685866451029,0.742653108253307,0.7642258159842724,0.7578644226959285,0.7358475511263375,0.6984944198621759,0.6873749006069735,0.678681473369705,0.6612499321721973,0.654668009990669,0.6312543334540881,0.6487594545791509,0.6289394162819679,0.6117270550066409,0.5971797873435046
0.9842429628484767,0.4188440907591431,0.40780121572851336,0.40096862123057225,0.3900824025360367,0.3332334433747626,0.39085499805714774,0.3777404361891256,0.38019235741410073,0.47681621368749294,0.48109606054463083,0.5681011295922517,0.5051002289333839,0.48045242568116564,0.48061722115471545,0.45575449427041104,0.4202650081088435,0.412641438788348,0.37468722509030195,0.48173729773357077,0.40772355382880043,0.4259078878247582,0.3491918255466295,0.3031353295620702,0.22546053833067414,0.2715511041668399,0.3475964166328012,0.452795346061893,0.6818386481196662,0.7811009186240344,0.7857076647236707,0.8129149497001183,0.8377652653447459,0.8386041620772916,0.6892478408735582,0.46589628267343686,0.24196314039184408,0.33891427859455114,0.37430417770464897,0.3248729451976242,0.3263243761729391,0.34220577239158356,0.2826061462737294,0.32176689215489374,0.3275986267624409,0.3520830466631591,0.40985944376760164,0.4314724641198011,0.4560294509716776,0.4417757159092293,0.46321206898119205,0.523979691162038,0.5842444460786731,0.6684068134343537,0.6831861637105301,0.616124136599298,0.5158585740851156,0.5570204369661059,0.5324210914102268,0.5279349501517783,0.5200467525382133,0.5825063017056383,0.5513430077850741,0.638601442616362,0.6059843647525652,0.6501227836398475,0.6953548537483394,0.7764553030943138,0.7867084157206674,0.8198733257325005,0.7791082650242753,0.7396802986026838,0.6954737408877785,0.6881899213727196,0.6861059345093858,0.645438040063755,0.6651847040873435,0.6578868349780409,0.6874434587421363,0.6932349557468737,0.6830644556913766,0.6903263831039078
0.6751085345558019,0.4839792835010628,0.4900017936005425,0.45299340796228205,0.45175922489911224,0.40877740980055544,0.4426928449794551,0.43113147861449624,0.4578688146421164,0.525285889286231,0.5139285638013378,0.6454865953211478,0.6722169671398432,0.6542701326311584,0.6582269750071417,0.6337848059524597,0.57922134423819,0.5430819639294109,0.48513211771021003,0.5508319958637655,0.500098864278856,0.4988979370658907,0.4298721795024616,0.3531827625566183,0.2339690240134879,0.29174856563191554,0.30172095304325364,0.4391413500656105,0.6830306981637481,0.7675367718361491,0.7776707956978753,0.7973015917396098,0.8161917460272994,0.9060659946535846,0.927869919532691,0.9105845277139724,0.7080735999963317,0.5269642906581125,0.478296455078968,0.35301157532930305,0.22719602716300935,0.23623445136348487,0.1612201990161316,0.09721901494175211,0.05778072138932311,0.0784800489462043,0.02396552768446103,0.0318267355637043,0.0257610531862284,0.04366687148501902,0.0,0.10917429302408255,0.140566033503169,0.32074300232106134,0.3776917479225868,0.480243056632848,0.43763661976340984,0.4722414996280293,0.3400517469490963,0.33230502705879716,0.3662624120402632,0.3733484781927171,0.3667837909549042,0.43780452063081454,0.5009653123658843,0.5065608654441958,0.5771034413921814,0.6507760814256671,0.7721971306124173,0.8413712889480335,0.9512690689423631,0.9618674312919617,0.9275582655461132,0.9504241001653562,0.9326356655137258,0.9079121352522543,0.8721197821503439,0.8745881941383852,0.8508296560393882,0.8263530956686063,0.7657497174230307,0.7292843473202535
0.37356272540313823,0.546214185220835,0.5929925133426747,0.569691220531813,0.5996518616006792,0.6002281477802084,0.5915206772727598,0.49648260558454105,0.5045000904802039,0.5260056990926322,0.46665787316962215,0.5314315519676701,0.4969600312153028,0.49701418268365033,0.49565238436862047,0.5583862832382358,0.4759735745798605,0.472310401698284,0.4635310103318939,0.5918774945893222,0.4372307901824574,0.5323537249965373,0.4464147502466038,0.38027743559469257,0.4274002899657551,0.492579326515164,0.5731263961495356,0.6343182968266228,0.5716795215890456,0.39883565760308864,0.10318936942645429,0.021793608332160153,0.08822499465536393,0.10206666091379957,0.20377445745816902,0.4719865551966308,0.6743368675179432,0.7938516350145529,0.8489719751646754,0.819931704120064,0.8164355890199384,0.8464059163454903,0.8471256743542004,0.871014568397876,0.8614142037103109,0.8496897296293562,0.8806435790861987,0.8250065406781089,0.8545739364718634,0.8419033918816577,0.8347976669354158,0.7384028062084779,0.7538932659896541,0.6527107883154596,0.6525340024002624,0.67702687990599,0.6345264046621935,0.5994530405991519,0.5866700201822894,0.625522175390185,0.616043637834231,0.5718149279391388,0.6037756106821097,0.6433728792602822,0.6106844631337748,0.5290806897225813,0.5052454282063035,0.4452907728441031,0.5004973820853271,0.40701121006256247,0.39025173886060494,0.3857666258701306,0.3974778429408467,0.45589318067614915,0.46102509386098833,0.44642396450645816,0.5204538391527814,0.49931220377342433,0.5561894997825989,0.5818053656622185,0.6133358481374952,0.6079077163405046
0.3525800983247572,0.5141487225603925,0.5016422436226183,0.47137816732419574,0.4741768190435516,0.45516217437303164,0.5128367004805083,0.512996585298076,0.5334959043996058,0.6092128300019335,0.6029412738395269,0.5647462366330951,0.5335619374477776,0.5241053075320724,0.5234723669500901,0.4981629320928107,0.5570375482785169,0.5207617500288577,0.49747560323641327,0.5921971440663547,0.5847329293565366,0.5349096037131222,0.4286677984836323,0.4638574952274801,0.4308696126527801,0.42354874056865466,0.521346514641922,0.5474547994231166,0.7407153773989783,0.8063952137625597,0.8097709380530399,0.8696073242831368,0.8578276919026789,0.6901656313391178,0.3816277554567905,0.1417253163966481,0.15134747236446477,0.3263665165886458,0.410089850233861,0.3954093543996037,0.3474274313442217,0.3103822132316707,0.27955027825972834,0.3427972547962098,0.3464928001486555,0.4229772909609025,0.4511935132603,0.45866773298365676,0.4564108435140476,0.4841340236378945,0.5937082851433724,0.6837730656197141,0.6576672491852823,0.6337973159545296,0.582804889920469,0.5225780837730842,0.5258855382763021,0.49869989376828106,0.39598116646043774,0.4136460093919815,0.43374848348481365,0.4416080633407432,0.4738500028611936,0.4681441227670067,0.5522599841054064,0.5303654679587833,0.5478791501773712,0.696244952956294,0.7167442564305526,0.7380336567323864,0.7825167881377377,0.7624463433056337,0.7892743815523597,0.6877626165029066,0.6816262962645622,0.7185793860304164,0.7069657659222652,0.679312613382819,0.6867874131467457,0.6719110918220658,0.7117208169085226,0.684402740161976
0.3051539769324395,0.4698952877609522,0.48482778851553,0.4951313233838702,0.5191673921763001,0.5233739707790686,0.5442320012014694,0.4383921193559881,0.45933179735349955,0.47334930676085374,0.41767385637828375,0.4758920807412771,0.4421202184466506,0.4621575279351674,0.44870845421838224,0.47680956064880237,0.4868967005076632,0.41989932807784874,0.3962566702212241,0.47170568143566793,0.4355149748112097,0.4575837046635588,0.39986054715437724,0.40656075629136257,0.3369516934942026,0.43842405885979213,0.6125419901821766,0.5583092479717222,0.4620386019903481,0.2552658818566388,0.04365497311848665,0.04949527194154191,0.08559586874871539,0.1550711245309191,0.33809725361671716,0.5074769084042398,0.7679037459147096,0.8481165648745261,0.877628334169518,0.8595318603004174,0.9079626166344326,0.94907738033084,0.9199368478466484,0.9219984983342048,0.9305384635749222,0.9053750122008413,0.9049145391300819,0.9013809912572722,0.9388622431429565,0.9288029493842737,0.9022368713026914,0.9040486257410111,0.9096427900872268,0.906607623581272,0.9236660699584722,0.8811519127544252,0.8491624654492387,0.827633489548663,0.803069690705499,0.8160631730434809,0.774009107528297,0.7928259272475885,0.6659444960398451,0.6119187688653125,0.5432532421504833,0.3992077910781556,0.31214788522840053,0.2162579068412791,0.24365147306777618,0.2371137879512176,0.23972698351271077,0.24682596125709447,0.3081279912103517,0.3200251025608009,0.37730426178881094,0.4201925973661347,0.47600893004006184,0.5032423059738025,0.5701731064756532,0.5782816570537708,0.64328666492215,0.6656584957555483
0.2795791656629036,0.4321508223785789,0.41085394485123305,0.35319061483950154,0.36207881506005635,0.4058090655125204,0.4887961799907666,0.45119173389426664,0.45318266209769126,0.5413728764498567,0.46193731139433714,0.466620196042221,0.4554579236457128,0.4231150630902389,0.42212855997241533,0.4639814911352464,0.41002325495973735,0.43629748536020635,0.44374166792699066,0.5282320313599852,0.45568350604455493,0.4340573976461073,0.3762334123358799,0.4051350647573905,0.33468741603512664,0.41527169676879805,0.4854240220483369,0.5414150801847305,0.6978665999558715,0.7931664023995094,0.8242153967005696,0.8787090852633925,0.8293330045130188,0.6823556985684877,0.3946258701023071,0.21768889063372177,0.24725123432801777,0.44947527598219394,0.4827756094723237,0.43910119443194207,0.33514576696600695,0.29756177188730626,0.2748898639076435,0.30483216858377193,0.32557801467276154,0.38069929270830105,0.4094123499414538,0.4302688915014283,0.43349257802765107,0.4456904185502322,0.5521621364624197,0.6513913656700094,0.6536027292217892,0.671613636938723,0.6011730116614562,0.5396954725232443,0.4805976212383609,0.4575447641793676,0.43228401339937556,0.4299325875622262,0.3745158293905818,0.4190375169852626,0.396325073640045,0.44585455003684116,0.4542953394805346,0.4912785953390191,0.5650279571085277,0.6565236498869091,0.6825871681340849,0.7513186067544629,0.8367512570168382,0.8849766507529016,0.8557683505069122,0.8684202349881343,0.8612090959607686,0.8471250434937778,0.8433886090109093,0.8623668579281003,0.8776486344526948,0.8482862548073477,0.8280919574829269,0.8312001880026308
0.35065047915478087,0.5175552454407284,0.5201187937038053,0.5092487435323705,0.544776976286084,0.543541248519776,0.606029159472021,0.6221530548482188,0.6127797550997995,0.6198722217051227,0.5854156843898798,0.59789821628982,0.5813192016023826,0.5822527717347161,0.5509745080711935,0.5521973320422568,0.5782073607131888,0.5011362208913761,0.4160331380842466,0.458085805431685,0.4147246232910704,0.41888767387483894,0.39842582937637105,0.3564466047805485,0.3138040369548785,0.42204323415624273,0.3796987212436116,0.4561471004585016,0.7684252443404657,0.9406362059588053,0.8640485524733612,0.6100277916174962,0.3697113783852263,0.21744213827811998,0.15317625765572906,0.1375855594572013,0.38630345841114155,0.5612826195855207,0.5948671549118985,0.5193915955209927,0.44577652674277635,0.35567476990819313,0.35555179089663747,0.418773788097553,0.5231033897467592,0.5595062527823869,0.5616216953517313,0.6201748320803947,0.692167200331325,0.729910998389397,0.7050601146554618,0.651105630637353,0.6245210247775758,0.5556834839575444,0.5487363782009871,0.4770065213296712,0.47346719103055945,0.44982162008996984,0.3956463044625012,0.3865099131355162,0.44874581970595606,0.4310308622798845,0.4669131214801179,0.4859437889003342,0.48023125945339096,0.5203074993745365,0.5625277892927685,0.6583705779545348,0.6899009142281267,0.7332627451267429,0.7461470421887219,0.7476245995684342,0.7066070133813978,0.7278635552556291,0.695061973642429,0.6441776244035922,0.6830237894824707,0.66545968630603,0.6810119063629771,0.6646390996684531,0.674859455241254,0.6503376682024223
0.3085969796817319,0.47957587890345516,0.46105318583921534,0.42101265055580944,0.4349183833612711,0.4036703296634183,0.44526561453333013,0.4524218535827017,0.5529303640931482,0.5959958653880977,0.5687673971922758,0.5544563261877696,0.5324646313445389,0.5670954010180235,0.5345556688419948,0.521360548321502,0.5348480823467462,0.4809193315116649,0.5425709614165273,0.6670863495822735,0.6010777610052834,0.620606889030118,0.5285399547473705,0.5785373890986697,0.5101659967547418,0.5305871368790799,0.6469075034758007,0.644865372044738,0.7685495546627761,0.8378201255711449,0.8455538400356652,0.8848446264115662,0.9010873788806607,0.8411484625906519,0.6363070256436895,0.38602401592145863,0.17573988034440835,0.26361697272740603,0.3973009395684066,0.30822580599894034,0.25511203806457816,0.19422692149041199,0.17011453549839028,0.22688884448541458,0.24881450468060506,0.3140178977414754,0.37921224849876284,0.417239881378479,0.41673736711240195,0.40055926396588976,0.494477021753307,0.6037507289272641,0.6665168104001148,0.6712104499977046,0.676915682737991,0.5866154712140574,0.5258225069886256,0.5026783819962775,0.37810998796895673,0.3562878046295833,0.38583558327163436,0.3319121950306685,0.3574465336552338,0.3901830496280243,0.40343427338024374,0.4481643206928432,0.4810832215719649,0.5618465581535637,0.6352345587623098,0.7418855565846579,0.7566981892942162,0.8027428475725352,0.7747754552484063,0.8013381959491714,0.8040846129088084,0.7792448290161447,0.7591818004373733,0.7379681864467978,0.7707099509953597,0.7070198802234369,0.6974293593856109,0.6551888804026589
0.40238128423062197,0.6044804983528328,0.6705441126070484,0.6556157606004129,0.7099358764228849,0.7630273236801886,0.7346420344246416,0.6857827322081995,0.6896074754078239,0.6365211869670078,0.623971836748511,0.6259073934370859,0.5631715866784928,0.5609415107210939,0.5941929574330224,0.563977468277082,0.5351931311800888,0.43007609443188294,0.4141210713039485,0.5068356206472907,0.438627242272725,0.511495214824502,0.45688887010045687,0.36193382910441035,0.35065482860069336,0.4019082030064638,0.8889116605999233,0.809314032633863,0.48810201003869297,0.3860186415560474,0.2282940976340163,0.14490252766338285,0.08156376310672464,0.19213466871702933,0.3542906696374808,0.49272736397107675,0.6689304706781897,0.6808837285823239,0.6808429647141877,0.6789727944805866,0.7046033761174249,0.7318725302292624,0.7658593534463407,0.837158751327615,0.8605291573056773,0.82442497732429,0.8566428848549626,0.8469788784800143,0.8430541872807575,0.8375442652297711,0.8269144845122105,0.8323018242226149,0.8054874350330249,0.8137000759178732,0.8393434290326995,0.8854143053825105,0.8883854841976047,0.8730182627797547,0.8373453129723532,0.8408335209621736,0.7929453930616347,0.8174242234923607,0.7971029870976725,0.719553535527439,0.6581685408195649,0.526214878767689,0.37221982456652314,0.3219281092698568,0.23671796482535995,0.22989636310294279,0.21907204887854798,0.20390145216340738,0.24147760154165482,0.23065552988782873,0.2616638709041311,0.2997540847141214,0.31880370428281457,0.344086830449366,0.39154765279329995,0.41764483031749544,0.45609342917912926,0.4442883245468452
0.3879415530919387,0.6067167444683951,0.6186942658047339,0.6241959125538206,0.6719060152463745,0.6628436118778775,0.6810299739602165,0.6295182110691082,0.6495138766820435,0.6625482713861676,0.5581581344267128,0.6362829926991882,0.5970835842299759,0.5907623297365672,0.5229785895186863,0.5128155127770365,0.5564748894108397,0.4581684325599487,0.43444301772158506,0.5171628772959691,0.41113891774011646,0.4752684221932939,0.35079123068998774,0.43322007280787433,0.3527951641654099,0.3713122940179598,0.30453697416505204,0.748601642773913,0.9870226104770441,0.823503265297768,0.5690225352027054,0.29764559410337865,0.17602984634506846,0.1213145917612336,0.13061550653206289,0.29981300418975976,0.5506688355532323,0.6177556208026107,0.6253636517459625,0.5972917695346726,0.5119769123164483,0.5047321925886277,0.5110207884706459,0.5939999118912058,0.6619925440041347,0.6639681540186595,0.6562819141151409,0.6916450336397295,0.7508713923654315,0.7703531026134247,0.7164457891569534,0.6451137037434674,0.5922949051681986,0.5891848934056013,0.5411316446276979,0.5396092417976708,0.5209007613112189,0.5302255958617599,0.48167842233000796,0.5238354536227523,0.5058110751927424,0.553450650920624,0.5494580465048491,0.6223468740478293,0.6024118744684247,0.6263133612452956,0.6770732979962586,0.6699504964229481,0.6366556786197517,0.6535292335192742,0.5904143674758154,0.5765869811407383,0.5569878705225415,0.5299817787316116,0.5346118898118506,0.5314328557136233,0.5289191098223809,0.5210257827484874,0.5373897476877312,0.5426313671414644,0.5703570292112727,0.5645351433831536
0.3550747186637643,0.5275843357107862,0.5063046404855873,0.5267887421776373,0.4998059409509668,0.4705118566055622,0.5060699136801438,0.5251663247018507,0.5682039036841089,0.6215032043275226,0.6042350230425215,0.5683519883758902,0.6105254651541554,0.5833265453441613,0.5291074710122297,0.5622482298752295,0.5634587434753745,0.4962374372285806,0.520461158567692,0.6383162534077765,0.5731155032040511,0.5689907181901517,0.4846284216969846,0.5016158833755738,0.4854481610824485,0.46012530527948037,0.5088109200353192,0.642442492730293,0.7449628388274678,0.8205136688954593,0.8181981189665137,0.8986702790033053,0.8239344873764025,0.5636557283019833,0.2082850476171325,0.06499071140960044,0.11936487848159616,0.23828050473705553,0.33531802923427634,0.4750670743888592,0.4618300277397447,0.4225756108373475,0.40974050445807986,0.45569580598733894,0.4823918723028499,0.515354348141782,0.5335224159247015,0.563215211459878,0.5761609867892881,0.5779838516624154,0.6178498216582882,0.70806856215227,0.6883136576283502,0.6663357640659735,0.5954093441768076,0.5761856814863058,0.5561185775152051,0.5438656829592806,0.444006631148775,0.47991271910317945,0.49490047454637165,0.5231501149603078,0.49585686584268096,0.5666718189667006,0.5910550249641299,0.5855250709979527,0.6266442243676456,0.6403904569294523,0.684866424992769,0.6495195479006964,0.6596175497655475,0.617907938057744,0.6021670603731268,0.544875111313214,0.5585035198853396,0.5687060909281445,0.5959719694412696,0.5824203911611603,0.6014123971483372,0.6172940583184742,0.6292858176447336,0.6256118691375377
0.6683080477027658,0.6873382469681428,0.6754030334748324,0.6300920779911591,0.6206258341756349,0.5616196684207769,0.6418099596411166,0.5910638590628321,0.5991781476814592,0.6570016919598692,0.7136214633856925,0.8109837655638457,0.9090990551471483,0.9168356020223491,0.9111099520190896,0.8991640426838128,0.884225363953159,0.8269157589849097,0.7472686363433223,0.8476989773771052,0.7562071685601175,0.7386325062294455,0.6751241259676876,0.5513450429886064,0.4700239599536896,0.46143850287965094,0.4908001592744302,0.5497036766882902,0.751228286276214,0.8071207075957695,0.8198598549650324,0.811453136537608,0.8696938778700264,0.9879484283861539,0.9031776493810686,0.8409759958198963,0.6191706874751386,0.4305519670062953,0.30078071792582106,0.12173939063200234,0.12380166832938588,0.20238926930987766,0.11079939151797613,0.05835241013370396,0.03299448470566546,0.047464296172149534,0.10643866295462123,0.1274328725929646,0.1504563665039132,0.1591381439839067,0.148736983735637,0.14294933549008196,0.18618096889914101,0.3992417999393095,0.38725707906750956,0.38704867577027674,0.34847090548707893,0.31317109004356114,0.2568620395494539,0.336956764392514,0.360059843157546,0.3687777800017503,0.36476941919594863,0.42536375998544473,0.45139537562795506,0.5000770059892052,0.5295812811021812,0.5801092843317441,0.6682586773542982,0.7006962447497203,0.6935188367283387,0.6787923150505816,0.6583107789973413,0.6561072270311937,0.6169925024979289,0.6005441768386545,0.6233597339222919,0.5527048107385323,0.548953940544741,0.5435378650145392,0.5569598672550341,0.510408172679729
Can't render this file because it is too large.

File diff suppressed because it is too large Load Diff

@ -6,25 +6,42 @@ $(document).ready(function () {
if (document.getElementById("classifier")) {
document.getElementById("classifier").addEventListener("change", function (e) {
var classifier = document.getElementById("classifier").value
if (classifier == "wildboar_knn" || classifier == "wildboar_rsf") {
// Loop through each checkbox and disable it
$("#pre_computed_counterfactuals").hide()
$("#constraint_div").hide()
$("#w_value_div").hide()
$("#class_label_container").show()
$("#pre_computed_counterfactuals").hide()
$("#entries_container_glacier").hide()
$("#cfbtn_container_2").hide()
}
if (classifier == "glacier") {
// Loop through each checkbox and disable it
$("#constraint_div").show()
$("#w_value_div").show()
$("#cfbtn_container_2").show()
$("#pre_computed_counterfactuals").show()
$("#entries_container").hide()
$("#class_label_container").show()
}
});
}
$('#class_label_container').change(function () {
$("#entries_container").show()
});
$('#pre_computed_counterfactuals').change(function () {
$("#entries_container_glacier").show()
});
$('#entries').change(function () {
var class_label = $("input:radio[name=class_label]:checked").val();
var csrftoken = jQuery("[name=csrfmiddlewaretoken]").val();
var cfrow_id = 0;
var cfrow_id = document.getElementById("entries").value;
var model_name = "";
if (document.getElementById("classifier")) {
// class_label = $("input:radio[name=class_label]:checked").val();
@ -67,6 +84,82 @@ $(document).ready(function () {
});
});
$('#entries_glacier').change(function () {
var experiment_id = $("input:radio[name=experiment]:checked").val();
var csrftoken = jQuery("[name=csrfmiddlewaretoken]").val();
var cfrow_id = document.getElementById("entries_glacier").value;
var model_name = "";
if (document.getElementById("classifier")) {
class_label = $("input:radio[name=class_label]:checked").val();
model_name = document.getElementById("classifier").value
}
$("#ecg_data_container").hide();
if ($("#ecg_data_example")) {
$("#ecg_data_example").remove()
}
if ($("#ecg_cf")) {
$("#ecg_cf").remove();
$("#cf_ecg_container").hide();
}
$("#class_label_loader").show();
$.ajax({
method: 'POST',
url: '',
headers: { 'X-CSRFToken': csrftoken, },
data: { 'action': "class_label_selection", 'class_label': class_label, 'cfrow_id': cfrow_id, "model_name": model_name, "experiment_id": experiment_id },
success: function (ret) {
$("#class_label_loader").hide();
var ret = JSON.parse(ret)
var fig = ret["fig"]
// create div elements for plots
var ecg_data_div = create_div("ecg_data_example", "plotly_fig")
ecg_data_div.insertAdjacentHTML('beforeend', fig);
$("#ecg_data").append(ecg_data_div);
$("#ecg_data_container").show();
$("#cfbtn_container").show()
$("#cfbtn").show()
},
error: function (ret) {
console.log(":(")
}
});
});
$('.compute_counterfactual').click(function () {
// only for glacier
var csrftoken = jQuery("[name=csrfmiddlewaretoken]").val();
var data_to_pass = {}
var constraint = ""
var w_value = ""
var model_name = ""
model_name = document.getElementById("classifier").value
if (model_name == "glacier") {
w_value = document.getElementById("slider").value
constraint = document.getElementById("constraint").value
}
data_to_pass = { "action": 'compute_cf', "constraint": constraint, 'w_value': w_value, 'model_name': model_name }
$("#cfbtn_2").hide()
$("#cfbtn_loader_2").show()
$.ajax({
method: 'POST',
url: '',
headers: { 'X-CSRFToken': csrftoken },
data: data_to_pass,
processData: true, // This should be `true` for form data
contentType: 'application/x-www-form-urlencoded; charset=UTF-8', // Standard form content type
success: function (ret) {
}
});
});
$('.run_counterfactual').click(function () {
// on click compute counterfactuals for respective point
var csrftoken = jQuery("[name=csrfmiddlewaretoken]").val();
@ -77,10 +170,8 @@ $(document).ready(function () {
var features_to_vary = []
if (document.getElementById("classifier")) {
model_name = document.getElementById("classifier").value
if (model_name == "glacier") {
w_value = document.getElementById("slider").value
constraint = document.getElementById("constraint").value
}
constraint = $("input:radio[name=experiment]:checked").val();
alert(constraint)
data_to_pass = { 'action': "cf", "constraint": constraint, "w_value": w_value, "model_name": model_name }
} else {
model_name = $("input:radio[name=modeling_options]:checked").val();
@ -195,7 +286,8 @@ $(document).ready(function () {
// $("#original_data").append(cp_tb)
// $("#counterfactual").append(cf_tb);
$("#og_cf_row").show()
} else if (dataset_type == "timeseries") {
}
else if (dataset_type == "timeseries") {
// ecg
$("#cfbtn_container").show();
$("#cfbtn").show()

@ -38,7 +38,7 @@ $(document).ready(function () {
var data_to_pass = {}
if (classifier != "wildboar_knn" && classifier != "wildboar_rsf" && classifier != "glacier") {
class_label = document.getElementById("class_label_train").value
test_set_ratio = document.getElementById("test_set_ratio").value
test_set_ratio = document.getElementById("slider").value
document.getElementsByName("boxes").forEach(function (elem) {
if (elem.checked == true) {
array_preprocessing.push(elem.value);
@ -51,7 +51,7 @@ $(document).ready(function () {
// TODO: maybe add test set ratio
data_to_pass = { 'action': "train", 'model_name': classifier, 'autoencoder': autoencoder }
} else if (classifier == "wildboar_knn" || classifier == "wildboar_rsf") {
test_set_ratio = document.getElementById("test_set_ratio").value
test_set_ratio = document.getElementById("slider").value
document.getElementsByName("boxes").forEach(function (elem) {
if (elem.checked == true) {
array_preprocessing.push(elem.value);
@ -70,9 +70,6 @@ $(document).ready(function () {
contentType: 'application/x-www-form-urlencoded; charset=UTF-8', // Standard form content type,
success: function (values) {
$("#loader_train").hide();
$("#preprocessing").hide();
$("#figs").show()
$("#counterfactuals").show()
},
error: function (ret) {
}

@ -16,34 +16,34 @@
</div>
{% endif %}
{% if dataset_type == "tabular" %}
<div class="row">
<div class="col-xl-4 col-lg-4">
<div class="card shadow mb-4">
<div class="card-header py-3 d-flex flex-row align-items-center justify-content-between">
<h1 class="h3 mb-0 text-gray-800">Available pre trained models</h1>
</div>
<div class="row">
<div class="col-xl-4 col-lg-4">
<div class="card shadow mb-4">
<div class="card-header py-3 d-flex flex-row align-items-center justify-content-between">
<h1 class="h3 mb-0 text-gray-800">Available pre trained models</h1>
</div>
{% csrf_token %}
{% csrf_token %}
<div class="card-body">
<div id="pre_trained_models">
{% if not df_name %}
<p>The available pre trained models will show up here. You first need to <a href="/">pick or upload a dataset</a></p>
{% elif not available_pretrained_models_info %}
<p>There are no available pre trained models for <b>{{df_name}}</b> dataset. You first need to <a href="/train.html">train a model</a>.</p>
{% else %}
{% for value, text in available_pretrained_models_info %}
<div class="form-check">
<input class="form-check-input" type="radio" name="modeling_options" value={{value}}>
<label class="form-check-label">{{text}}</label>
</div>
{% endfor %}
{% endif %}
<div class="card-body">
<div id="pre_trained_models">
{% if not df_name %}
<p>The available pre trained models will show up here. You first need to <a href="/">pick or upload a dataset</a></p>
{% elif not available_pretrained_models_info %}
<p>There are no available pre trained models for <b>{{df_name}}</b> dataset. You first need to <a href="/train.html">train a model</a>.</p>
{% else %}
{% for value, text in available_pretrained_models_info %}
<div class="form-check">
<input class="form-check-input" type="radio" name="modeling_options" value={{value}}>
<label class="form-check-label">{{text}}</label>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</div>
</div>
</div>
</div>
{% csrf_token %}
<div class="row" id="counterfactuals" style="display:none;">
@ -161,7 +161,7 @@
</div>
</div>
<div class="row justify-content-center" id="og_cf_headers" style="display: none; padding-top: 30px;">
<div class="row justify-content-center" id="og_cf_headers" style="display: none; padding-top: 30px;">
<div class="col-xl-3 col-lg-3">
<div id="cf_selection">
@ -169,45 +169,7 @@
</div>
</div>
<!-- <span style="display: none; width: 48px; height: 48px;" id="reset_div">
</span> -->
<div class="row justify-content-center" id="og_cf_row" style="display:none; padding-top: 20px;">
<div class="col-xl-3 col-lg-3">
<div class="card shadow mb-4">
<div class="card-header py-3 d-flex flex-row align-items-center justify-content-between">
<h6 class="m-0 font-weight-bold text-primary">Original values data point </h6>
</div>
<div class="card-body">
<div class="scrollit d-flex justify-content-center table-responsive table table-bordered" id="original_data">
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3" >
<div class="card shadow mb-4">
<!-- Card Header - Dropdown -->
<div
class="card-header py-3 d-flex flex-row align-items-center justify-content-between">
<h6 class="m-0 font-weight-bold text-primary">Counterfactual values</h6>
</div>
<!-- Card Body -->
<div class="card-body">
<!-- <div class="col d-flex justify-content-center">
<span class="loader" id="loader_stats" style="display: none;">
</span>
</div> -->
<div class="scrollit d-flex justify-content-center table-responsive table table-bordered" id="counterfactual">
</div>
</div>
</div>
</div>
</div>
{% elif dataset_type == "timeseries" %}
@ -229,7 +191,7 @@
<!-- Card Body -->
<div class="card-body">
<select id="classifier" class="col mr-2 selectpicker form-control">
<option type="submit" value="" disabled selected hidden >Pick a pre trained classifier</option>
<option value="" disabled selected hidden >Pick a pre trained classifier</option>
{% for value, text in available_pretrained_models_info %}
<option type="submit" value="{{value}}">{{text}}</option>
{% endfor %}
@ -257,9 +219,17 @@
</div>
</div>
</div>
<div class="row" id="cfbtn_container_2" style="display: none;">
<div class="col-sm d-flex justify-content-center">
<span class="loader" id="cfbtn_loader_2" style="display:none;">
</span>
<button class="button-6 compute_counterfactual" id="cfbtn_2" role="button" name="cf">Compute Counterfactuals!</button>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3">
<div id="class_label_container" class="col-xl-3 col-lg-3" style="display:none;">
<div class="card shadow mb-4">
<!-- Card Header - Dropdown -->
<div
@ -267,34 +237,44 @@
<h6 class="m-0 font-weight-bold text-primary">Class label</h6>
</div>
<!-- Card Body -->
<div class="card-body" id="class_label_container">
<div class="card-body">
{% for target_label_value, target_label_text in target_label_info %}
<div class="form-check">
<input class="form-check-input" type="radio" name="class_label" value="{{target_label_value}}">
<label class="form-check-label">{{target_label_text}} ({{target_label_value}})</label>
</div>
{% endfor %}
<div id="pre_computed_counterfactuals" style="display:none;">
<div class="py-3 d-flex flex-row align-items-center justify-content-between">
<h6 class="m-0 font-weight-bold text-primary">Pre computed counterfactuals</h6>
</div>
<!-- Card Body -->
{% for experiment, details in available_pre_computed_counterfactuals %}
<div class="form-check">
<input class="form-check-input" type="radio" name="experiment" value="{{experiment}}">
<label class="form-check-label">{{experiment}} ({{details}})</label>
</div>
{% endfor %}
</div>
<div id="entries_container" style="display:none;">
<div
class="py-3 d-flex flex-row align-items-center justify-content-between">
<h6 class="m-0 font-weight-bold text-primary">Example entries</h6>
</div>
<select id="entries" class="col mr-2 selectpicker form-control .animated--fade-in">
<option type="submit" value="" disabled selected hidden> Select a timeseries entry</option>
{% for id in range %}
<option type="submit" value={{id}}>Timeseries {{id}}</option>
{% endfor %}
</select>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="row">
<div class="col-xl-4 col-xl-4" id="constraint_div" style="display:none;">
<div class="card shadow mb-4">
<div
class="py-3 d-flex flex-row align-items-center justify-content-between">
<h6 class="m-0 font-weight-bold text-primary">Constraint</h6>
</div>
<select id="constraint" class="col mr-2 selectpicker form-control .animated--fade-in">
<option type="submit" value="" disabled selected hidden>Select the constraints of the counterfactuals</option>
<option type="submit" value="unconstrained">Unconstrained</option>
<option type="submit" value="local">Local</option>
<option type="submit" value="global">Global</option>
<option type="submit" value="uniform">Uniform</option>
</select>
</div>
</div>
</div> -->
<div class="row">
<div class="col-xl-6 col-lg-6 d-flex justify-content-center">
<span class="loader" id="class_label_loader" style="display: none;">

@ -215,7 +215,6 @@ def counterfactuals(request):
"available_pretrained_models_info": available_pretrained_models_info,
}
else:
json_path = os.path.join(PIPELINE_PATH + f"{df_name}" + "/pipeline.json")
# if it does not exist, obviously there are no pre trained
# models
available_pretrained_models = []
@ -230,34 +229,10 @@ def counterfactuals(request):
pipeline_json = json.load(jsonFile) # data becomes a dictionary
jsonFile.close() # Close the JSON file
available_pretrained_models = pipeline_json["classifier"].keys()
available_pretrained_models_text = []
for model in available_pretrained_models:
if "xgb" == model:
available_pretrained_models_text.append("XGBoost")
elif "rf" == model:
available_pretrained_models_text.append("Random Forest")
elif "lr" == model:
available_pretrained_models_text.append("Logistic Regression")
elif "dt" == model:
available_pretrained_models_text.append("Decision Tree")
elif "svm" == model:
available_pretrained_models_text.append(
"Support Vector Machine"
)
elif "glacier" == model:
available_pretrained_models_text.append("Glacier 1dCNN")
elif "wildboar_knn" == model:
available_pretrained_models_text.append(
"Wildboar K-Nearest Neighbours"
)
elif "wildboar_rsf" == model:
available_pretrained_models_text.append(
"Wildboar Random Shapelet Forest"
)
available_pretrained_models_info = zip(
available_pretrained_models, available_pretrained_models_text
available_pretrained_models_info = (
methods.create_tuple_of_models_text_value(
available_pretrained_models
)
)
## get the type of the active dataset
@ -271,11 +246,6 @@ def counterfactuals(request):
dataset_type = datasets_types_pipeline_json[df_name]
if dataset_type == "tabular":
excel_file_name_path = os.path.join(
PIPELINE_PATH + f"{df_name}" + "/" + df_name + ".csv"
)
df = methods.get_dataframe(excel_file_name_path)
# pipeline path
json_path = os.path.join(PIPELINE_PATH, f"{df_name}" + "/pipeline.json")
@ -295,43 +265,39 @@ def counterfactuals(request):
}
elif dataset_type == "timeseries":
available_pretrained_models_text = []
if "wildboar_knn" in available_pretrained_models:
available_pretrained_models_text.append(
"Wildboar K-Nearest Neighbour"
available_pretrained_models_info = (
methods.create_tuple_of_models_text_value(
available_pretrained_models
)
if "wildboar_rsf" in available_pretrained_models:
available_pretrained_models_text.append(
"Wildboar Random Shapelet Forest"
)
if "glacier" in available_pretrained_models:
available_pretrained_models_text.append("Glacier 1dCNN")
available_pretrained_models_info = zip(
available_pretrained_models, available_pretrained_models_text
)
# excel_file_name_path = os.path.join(
# PIPELINE_PATH + f"{df_name}" + "/" + df_name + ".csv"
# )
# df = methods.get_dataframe(excel_file_name_path)
# df.columns = df.columns.str.replace(" ", "_")
# target_labels = list(df.iloc[:, -1].unique())
positive = 1
negative = 0
target_label_value = [negative, positive]
target_label_text = ["Negative class label", "Positive class label"]
target_label_info = zip(target_label_value, target_label_text)
available_pre_computed_counterfactuals = []
jsonFile = open(json_path, "r")
pipeline_json = json.load(jsonFile) # data becomes a dictionary
if "experiments" in pipeline_json["classifier"]["glacier"]:
# applies only to glacier
# there are pre computed counterfactuals
experiments_dict = pipeline_json["classifier"]["glacier"][
"experiments"
]
list_of_experiment_keys = list(experiments_dict.keys())
for key in list_of_experiment_keys:
available_pre_computed_counterfactuals.append((experiments_dict[key]["constraint"], experiments_dict[key]))
context = {
"df_name": df_name,
"dataset_type": dataset_type,
"available_pretrained_models_info": available_pretrained_models_info,
"range": range(1, 6),
"target_label_info": target_label_info,
"available_pre_computed_counterfactuals": available_pre_computed_counterfactuals,
}
else:
context = {}
@ -466,32 +432,9 @@ def charts(request):
pipeline_json = json.load(jsonFile) # data becomes a dictionary
jsonFile.close() # Close the JSON file
available_pretrained_models = pipeline_json["classifier"].keys()
available_pretrained_models_text = []
for model in available_pretrained_models:
if "xgb" == model:
available_pretrained_models_text.append("XGBoost")
elif "rf" == model:
available_pretrained_models_text.append("Random Forest")
elif "lr" == model:
available_pretrained_models_text.append("Logistic Regression")
elif "dt" == model:
available_pretrained_models_text.append("Decision Tree")
elif "svm" == model:
available_pretrained_models_text.append("Support Vector Machine")
elif "glacier" == model:
available_pretrained_models_text.append("Glacier 1dCNN")
elif "wildboar_knn" == model:
available_pretrained_models_text.append(
"Wildboar K-Nearest Neighbours"
)
elif "wildboar_rsf" == model:
available_pretrained_models_text.append(
"Wildboar Random Shapelet Forest"
)
available_pretrained_models_info = zip(
available_pretrained_models, available_pretrained_models_text
available_pretrained_models_info = (
methods.create_tuple_of_models_text_value(available_pretrained_models)
)
context = {
"df_name": df_name,
@ -894,42 +837,34 @@ def ajax_requests(action, request):
else:
# Path to the Bash script
autoencoder = request.POST.get("autoencoder")
dataset_camel = methods.convert_to_camel_case(df_name)
if "Ecg" in dataset_camel:
dataset_camel = dataset_camel.replace("Ecg", "ECG")
preprocessing_info = {
"autoencoder": autoencoder,
"explainability": {"technique": model_name},
}
experiment = methods.fetch_line_by_dataset_and_constraint(
PIPELINE_PATH + "/glacier_experiments.txt",
dataset_camel,
# constraint_type,
)
if experiment is not None:
stripped_arguments = methods.extract_arguments_from_line(experiment)
preprocessing_info = {
"autoencoder": autoencoder,
"explainability": {"technique": model_name},
}
dataset_camel = methods.convert_to_camel_case(df_name)
if "Ecg" in dataset_camel:
dataset_camel = dataset_camel.replace("Ecg", "ECG")
indices_to_keys = {
1: "pos",
2: "neg",
# 4: "n-lstmcells",
# 5: "constraint",
# 6: "w-type",
# 7: "tau-value",
# 8: "lr-list",
}
experiment = methods.fetch_line_by_dataset_and_constraint(
PIPELINE_PATH + "/glacier_experiments.txt",
dataset_camel,
)
# Create a dictionary by fetching items from the list at the specified indices
inner_dict = {
key: stripped_arguments[index]
for index, key in indices_to_keys.items()
}
if experiment is not None:
stripped_arguments = methods.extract_arguments_from_line(experiment)
preprocessing_info.update(inner_dict)
else:
raise ("Error")
class_label = ""
indices_to_keys = {
1: "pos",
2: "neg",
}
# Create a dictionary by fetching items from the list at the specified indices
inner_dict = {
key: stripped_arguments[index] for index, key in indices_to_keys.items()
}
preprocessing_info.update(inner_dict)
# absolute excel_file_name_path
excel_file_name_path = os.path.join(
@ -1007,22 +942,47 @@ def ajax_requests(action, request):
preprocess_df[class_label] = le.fit_transform(preprocess_df[class_label])
pickle.dump(le, open(model_name_path + "/label_encoder.sav", "wb"))
if "array_preprocessing" in request.POST:
preprocess_df = methods.preprocess(
preprocess_df,
array_preprocessing,
excel_file_name_path,
class_label,
dataset_type,
model_name_path,
)
if "array_preprocessing" in request.POST:
preprocess_df = methods.preprocess(
preprocess_df,
array_preprocessing,
excel_file_name_path,
dataset_type,
model_name_path,
class_label,
)
elif dataset_type == "timeseries":
pos = inner_dict["pos"]
neg = inner_dict["neg"]
pos_label, neg_label = 1, 0
if pos != pos_label:
preprocess_df.iloc[:, -1] = preprocess_df.iloc[:, -1].apply(
lambda x: pos_label if x == int(pos) else x
)
if neg != neg_label:
preprocess_df.iloc[:, -1] = preprocess_df.iloc[:, -1].apply(
lambda x: neg_label if x == int(neg) else x
)
if "array_preprocessing" in request.POST:
preprocess_df = methods.preprocess(
preprocess_df,
array_preprocessing,
excel_file_name_path,
dataset_type,
model_name_path,
)
# PCA
pca = methods.generatePCA(preprocess_df)
# TSNE
tsne, projections = methods.generateTSNE(
preprocess_df, dataset_type, class_label
)
if dataset_type == "tabular":
tsne, projections = methods.generateTSNE(
preprocess_df, dataset_type, class_label
)
else:
tsne, projections = methods.generateTSNE(preprocess_df, dataset_type)
# save the plots
pickle.dump(tsne, open(model_name_path + "/tsne.sav", "wb"))
@ -1136,17 +1096,28 @@ def ajax_requests(action, request):
# path = model_name_path_type_dir
# else:
path = model_name_path
classification_report = methods.training(
preprocess_df,
model_name,
float(test_set_ratio) if test_set_ratio != "" else 0,
"",
dataset_type,
df_name,
path,
autoencoder,
stripped_arguments,
)
if model_name == "glacier":
classification_report = methods.training(
preprocess_df,
model_name,
float(test_set_ratio) if test_set_ratio != "" else 0,
"",
dataset_type,
df_name,
path,
autoencoder,
stripped_arguments,
)
else:
classification_report = methods.training(
preprocess_df,
model_name,
float(test_set_ratio) if test_set_ratio != "" else 0,
"",
dataset_type,
df_name,
path,
)
pickle.dump(
classification_report,
@ -1260,8 +1231,6 @@ def ajax_requests(action, request):
else:
df = pd.read_csv(excel_file_name_path)
df_id = request.session.get("cfrow_id")
datasets_types_pipeline_json_path = os.path.join(
PIPELINE_PATH + "/dataset_types_pipeline.json"
)
@ -1270,11 +1239,12 @@ def ajax_requests(action, request):
jsonFile
) # data becomes a dictionary
dataset_type = datasets_types_pipeline_json[df_name]
print(dataset_type)
df_id = request.session.get("cfrow_id")
if dataset_type == "tabular":
# get row
features_to_vary = json.loads(request.POST.get("features_to_vary"))
row = df.iloc[[int(df_id)]]
# not preprocessed
@ -1284,7 +1254,6 @@ def ajax_requests(action, request):
# if feature_to_vary has a categorical column then I cannot just
# pass that to dice since the trained model does not contain the
# categorical column but the one-hot-encoded sub-columns
features_to_vary = methods.update_column_list_with_one_hot_columns(
notpre_df, df, features_to_vary
)
@ -1321,7 +1290,6 @@ def ajax_requests(action, request):
)
if counterfactuals:
cf_df = counterfactuals[0].final_cfs_df
counterfactuals[0].final_cfs_df.to_csv(
model_name_path + "counterfactuals.csv", index=False
@ -1371,43 +1339,15 @@ def ajax_requests(action, request):
elif dataset_type == "timeseries":
model_name = request.POST["model_name"]
model_name_path = os.path.join(
PIPELINE_PATH + f"{df_name}/" + "trained_models/" + f"{model_name}/"
)
PIPELINE_PATH + f"{df_name}/" + "trained_models/" + f"{model_name}/"
)
path = model_name_path
if model_name == "glacier":
constraint_type = request.POST.get("constraint")
print(constraint_type)
w_value = request.POST.get("w_value")
model_name_path_constraint = model_name_path + f"{constraint_type}/"
if not os.path.exists(model_name_path_constraint):
os.makedirs(model_name_path_constraint)
# https://github.com/wildboar-foundation/wildboar/blob/master/docs/guide/explain/counterfactuals.rst#id27
classifier = joblib.load(model_name_path + "/classifier.sav")
# pipeline path
json_path = os.path.join(PIPELINE_PATH, f"{df_name}" + "/pipeline.json")
# load pipeline data
jsonFile = open(json_path, "r")
pipeline_data = json.load(jsonFile) # data becomes a dictionary
autoencoder = pipeline_data["classifier"][model_name]["autoencoder"]
if autoencoder == "Yes":
autoencoder = joblib.load(model_name_path + "/autoencoder.sav")
else:
autoencoder = None
gc_compute_counterfactuals(
model_name_path,
model_name_path_constraint,
constraint_type,
[0.00001],
float(w_value),
0.5,
classifier,
autoencoder,
constraint = request.POST["constraint"]
path = os.path.join(
PIPELINE_PATH + f"{df_name}/" + "trained_models/" + f"{model_name}/" + f"{constraint}/"
)
path = model_name_path_constraint
X_test_path = os.path.join(model_name_path + "X_test.csv")
y_test_path = os.path.join(model_name_path + "y_test.npy")
y_pred_path = os.path.join(path + "y_pred.npy")
@ -1425,7 +1365,6 @@ def ajax_requests(action, request):
X_test = pd.DataFrame(scaler.inverse_transform(X_test))
X_cf = scaler.inverse_transform(X_cf)
print(df_id)
fig = methods.ecg_plot_counterfactuals(
int(df_id), X_test, y_test, y_pred, X_cf, cf_pred
)
@ -1435,7 +1374,65 @@ def ajax_requests(action, request):
"fig": fig.to_html(),
"dataset_type": dataset_type,
}
elif action == "compute_cf":
model_name = request.POST.get("model_name")
if model_name == "glacier":
constraint_type = request.POST.get("constraint")
w_value = request.POST.get("w_value")
df_name = request.session.get("df_name")
model_name_path = os.path.join(
PIPELINE_PATH + f"{df_name}/" + "trained_models/" + f"{model_name}/"
)
model_name_path_constraint = model_name_path + f"{constraint_type}/"
if not os.path.exists(model_name_path_constraint):
os.makedirs(model_name_path_constraint)
# https://github.com/wildboar-foundation/wildboar/blob/master/docs/guide/explain/counterfactuals.rst#id27
classifier = joblib.load(model_name_path + "/classifier.sav")
# pipeline path
json_path = os.path.join(PIPELINE_PATH, f"{df_name}" + "/pipeline.json")
# load pipeline data
jsonFile = open(json_path, "r")
pipeline_data = json.load(jsonFile) # data becomes a dictionary
autoencoder = pipeline_data["classifier"][model_name]["autoencoder"]
experiment_dict = {"constraint": constraint_type, "w_value": w_value}
if "experiments" in pipeline_data["classifier"][model_name]:
# if there exists key with value "experiments"
keys = pipeline_data["classifier"][model_name]["experiments"].keys()
last_key_int = int(list(keys)[-1])
last_key_int_incr_str = str(last_key_int + 1)
else:
last_key_int_incr_str = "0"
experiment_key_dict = {"experiments": {last_key_int_incr_str: {}}}
pipeline_data["classifier"][model_name].update(experiment_key_dict)
outter_dict = {last_key_int_incr_str: experiment_dict}
pipeline_data["classifier"][model_name]["experiments"].update(outter_dict)
if autoencoder == "Yes":
autoencoder = joblib.load(model_name_path + "/autoencoder.sav")
else:
autoencoder = None
gc_compute_counterfactuals(
model_name_path,
model_name_path_constraint,
constraint_type,
[0.0001],
float(w_value),
0.5,
classifier,
autoencoder,
)
path = model_name_path_constraint
# write back changes in json
with open(json_path, "w") as file:
json.dump(pipeline_data, file, indent=4)
context = {}
elif action == "class_label_selection":
df_name = request.session.get("df_name")
@ -1508,6 +1505,7 @@ def ajax_requests(action, request):
X_test, y_test, int(cfrow_id), class_label
)
request.session["cfrow_id"] = index
request.session["class_label"] = class_label
context = {"fig": fig.to_html(), "dataset_type": dataset_type}
elif action == "dataset_charts":
df_name = request.POST.get("df_name")

Binary file not shown.