diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..a428804 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,29 @@ +name: pycascades pipeline +on: [push] + +jobs: + build-linux: + runs-on: ubuntu-latest + strategy: + max-parallel: 5 + + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: '3.11' + - name: Add conda to system path + run: | + # $CONDA is an environment variable pointing to the root of the miniconda directory + echo $CONDA/bin >> $GITHUB_PATH + - name: Install dependencies + run: | + conda env update --file environment.yml --name base + - name: Lint + run: | + conda install pycodestyle + pycodestyle --show-source --show-pep8 --ignore=E133,E203,E221,E251,W503,E402 pycascades/core/**/*.py + - name: Test + run: | + python -m unittest pycascades/tests/test_core.py diff --git a/amazon_rainforest/data/both_1deg_2003_01.nc b/amazon_rainforest/data/both_1deg_2003_01.nc deleted file mode 100644 index 3a33f4d..0000000 Binary files a/amazon_rainforest/data/both_1deg_2003_01.nc and /dev/null differ diff --git a/amazon_rainforest/data/both_1deg_2003_02.nc b/amazon_rainforest/data/both_1deg_2003_02.nc deleted file mode 100644 index 6a110d1..0000000 Binary files a/amazon_rainforest/data/both_1deg_2003_02.nc and /dev/null differ diff --git a/amazon_rainforest/data/both_1deg_2003_03.nc b/amazon_rainforest/data/both_1deg_2003_03.nc deleted file mode 100644 index 7fb5c18..0000000 Binary files a/amazon_rainforest/data/both_1deg_2003_03.nc and /dev/null differ diff --git a/amazon_rainforest/data/both_1deg_2003_04.nc b/amazon_rainforest/data/both_1deg_2003_04.nc deleted file mode 100644 index b858c6b..0000000 Binary files a/amazon_rainforest/data/both_1deg_2003_04.nc and /dev/null differ diff --git a/amazon_rainforest/data/both_1deg_2003_05.nc b/amazon_rainforest/data/both_1deg_2003_05.nc deleted file mode 100644 index 9075f80..0000000 Binary files a/amazon_rainforest/data/both_1deg_2003_05.nc and /dev/null differ diff --git a/amazon_rainforest/data/both_1deg_2003_06.nc b/amazon_rainforest/data/both_1deg_2003_06.nc deleted file mode 100644 index 0046fbd..0000000 Binary files a/amazon_rainforest/data/both_1deg_2003_06.nc and /dev/null differ diff --git a/amazon_rainforest/data/both_1deg_2003_07.nc b/amazon_rainforest/data/both_1deg_2003_07.nc deleted file mode 100644 index 5c0e3bc..0000000 Binary files a/amazon_rainforest/data/both_1deg_2003_07.nc and /dev/null differ diff --git a/amazon_rainforest/data/both_1deg_2003_08.nc b/amazon_rainforest/data/both_1deg_2003_08.nc deleted file mode 100644 index 52d5083..0000000 Binary files a/amazon_rainforest/data/both_1deg_2003_08.nc and /dev/null differ diff --git a/amazon_rainforest/data/both_1deg_2003_09.nc b/amazon_rainforest/data/both_1deg_2003_09.nc deleted file mode 100644 index 4d17655..0000000 Binary files a/amazon_rainforest/data/both_1deg_2003_09.nc and /dev/null differ diff --git a/amazon_rainforest/data/both_1deg_2003_10.nc b/amazon_rainforest/data/both_1deg_2003_10.nc deleted file mode 100644 index 178d5bc..0000000 Binary files a/amazon_rainforest/data/both_1deg_2003_10.nc and /dev/null differ diff --git a/amazon_rainforest/data/both_1deg_2003_11.nc b/amazon_rainforest/data/both_1deg_2003_11.nc deleted file mode 100644 index 55eca7a..0000000 Binary files a/amazon_rainforest/data/both_1deg_2003_11.nc and /dev/null differ diff --git a/amazon_rainforest/data/both_1deg_2003_12.nc b/amazon_rainforest/data/both_1deg_2003_12.nc deleted file mode 100644 index 635197d..0000000 Binary files a/amazon_rainforest/data/both_1deg_2003_12.nc and /dev/null differ diff --git a/amazon_rainforest/evaluations/r_crit_risk_maps.py b/amazon_rainforest/evaluations/r_crit_risk_maps.py deleted file mode 100644 index abb652f..0000000 --- a/amazon_rainforest/evaluations/r_crit_risk_maps.py +++ /dev/null @@ -1,254 +0,0 @@ -import numpy as np -from netCDF4 import Dataset -import glob - -#plotting imports -import matplotlib.pyplot as plt -import matplotlib.colors as colors -import cartopy.crs as ccrs -import cartopy.feature as cfeature - -import seaborn as sns -sns.set(font_scale=2.5) -sns.set_style("whitegrid") - - -#Coupling flag -coupling = False - - - -#MAIN -if coupling == True: - name = "with_coupling" - directory = "../results/" -else: - name = "no_coupling" - directory = "../results/no_coupling/" - - -years = np.arange(2003, 2004, 1) - - -output = [] -for year in years: - risk_year = np.loadtxt(directory + "unstable_amaz_{}_rcrit1700_field.txt".format(year)) - output.append(risk_year) -output = np.array(output) -#get average and standard deviation -output_mean = np.mean(output, axis=0) -output_std = np.std(output, axis=0) - -#save as text files -np.savetxt("risk_map_mean_{}.txt".format(name), output_mean) -np.savetxt("risk_map_std_{}.txt".format(name), output_std) - - -########PLOTTING STRUCTURE -print("Plotting sequence") -#get lat lon values from -net_data = Dataset(np.sort(glob.glob("../data/*.nc"))[0]) - - -#latlon values -lat = net_data.variables["lat"][:] -lon = net_data.variables["lon"][:] - -tuples = [(lat[idx],lon[idx]) for idx in range(lat.size)] - -lat = np.unique(lat) -lon = np.unique(lon) -lat = np.append(lat, lat[-1]+lat[-1]-lat[-2]) #why do we need to append lat[-1]+lat[-1]-lat[-2]??? -lon = np.append(lon, lon[-1]+lon[-1]-lon[-2]) - -vals_mean_no = np.empty((lat.size,lon.size)) -vals_mean_no[:,:] = np.nan -vals_std_no = np.empty((lat.size,lon.size)) -vals_std_no[:,:] = np.nan - -for idx,x in enumerate(lat): - for idy,y in enumerate(lon): - if (x,y) in tuples: - vals_mean_no[idx,idy] = output_mean[tuples.index((x,y))] - vals_std_no[idx,idy] = output_std[tuples.index((x,y))] - - -#Plotting Mean -plt.rc('text', usetex=True) -plt.rc('font', family='serif', size=25) -plt.figure(figsize=(15,10)) - -ax = plt.axes(projection=ccrs.PlateCarree()) -ax.set_extent([275, 320, -22, 15], crs=ccrs.PlateCarree()) -ax.add_feature(cfeature.COASTLINE, linewidth=1) -ax.coastlines('50m') - -cmap = plt.get_cmap('Reds') -plt.pcolor(lon-(lon[-1]-lon[-2]) / 2, lat-(lat[-1]-lat[-2]) / 2, 100*vals_mean_no, cmap=cmap) - -cbar = plt.colorbar(label='Likelihood of tipping [\%]') -plt.clim([0, 100]) - -plt.savefig('risk_map_{}.png'.format(name), bbox_inches='tight') -plt.savefig('risk_map_{}.pdf'.format(name), bbox_inches='tight') -#plt.show() -plt.clf() -plt.close() - - -#Plotting Mean -plt.rc('text', usetex=True) -plt.rc('font', family='serif', size=25) -plt.figure(figsize=(15,10)) - -ax = plt.axes(projection=ccrs.PlateCarree()) -ax.set_extent([275, 320, -22, 15], crs=ccrs.PlateCarree()) -ax.add_feature(cfeature.COASTLINE, linewidth=1) -ax.coastlines('50m') - -cmap = plt.get_cmap('Reds') -plt.pcolor(lon-(lon[-1]-lon[-2]) / 2, lat-(lat[-1]-lat[-2]) / 2, 100*vals_std_no, cmap=cmap) - -cbar = plt.colorbar(label='Likelihood of tipping [\%]') -plt.clim([0, 100]) - -plt.savefig('risk_map_std_{}.png'.format(name), bbox_inches='tight') -plt.savefig('risk_map_std_{}.pdf'.format(name), bbox_inches='tight') -#plt.show() -plt.clf() -plt.close() - - - - -###################FROM HERE ONWARDS: WITH COUPLING!!!############################# -coupling = True - - -#MAIN -if coupling == True: - name = "with_coupling" - directory = "../results/" -else: - name = "no_coupling" - directory = "../results/no_coupling/" - - -years = np.arange(2003, 2004, 1) - - -output = [] -for year in years: - risk_year = np.loadtxt(directory + "unstable_amaz_{}_rcrit1700_field.txt".format(year)) - output.append(risk_year) -output = np.array(output) -#get average and standard deviation -output_mean = np.mean(output, axis=0) -output_std = np.std(output, axis=0) - -#save as text files -np.savetxt("risk_map_mean_{}.txt".format(name), output_mean) -np.savetxt("risk_map_std_{}.txt".format(name), output_std) - - -########PLOTTING STRUCTURE -print("Plotting sequence") -#get lat lon values from -net_data = Dataset(np.sort(glob.glob("../data/*.nc"))[0]) -#latlon values -lat = net_data.variables["lat"][:] -lon = net_data.variables["lon"][:] - -tuples = [(lat[idx],lon[idx]) for idx in range(lat.size)] - -lat = np.unique(lat) -lon = np.unique(lon) -lat = np.append(lat, lat[-1]+lat[-1]-lat[-2]) #why do we need to append lat[-1]+lat[-1]-lat[-2]??? -lon = np.append(lon, lon[-1]+lon[-1]-lon[-2]) - -vals_mean_with = np.empty((lat.size,lon.size)) -vals_mean_with[:,:] = np.nan -vals_std_with = np.empty((lat.size,lon.size)) -vals_std_with[:,:] = np.nan - -for idx,x in enumerate(lat): - for idy,y in enumerate(lon): - if (x,y) in tuples: - vals_mean_with[idx,idy] = output_mean[tuples.index((x,y))] - vals_std_with[idx,idy] = output_std[tuples.index((x,y))] - - -#Plotting Mean -plt.rc('text', usetex=True) -plt.rc('font', family='serif', size=25) -plt.figure(figsize=(15,10)) - -ax = plt.axes(projection=ccrs.PlateCarree()) -ax.set_extent([275, 320, -22, 15], crs=ccrs.PlateCarree()) -ax.add_feature(cfeature.COASTLINE, linewidth=1) -ax.coastlines('50m') - -cmap = plt.get_cmap('Reds') -plt.pcolor(lon-(lon[-1]-lon[-2]) / 2, lat-(lat[-1]-lat[-2]) / 2, 100*vals_mean_with, cmap=cmap) - -cbar = plt.colorbar(label='Likelihood of tipping [\%]') -plt.clim([0, 100]) - -plt.savefig('risk_map_{}.png'.format(name), bbox_inches='tight') -plt.savefig('risk_map_{}.pdf'.format(name), bbox_inches='tight') -#plt.show() -plt.clf() -plt.close() - - -#Plotting Mean -plt.rc('text', usetex=True) -plt.rc('font', family='serif', size=25) -plt.figure(figsize=(15,10)) - -ax = plt.axes(projection=ccrs.PlateCarree()) -ax.set_extent([275, 320, -22, 15], crs=ccrs.PlateCarree()) -ax.add_feature(cfeature.COASTLINE, linewidth=1) -ax.coastlines('50m') - -cmap = plt.get_cmap('Reds') -plt.pcolor(lon-(lon[-1]-lon[-2]) / 2, lat-(lat[-1]-lat[-2]) / 2, 100*vals_std_with, cmap=cmap) - -cbar = plt.colorbar(label='Likelihood of tipping [\%]') -plt.clim([0, 100]) - -plt.savefig('risk_map_std_{}.png'.format(name), bbox_inches='tight') -plt.savefig('risk_map_std_{}.pdf'.format(name), bbox_inches='tight') -#plt.show() -plt.clf() -plt.close() - - - - -####################DIFFERENCE BETWEEN NO COUPLING AND WITH COUPLING############### -#Plotting Mean -print("Final Plot") -plt.rc('text', usetex=True) -plt.rc('font', family='serif', size=25) -plt.figure(figsize=(15,10)) - -ax = plt.axes(projection=ccrs.PlateCarree()) -ax.set_extent([275, 320, -22, 15], crs=ccrs.PlateCarree()) -ax.add_feature(cfeature.COASTLINE, linewidth=1) -ax.coastlines('50m') - -cmap = plt.get_cmap('Reds') -plt.pcolor(lon-(lon[-1]-lon[-2]) / 2, lat-(lat[-1]-lat[-2]) / 2, 100*(vals_mean_with - vals_mean_no), cmap=cmap) - -cbar = plt.colorbar(label='Likelihood of tipping [\%]') -plt.clim([0, 100]) - -plt.savefig('risk_map_difference.png', bbox_inches='tight') -plt.savefig('risk_map_difference.pdf', bbox_inches='tight') -#plt.show() -plt.clf() -plt.close() - - -print("Finish") diff --git a/amazon_rainforest/evaluations/risk_map_difference.pdf b/amazon_rainforest/evaluations/risk_map_difference.pdf deleted file mode 100644 index 0c5103a..0000000 Binary files a/amazon_rainforest/evaluations/risk_map_difference.pdf and /dev/null differ diff --git a/amazon_rainforest/evaluations/risk_map_difference.png b/amazon_rainforest/evaluations/risk_map_difference.png deleted file mode 100644 index 60ea950..0000000 Binary files a/amazon_rainforest/evaluations/risk_map_difference.png and /dev/null differ diff --git a/amazon_rainforest/evaluations/risk_map_mean_no_coupling.txt b/amazon_rainforest/evaluations/risk_map_mean_no_coupling.txt deleted file mode 100644 index 25e1089..0000000 --- a/amazon_rainforest/evaluations/risk_map_mean_no_coupling.txt +++ /dev/null @@ -1,2268 +0,0 @@ -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -5.833333333333333703e-01 -7.500000000000000000e-01 -8.333333333333333703e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -5.000000000000000000e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333333703e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -5.000000000000000000e-01 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.166666666666666852e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -5.833333333333333703e-01 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -8.333333333333332871e-02 -2.500000000000000000e-01 -5.000000000000000000e-01 -9.166666666666666297e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -2.500000000000000000e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -2.500000000000000000e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -7.500000000000000000e-01 -8.333333333333333703e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -1.000000000000000000e+00 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -6.666666666666666297e-01 -7.500000000000000000e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -8.333333333333333703e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -5.833333333333333703e-01 -5.833333333333333703e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -7.500000000000000000e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -5.833333333333333703e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -7.500000000000000000e-01 -7.500000000000000000e-01 -5.833333333333333703e-01 -6.666666666666666297e-01 -5.833333333333333703e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -5.833333333333333703e-01 -5.833333333333333703e-01 -5.000000000000000000e-01 -5.833333333333333703e-01 -7.500000000000000000e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -5.833333333333333703e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -6.666666666666666297e-01 -7.500000000000000000e-01 -5.833333333333333703e-01 -6.666666666666666297e-01 -8.333333333333333703e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -7.500000000000000000e-01 -5.833333333333333703e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -5.833333333333333703e-01 -7.500000000000000000e-01 -6.666666666666666297e-01 -8.333333333333333703e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -5.833333333333333703e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -2.500000000000000000e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -5.000000000000000000e-01 -6.666666666666666297e-01 -5.833333333333333703e-01 -8.333333333333333703e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -5.000000000000000000e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -4.166666666666666852e-01 -5.833333333333333703e-01 -7.500000000000000000e-01 -8.333333333333333703e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -5.833333333333333703e-01 -5.833333333333333703e-01 -4.166666666666666852e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -4.166666666666666852e-01 -5.000000000000000000e-01 -7.500000000000000000e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -7.500000000000000000e-01 -4.166666666666666852e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -5.000000000000000000e-01 -7.500000000000000000e-01 -8.333333333333333703e-01 -1.000000000000000000e+00 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -2.500000000000000000e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -3.333333333333333148e-01 -7.500000000000000000e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -4.166666666666666852e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -3.333333333333333148e-01 -6.666666666666666297e-01 -7.500000000000000000e-01 -1.000000000000000000e+00 -6.666666666666666297e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -2.500000000000000000e-01 -3.333333333333333148e-01 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -3.333333333333333148e-01 -0.000000000000000000e+00 -1.666666666666666574e-01 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -4.166666666666666852e-01 -0.000000000000000000e+00 -1.666666666666666574e-01 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -2.500000000000000000e-01 -0.000000000000000000e+00 -1.666666666666666574e-01 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -8.333333333333332871e-02 -2.500000000000000000e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -3.333333333333333148e-01 -0.000000000000000000e+00 -3.333333333333333148e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -2.500000000000000000e-01 -3.333333333333333148e-01 -7.500000000000000000e-01 -4.166666666666666852e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -3.333333333333333148e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -5.833333333333333703e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -5.833333333333333703e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -3.333333333333333148e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -2.500000000000000000e-01 -3.333333333333333148e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -5.833333333333333703e-01 -7.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -2.500000000000000000e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -2.500000000000000000e-01 -8.333333333333332871e-02 diff --git a/amazon_rainforest/evaluations/risk_map_mean_with_coupling.txt b/amazon_rainforest/evaluations/risk_map_mean_with_coupling.txt deleted file mode 100644 index ef8d657..0000000 --- a/amazon_rainforest/evaluations/risk_map_mean_with_coupling.txt +++ /dev/null @@ -1,2268 +0,0 @@ -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.666666666666666574e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -6.666666666666666297e-01 -8.333333333333333703e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.166666666666666852e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.333333333333333148e-01 -8.333333333333333703e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.333333333333333148e-01 -8.333333333333333703e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -3.333333333333333148e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -7.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -3.333333333333333148e-01 -8.333333333333333703e-01 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -5.000000000000000000e-01 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -6.666666666666666297e-01 -7.500000000000000000e-01 -9.166666666666666297e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -6.666666666666666297e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -6.666666666666666297e-01 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -6.666666666666666297e-01 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -3.333333333333333148e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -3.333333333333333148e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -5.833333333333333703e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -4.166666666666666852e-01 -5.833333333333333703e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -5.833333333333333703e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -5.000000000000000000e-01 -5.833333333333333703e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -5.833333333333333703e-01 -5.833333333333333703e-01 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -4.166666666666666852e-01 -5.833333333333333703e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -5.833333333333333703e-01 -6.666666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -3.333333333333333148e-01 -5.833333333333333703e-01 -6.666666666666666297e-01 -7.500000000000000000e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -7.500000000000000000e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -5.833333333333333703e-01 -6.666666666666666297e-01 -7.500000000000000000e-01 -7.500000000000000000e-01 -6.666666666666666297e-01 -7.500000000000000000e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -2.500000000000000000e-01 -2.500000000000000000e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -7.500000000000000000e-01 -7.500000000000000000e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -2.500000000000000000e-01 -2.500000000000000000e-01 -5.833333333333333703e-01 -6.666666666666666297e-01 -7.500000000000000000e-01 -7.500000000000000000e-01 -7.500000000000000000e-01 -7.500000000000000000e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -5.833333333333333703e-01 -8.333333333333333703e-01 -7.500000000000000000e-01 -7.500000000000000000e-01 -7.500000000000000000e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -7.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -5.833333333333333703e-01 -8.333333333333333703e-01 -7.500000000000000000e-01 -7.500000000000000000e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -9.166666666666666297e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -6.666666666666666297e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -8.333333333333333703e-01 -9.166666666666666297e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -5.833333333333333703e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -8.333333333333333703e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -9.166666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.333333333333333148e-01 -5.000000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -6.666666666666666297e-01 -7.500000000000000000e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -8.333333333333333703e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -6.666666666666666297e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.166666666666666852e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -5.000000000000000000e-01 -6.666666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -8.333333333333333703e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -9.166666666666666297e-01 -6.666666666666666297e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -4.166666666666666852e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -5.000000000000000000e-01 -5.833333333333333703e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -8.333333333333333703e-01 -6.666666666666666297e-01 -8.333333333333333703e-01 -6.666666666666666297e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -9.166666666666666297e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333333703e-01 -6.666666666666666297e-01 -6.666666666666666297e-01 -5.000000000000000000e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -7.500000000000000000e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -7.500000000000000000e-01 -5.833333333333333703e-01 -5.000000000000000000e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -5.000000000000000000e-01 -6.666666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -7.500000000000000000e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -5.000000000000000000e-01 -6.666666666666666297e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -4.166666666666666852e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -5.000000000000000000e-01 -5.833333333333333703e-01 -8.333333333333333703e-01 -1.000000000000000000e+00 -1.000000000000000000e+00 -5.833333333333333703e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -7.500000000000000000e-01 -9.166666666666666297e-01 -1.000000000000000000e+00 -7.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -0.000000000000000000e+00 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -0.000000000000000000e+00 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -5.000000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -5.833333333333333703e-01 -0.000000000000000000e+00 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -5.000000000000000000e-01 -0.000000000000000000e+00 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -3.333333333333333148e-01 -5.000000000000000000e-01 -0.000000000000000000e+00 -3.333333333333333148e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -0.000000000000000000e+00 -3.333333333333333148e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -0.000000000000000000e+00 -4.166666666666666852e-01 -3.333333333333333148e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -7.500000000000000000e-01 -4.166666666666666852e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -5.000000000000000000e-01 -4.166666666666666852e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -5.833333333333333703e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -5.833333333333333703e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -3.333333333333333148e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -0.000000000000000000e+00 -8.333333333333332871e-02 -2.500000000000000000e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -2.500000000000000000e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.333333333333333148e-01 -3.333333333333333148e-01 -1.666666666666666574e-01 -1.666666666666666574e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.333333333333333148e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -3.333333333333333148e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -2.500000000000000000e-01 -1.666666666666666574e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -2.500000000000000000e-01 -3.333333333333333148e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -0.000000000000000000e+00 -1.666666666666666574e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -3.333333333333333148e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.666666666666666574e-01 -1.666666666666666574e-01 -2.500000000000000000e-01 -4.166666666666666852e-01 -4.166666666666666852e-01 -8.333333333333332871e-02 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -4.166666666666666852e-01 -5.833333333333333703e-01 -6.666666666666666297e-01 -7.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.500000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -8.333333333333332871e-02 -8.333333333333332871e-02 -8.333333333333332871e-02 -2.500000000000000000e-01 -8.333333333333332871e-02 -8.333333333333332871e-02 -2.500000000000000000e-01 -8.333333333333332871e-02 diff --git a/amazon_rainforest/evaluations/risk_map_no_coupling.pdf b/amazon_rainforest/evaluations/risk_map_no_coupling.pdf deleted file mode 100644 index 485b768..0000000 Binary files a/amazon_rainforest/evaluations/risk_map_no_coupling.pdf and /dev/null differ diff --git a/amazon_rainforest/evaluations/risk_map_no_coupling.png b/amazon_rainforest/evaluations/risk_map_no_coupling.png deleted file mode 100644 index acb669c..0000000 Binary files a/amazon_rainforest/evaluations/risk_map_no_coupling.png and /dev/null differ diff --git a/amazon_rainforest/evaluations/risk_map_std_no_coupling.pdf b/amazon_rainforest/evaluations/risk_map_std_no_coupling.pdf deleted file mode 100644 index b77e802..0000000 Binary files a/amazon_rainforest/evaluations/risk_map_std_no_coupling.pdf and /dev/null differ diff --git a/amazon_rainforest/evaluations/risk_map_std_no_coupling.png b/amazon_rainforest/evaluations/risk_map_std_no_coupling.png deleted file mode 100644 index 9b80257..0000000 Binary files a/amazon_rainforest/evaluations/risk_map_std_no_coupling.png and /dev/null differ diff --git a/amazon_rainforest/evaluations/risk_map_std_no_coupling.txt b/amazon_rainforest/evaluations/risk_map_std_no_coupling.txt deleted file mode 100644 index 33fae67..0000000 --- a/amazon_rainforest/evaluations/risk_map_std_no_coupling.txt +++ /dev/null @@ -1,2268 +0,0 @@ -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -5.000000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -5.000000000000000000e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.930066485916346775e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.930066485916346775e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -2.763853991962832990e-01 -4.330127018922192983e-01 -5.000000000000000000e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499649490e-01 -3.726779962499649490e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -3.726779962499649490e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -0.000000000000000000e+00 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -4.930066485916346775e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.930066485916346775e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.930066485916346775e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499650045e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.930066485916347330e-01 -4.330127018922192983e-01 -4.714045207910316782e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.930066485916346775e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -5.000000000000000000e-01 -4.714045207910316782e-01 -4.930066485916346775e-01 -3.726779962499649490e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -5.000000000000000000e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499650045e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -3.726779962499649490e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -5.000000000000000000e-01 -4.330127018922192983e-01 -3.726779962499649490e-01 -0.000000000000000000e+00 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499650045e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -4.930066485916346775e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -4.714045207910316782e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499650045e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -3.726779962499648935e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.930066485916346775e-01 -0.000000000000000000e+00 -3.726779962499648935e-01 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -3.726779962499648935e-01 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499649490e-01 -3.726779962499649490e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -4.714045207910317337e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499649490e-01 -3.726779962499649490e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499649490e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.714045207910317337e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499649490e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499649490e-01 -3.726779962499649490e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 diff --git a/amazon_rainforest/evaluations/risk_map_std_with_coupling.pdf b/amazon_rainforest/evaluations/risk_map_std_with_coupling.pdf deleted file mode 100644 index ec253d0..0000000 Binary files a/amazon_rainforest/evaluations/risk_map_std_with_coupling.pdf and /dev/null differ diff --git a/amazon_rainforest/evaluations/risk_map_std_with_coupling.png b/amazon_rainforest/evaluations/risk_map_std_with_coupling.png deleted file mode 100644 index c5ff11f..0000000 Binary files a/amazon_rainforest/evaluations/risk_map_std_with_coupling.png and /dev/null differ diff --git a/amazon_rainforest/evaluations/risk_map_std_with_coupling.txt b/amazon_rainforest/evaluations/risk_map_std_with_coupling.txt deleted file mode 100644 index 4175348..0000000 --- a/amazon_rainforest/evaluations/risk_map_std_with_coupling.txt +++ /dev/null @@ -1,2268 +0,0 @@ -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -3.726779962499648935e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.930066485916346775e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.714045207910317337e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.714045207910317337e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -4.714045207910317337e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.714045207910317337e-01 -3.726779962499649490e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -5.000000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.714045207910317337e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499649490e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.714045207910317337e-01 -5.000000000000000000e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.714045207910316782e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.930066485916346775e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -5.000000000000000000e-01 -4.714045207910316782e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -4.714045207910316782e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -4.714045207910316782e-01 -3.726779962499648935e-01 -4.714045207910316782e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -4.714045207910316782e-01 -4.714045207910316782e-01 -5.000000000000000000e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -5.000000000000000000e-01 -4.714045207910316782e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -5.000000000000000000e-01 -4.714045207910316782e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.930066485916346775e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -5.000000000000000000e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.930066485916347330e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499649490e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -5.000000000000000000e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -5.000000000000000000e-01 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.714045207910317337e-01 -5.000000000000000000e-01 -0.000000000000000000e+00 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -4.714045207910317337e-01 -4.330127018922192983e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -4.930066485916346775e-01 -4.714045207910317337e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499648935e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -5.000000000000000000e-01 -4.930066485916346775e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499649490e-01 -3.726779962499649490e-01 -2.763853991962832435e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832990e-01 -3.726779962499650045e-01 -3.726779962499649490e-01 -3.726779962499649490e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -2.763853991962832435e-01 -3.726779962499650045e-01 -3.726779962499650045e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499649490e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -3.726779962499648935e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499650045e-01 -3.726779962499649490e-01 -2.763853991962832435e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -2.763853991962832435e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -0.000000000000000000e+00 -2.763853991962832435e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -3.726779962499648935e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499648935e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -3.726779962499648935e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.714045207910317337e-01 -4.714045207910317337e-01 -3.726779962499648935e-01 -3.726779962499648935e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.714045207910317337e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910317337e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.330127018922192983e-01 -3.726779962499648935e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -4.330127018922192983e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -3.726779962499649490e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -4.714045207910317337e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -3.726779962499649490e-01 -3.726779962499649490e-01 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -2.763853991962832990e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -4.930066485916346775e-01 -4.930066485916346775e-01 -4.714045207910316782e-01 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -4.330127018922192983e-01 -0.000000000000000000e+00 -0.000000000000000000e+00 -2.763853991962832990e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 -2.763853991962832990e-01 -4.330127018922192983e-01 -2.763853991962832990e-01 diff --git a/amazon_rainforest/evaluations/risk_map_with_coupling.pdf b/amazon_rainforest/evaluations/risk_map_with_coupling.pdf deleted file mode 100644 index a6d1bc9..0000000 Binary files a/amazon_rainforest/evaluations/risk_map_with_coupling.pdf and /dev/null differ diff --git a/amazon_rainforest/evaluations/risk_map_with_coupling.png b/amazon_rainforest/evaluations/risk_map_with_coupling.png deleted file mode 100644 index 7cb6789..0000000 Binary files a/amazon_rainforest/evaluations/risk_map_with_coupling.png and /dev/null differ diff --git a/amazon_rainforest/r_crit_unstable_amazon.py b/amazon_rainforest/r_crit_unstable_amazon.py deleted file mode 100644 index bb154af..0000000 --- a/amazon_rainforest/r_crit_unstable_amazon.py +++ /dev/null @@ -1,144 +0,0 @@ -import sys -import numpy as np -import networkx as nx -import glob -import pycascades as pc - -from netCDF4 import Dataset - -#plotting imports -import matplotlib -matplotlib.use("Agg") - - -import matplotlib.pyplot as plt -import matplotlib.colors as colors -import cartopy.crs as ccrs -import cartopy.feature as cfeature - -import seaborn as sns -sns.set(font_scale=2.5) -sns.set_style("whitegrid") - - -#Tipping function -def tip( net , initial_state ): - ev = pc.evolve( net , initial_state ) - - tolerance = 0.01 - t_step = 1 - #dc = 0.01 - realtime_break = 300000 - - if not ev.is_equilibrium(tolerance): - #This network is not in equilibrium since it[0] (= moisture transport) is not effectless at the current state of the network, - print("Warning: Initial state is not a fixed point of the system") - elif not ev.is_stable(): - print("Warning: Initial state is not a stable point of the system") - - ev.equilibrate(tolerance, t_step, realtime_break) - - conv_time = ev.get_timeseries()[0][-1] - ev.get_timeseries()[0][0] - return conv_time, net.get_number_tipped(ev.get_timeseries()[1][-1,:]), net.get_tip_states(ev.get_timeseries()[1][-1])[:] - - - - -################################GLOBAL VARIABLES################################ -no_cpl_dummy = False #no_cpl_dummy can be used to shut on or off the coupling; If True then there is no coupling, False with normal coupling -################################################# - - -sys_var = np.array(sys.argv[2:]) -year = sys_var[0] - - - -#GLOBAL VARIABLES -#critical value of mm/year before a state change occurs (Arie suggested: 800-1700mm/yr) -r_critical = np.arange(1700, 1800, 100) - - -data_eval = np.sort(np.array(glob.glob("data/*{}*.nc".format(year)))) #tree transpiration and interception evaporation - -print(data_eval) - - - -###MAIN### -for r_crit in r_critical: - print("r_crit: ", r_crit) - net = pc.amazon.generate_network(r_crit, data_eval, no_cpl_dummy) - - output = [] - - init_state = np.zeros(net.number_of_nodes()) - init_state.fill(-1) #initial state should be -1 instead of 0 everywhere - - #Without the source node tipped - info = tip(net, init_state) - conv_time = info[0] - casc_size = info[1] - unstable_amaz = info[2] - - if no_cpl_dummy == True: - np.savetxt("results/no_coupling/unstable_amaz_{}_rcrit{}_field.txt".format(year, r_crit), unstable_amaz) - np.savetxt("results/no_coupling/unstable_amaz_{}_rcrit{}_total.txt".format(year, r_crit), [conv_time, casc_size]) - else: - np.savetxt("results/unstable_amaz_{}_rcrit{}_field.txt".format(year, r_crit), unstable_amaz) - np.savetxt("results/unstable_amaz_{}_rcrit{}_total.txt".format(year, r_crit), [conv_time, casc_size]) - - - #plotting procedure - print("Plotting sequence") - dataset = data_eval[0] - net_data = Dataset(dataset) - #latlon values - lat = net_data.variables["lat"][:] - lon = net_data.variables["lon"][:] - - - tuples = [(lat[idx],lon[idx]) for idx in range(lat.size)] - - lat = np.unique(lat) - lon = np.unique(lon) - lat = np.append(lat, lat[-1]+lat[-1]-lat[-2]) #why do need to append lat[-1]+lat[-1]-lat[-2]??? - lon = np.append(lon, lon[-1]+lon[-1]-lon[-2]) - vals = np.empty((lat.size,lon.size)) - vals[:,:] = np.nan - - for idx,x in enumerate(lat): - for idy,y in enumerate(lon): - if (x,y) in tuples: - p = unstable_amaz[tuples.index((x,y))] - vals[idx,idy] = p - - - plt.rc('text', usetex=True) - plt.rc('font', family='serif', size=25) - - plt.figure(figsize=(15,10)) - - ax = plt.axes(projection=ccrs.PlateCarree()) - ax.set_extent([275, 320, -22, 15], crs=ccrs.PlateCarree()) - ax.add_feature(cfeature.COASTLINE, linewidth=1) - ax.coastlines('50m') - cmap = plt.get_cmap('rainbow') - - plt.pcolor(lon-(lon[-1]-lon[-2]) / 2, lat-(lat[-1]-lat[-2]) / 2, vals, cmap=cmap) - #nx.draw_networkx(net,pos, edge_color='black', node_size=0, with_labels=False) - cbar = plt.colorbar(label='Unstable Amazon') - - - if no_cpl_dummy == True: - plt.savefig("results/no_coupling/unstable_amaz_{}_rcrit{}.png".format(year, r_crit), bbox_inches='tight') - plt.savefig("results/no_coupling/unstable_amaz_{}_rcrit{}.pdf".format(year, r_crit), bbox_inches='tight') - else: - plt.savefig("results/unstable_amaz_{}_rcrit{}.png".format(year, r_crit), bbox_inches='tight') - plt.savefig("results/unstable_amaz_{}_rcrit{}.pdf".format(year, r_crit), bbox_inches='tight') - #plt.show() - plt.clf() - plt.close() - - -print("Finish") diff --git a/amazon_rainforest/r_crit_unstable_amazon_submit.txt b/amazon_rainforest/r_crit_unstable_amazon_submit.txt deleted file mode 100644 index a64139a..0000000 --- a/amazon_rainforest/r_crit_unstable_amazon_submit.txt +++ /dev/null @@ -1 +0,0 @@ -python r_crit_unstable_amazon.py $SLURM_NTASKS 2003 \ No newline at end of file diff --git a/amazon_rainforest/readme_amazon.txt b/amazon_rainforest/readme_amazon.txt deleted file mode 100644 index 2b89d55..0000000 --- a/amazon_rainforest/readme_amazon.txt +++ /dev/null @@ -1,4 +0,0 @@ -To let the Amazon rainforest system run, you need to follow these steps: - -1) Copy the line from the file "r_crit_unstable_amazon_submit.txt" into the shell to start the main file (This is test data, the real data can be requested by the corresponding author from the paper "Forest-rainfall cascades buffer against drought across the Amazon" (Nature Climate Change, 2018)) -2) The results will be saved to results folder and can be evluated with the script (r_crit_risk_maps.py) in the evaluations folder diff --git a/amazon_rainforest/results/no_coupling/unstable_amaz_2003_rcrit1700.pdf b/amazon_rainforest/results/no_coupling/unstable_amaz_2003_rcrit1700.pdf deleted file mode 100644 index 5fbdbb9..0000000 Binary files a/amazon_rainforest/results/no_coupling/unstable_amaz_2003_rcrit1700.pdf and /dev/null differ diff --git a/amazon_rainforest/results/no_coupling/unstable_amaz_2003_rcrit1700.png b/amazon_rainforest/results/no_coupling/unstable_amaz_2003_rcrit1700.png deleted file mode 100644 index ab6659f..0000000 Binary files a/amazon_rainforest/results/no_coupling/unstable_amaz_2003_rcrit1700.png and /dev/null differ diff --git a/amazon_rainforest/results/no_coupling/unstable_amaz_2003_rcrit1700_field.txt b/amazon_rainforest/results/no_coupling/unstable_amaz_2003_rcrit1700_field.txt deleted file mode 100644 index 8c66836..0000000 --- a/amazon_rainforest/results/no_coupling/unstable_amaz_2003_rcrit1700_field.txt +++ /dev/null @@ -1,567 +0,0 @@ -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 diff --git a/amazon_rainforest/results/no_coupling/unstable_amaz_2003_rcrit1700_total.txt b/amazon_rainforest/results/no_coupling/unstable_amaz_2003_rcrit1700_total.txt deleted file mode 100644 index 08a1701..0000000 --- a/amazon_rainforest/results/no_coupling/unstable_amaz_2003_rcrit1700_total.txt +++ /dev/null @@ -1,2 +0,0 @@ -2.400000000000000000e+01 -7.700000000000000000e+01 diff --git a/amazon_rainforest/results/unstable_amaz_2003_rcrit1700.pdf b/amazon_rainforest/results/unstable_amaz_2003_rcrit1700.pdf deleted file mode 100644 index 35192fe..0000000 Binary files a/amazon_rainforest/results/unstable_amaz_2003_rcrit1700.pdf and /dev/null differ diff --git a/amazon_rainforest/results/unstable_amaz_2003_rcrit1700.png b/amazon_rainforest/results/unstable_amaz_2003_rcrit1700.png deleted file mode 100644 index ad8737b..0000000 Binary files a/amazon_rainforest/results/unstable_amaz_2003_rcrit1700.png and /dev/null differ diff --git a/amazon_rainforest/results/unstable_amaz_2003_rcrit1700_field.txt b/amazon_rainforest/results/unstable_amaz_2003_rcrit1700_field.txt deleted file mode 100644 index 28113a1..0000000 --- a/amazon_rainforest/results/unstable_amaz_2003_rcrit1700_field.txt +++ /dev/null @@ -1,567 +0,0 @@ -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -1.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 -0.000000000000000000e+00 diff --git a/amazon_rainforest/results/unstable_amaz_2003_rcrit1700_total.txt b/amazon_rainforest/results/unstable_amaz_2003_rcrit1700_total.txt deleted file mode 100644 index 5d9b96e..0000000 --- a/amazon_rainforest/results/unstable_amaz_2003_rcrit1700_total.txt +++ /dev/null @@ -1,2 +0,0 @@ -2.900000000000000000e+01 -6.900000000000000000e+01 diff --git a/earth_system/Main_earth_system.py b/earth_system/Main_earth_system.py deleted file mode 100644 index eae2c50..0000000 --- a/earth_system/Main_earth_system.py +++ /dev/null @@ -1,175 +0,0 @@ - -# Add modules directory to path -import os -import sys - -# global imports -import numpy as np -import matplotlib -matplotlib.use("pdf") -import matplotlib.pyplot as plt -import seaborn as sns -sns.set(font_scale=1.) -import itertools -import glob -from PyPDF2 import PdfFileMerger - - -import pycascades as pc - - - -###MAIN -long_save_name = "results" -duration = 100000. #actual real simulation years -t_step = 15 #Time step per integration step - -#######################GLOBAL VARIABLES############################## -#drive coupling strength -strength = 0.25 -#drive global mean temperature (GMT) above pre-industrial -GMT = 2.0 -##################################################################### - -########################Declaration of variables from passed values####################### -sys_var = np.array(sys.argv[2:], dtype=float) -print(sys_var) - -#Tipping ranges from distribution -limits_gis, limits_thc, limits_wais, limits_amaz = sys_var[0], sys_var[1], sys_var[2], sys_var[3] - -#Probability fractions -# TO GIS -pf_wais_to_gis, pf_thc_to_gis = sys_var[4], sys_var[5] -# TO THC -pf_gis_to_thc, pf_wais_to_thc = sys_var[6], sys_var[7] -# TO WAIS -pf_thc_to_wais, pf_gis_to_wais = sys_var[8], sys_var[9] -# TO AMAZ -pf_thc_to_amaz = sys_var[10] - - - -#Time scale -print("Compute calibration timescale") -#function call for absolute timing and time conversion -time_props = pc.earth_system.Timing() -gis_time, thc_time, wais_time, amaz_time = time_props.timescales() -conv_fac_gis = time_props.conversion() - - -#include uncertain "+-" links: -plus_minus_links = np.array(list(itertools.product([-1.0, 0.0, 1.0], repeat=2))) -#directories for the Monte Carlo simulation -mc_dir = int(sys_var[-1]) - -################################# MAIN ################################# -#Create Earth System -earth_system = pc.earth_system.Earth_System(gis_time, thc_time, wais_time, amaz_time, - limits_gis, limits_thc, limits_wais, limits_amaz, - pf_wais_to_gis, pf_thc_to_gis, pf_gis_to_thc, - pf_wais_to_thc, pf_gis_to_wais, pf_thc_to_wais, pf_thc_to_amaz) - -################################# MAIN LOOP ################################# -for kk in plus_minus_links: - print("Wais to Thc:{}".format(kk[0])) - print("Thc to Amaz:{}".format(kk[1])) - - try: - os.stat("{}/feedbacks".format(long_save_name)) - except: - os.mkdir("{}/feedbacks".format(long_save_name)) - - try: - os.stat("{}/feedbacks/network_{}_{}".format(long_save_name, kk[0], kk[1])) - except: - os.mkdir("{}/feedbacks/network_{}_{}".format(long_save_name, kk[0], kk[1])) - - try: - os.stat("{}/feedbacks/network_{}_{}/{}".format(long_save_name, kk[0], kk[1], str(mc_dir).zfill(4) )) - except: - os.mkdir("{}/feedbacks/network_{}_{}/{}".format(long_save_name, kk[0], kk[1], str(mc_dir).zfill(4) )) - - #save starting conditions - np.savetxt("{}/feedbacks/network_{}_{}/{}/empirical_values.txt".format(long_save_name, kk[0], kk[1], str(mc_dir).zfill(4)), sys_var) - - - output = [] - - state_before = [-1, -1, -1, -1] #initial state - #get back the network of the Earth system - net = earth_system.earth_network(GMT, strength, kk[0], kk[1]) - - # initialize state - initial_state = [-1, -1, -1, -1] - ev = pc.evolve(net, initial_state) - # plotter.network(net) - - # Timestep to integration - timestep = t_step - sim_length = duration - t_end = sim_length/conv_fac_gis - ev.integrate(timestep, t_end) - - #save and plot the temporal evolution - fig = plt.figure() - # in case integration time should look the same for all runs divide t_arr_saving_structure by timer - plt.plot(ev.get_timeseries()[0]*conv_fac_gis, ev.get_timeseries()[1][:, 0], color="c", label="GIS") - plt.plot(ev.get_timeseries()[0]*conv_fac_gis, ev.get_timeseries()[1][:, 1], color="b", label="THC") - plt.plot(ev.get_timeseries()[0]*conv_fac_gis, ev.get_timeseries()[1][:, 2], color="k", label="WAIS") - plt.plot(ev.get_timeseries()[0]*conv_fac_gis, ev.get_timeseries()[1][:, 3], color="g", label="AMAZ") - - plt.title("coupling strength: {}, GMT: {}".format(np.round(strength, 2), np.round(GMT, 2))) - plt.xlabel("time [years]") - plt.ylabel("system feature f(x) [a.u.]") - plt.legend(loc='best') - plt.tight_layout() - plt.savefig("{}/feedbacks/network_{}_{}/{}/time_d{:.2f}_GMT{:.1f}.pdf".format(long_save_name, kk[0], kk[1], str(mc_dir).zfill(4), np.round(strength, 2), np.round(GMT, 2))) - #plt.show() - plt.clf() - plt.close() - - - - #saving structure - output.append([GMT, - ev.get_timeseries()[1][-1, 0], - ev.get_timeseries()[1][-1, 1], - ev.get_timeseries()[1][-1, 2], - ev.get_timeseries()[1][-1, 3], - net.get_number_tipped(ev.get_timeseries()[1][-1]), - [net.get_tip_states(ev.get_timeseries()[1][-1])[0]].count(True), - [net.get_tip_states(ev.get_timeseries()[1][-1])[1]].count(True), - [net.get_tip_states(ev.get_timeseries()[1][-1])[2]].count(True), - [net.get_tip_states(ev.get_timeseries()[1][-1])[3]].count(True) - ]) - - - - #necessary for break condition - if len(output) != 0: - #saving structure - data = np.array(output) - np.savetxt("{}/feedbacks/network_{}_{}/{}/feedbacks_{:.2f}.txt".format(long_save_name, kk[0], kk[1], str(mc_dir).zfill(4), strength), data) - gmt = data.T[0] - state_gis = data.T[1] - state_thc = data.T[2] - state_wais = data.T[3] - state_amaz = data.T[4] - - -# it is necessary to limit the amount of saved files -# --> compose one pdf file for each network setting and remove the other time-files -current_dir = os.getcwd() -os.chdir("{}/feedbacks/network_{}_{}/{}/".format(long_save_name, kk[0], kk[1], str(mc_dir).zfill(4))) -pdfs = np.array(np.sort(glob.glob("time_d*.pdf"), axis=0)) -if len(pdfs) != 0.: - merger = PdfFileMerger() - for pdf in pdfs: - merger.append(pdf) - merger.write("timelines_complete.pdf") - os.system("rm time_d*.pdf") -os.chdir(current_dir) - - -print("Finish") \ No newline at end of file diff --git a/earth_system/Readme_earth_system.txt b/earth_system/Readme_earth_system.txt deleted file mode 100644 index 1715385..0000000 --- a/earth_system/Readme_earth_system.txt +++ /dev/null @@ -1,4 +0,0 @@ -To start the Earth system application, the following steps need to be considered: -1) Choose one line from the Latin hypercube distributed initial conditions file (i.e. one line from the file "lhs_preparator/latin_sh_file_save.txt"). This will initiate the computation of the respective run -2) Result files are safed under the directory results/feedbacks and the respective network setup (there are nine possibilities: [--, -0, -+, 0-, 00, 0+, +-, +0, ++]) -3) Under evaluations start the file "tipped_elements.py" and afterwards "tipped_elements_plots.py" \ No newline at end of file diff --git a/earth_system/evaluations/plots/network_-1.0_-1.0.txt b/earth_system/evaluations/plots/network_-1.0_-1.0.txt deleted file mode 100644 index 499a56d..0000000 --- a/earth_system/evaluations/plots/network_-1.0_-1.0.txt +++ /dev/null @@ -1 +0,0 @@ -1.576000000000000000e+03 4.950000000000000000e+02 1.539000000000000000e+03 0.000000000000000000e+00 2.997000000000000000e+03 diff --git a/earth_system/evaluations/plots/network_-1.0_0.0.txt b/earth_system/evaluations/plots/network_-1.0_0.0.txt deleted file mode 100644 index 499a56d..0000000 --- a/earth_system/evaluations/plots/network_-1.0_0.0.txt +++ /dev/null @@ -1 +0,0 @@ -1.576000000000000000e+03 4.950000000000000000e+02 1.539000000000000000e+03 0.000000000000000000e+00 2.997000000000000000e+03 diff --git a/earth_system/evaluations/plots/network_-1.0_1.0.txt b/earth_system/evaluations/plots/network_-1.0_1.0.txt deleted file mode 100644 index 6c2b93d..0000000 --- a/earth_system/evaluations/plots/network_-1.0_1.0.txt +++ /dev/null @@ -1 +0,0 @@ -1.576000000000000000e+03 4.950000000000000000e+02 1.539000000000000000e+03 4.700000000000000000e+01 2.997000000000000000e+03 diff --git a/earth_system/evaluations/plots/network_0.0_-1.0.txt b/earth_system/evaluations/plots/network_0.0_-1.0.txt deleted file mode 100644 index f244b89..0000000 --- a/earth_system/evaluations/plots/network_0.0_-1.0.txt +++ /dev/null @@ -1 +0,0 @@ -1.562000000000000000e+03 6.690000000000000000e+02 1.540000000000000000e+03 0.000000000000000000e+00 2.997000000000000000e+03 diff --git a/earth_system/evaluations/plots/network_0.0_0.0.txt b/earth_system/evaluations/plots/network_0.0_0.0.txt deleted file mode 100644 index f244b89..0000000 --- a/earth_system/evaluations/plots/network_0.0_0.0.txt +++ /dev/null @@ -1 +0,0 @@ -1.562000000000000000e+03 6.690000000000000000e+02 1.540000000000000000e+03 0.000000000000000000e+00 2.997000000000000000e+03 diff --git a/earth_system/evaluations/plots/network_0.0_1.0.txt b/earth_system/evaluations/plots/network_0.0_1.0.txt deleted file mode 100644 index f62463c..0000000 --- a/earth_system/evaluations/plots/network_0.0_1.0.txt +++ /dev/null @@ -1 +0,0 @@ -1.562000000000000000e+03 6.690000000000000000e+02 1.540000000000000000e+03 6.400000000000000000e+01 2.997000000000000000e+03 diff --git a/earth_system/evaluations/plots/network_1.0_-1.0.txt b/earth_system/evaluations/plots/network_1.0_-1.0.txt deleted file mode 100644 index 76437c7..0000000 --- a/earth_system/evaluations/plots/network_1.0_-1.0.txt +++ /dev/null @@ -1 +0,0 @@ -1.501000000000000000e+03 9.090000000000000000e+02 1.538000000000000000e+03 0.000000000000000000e+00 2.997000000000000000e+03 diff --git a/earth_system/evaluations/plots/network_1.0_0.0.txt b/earth_system/evaluations/plots/network_1.0_0.0.txt deleted file mode 100644 index 76437c7..0000000 --- a/earth_system/evaluations/plots/network_1.0_0.0.txt +++ /dev/null @@ -1 +0,0 @@ -1.501000000000000000e+03 9.090000000000000000e+02 1.538000000000000000e+03 0.000000000000000000e+00 2.997000000000000000e+03 diff --git a/earth_system/evaluations/plots/network_1.0_1.0.txt b/earth_system/evaluations/plots/network_1.0_1.0.txt deleted file mode 100644 index 25f878c..0000000 --- a/earth_system/evaluations/plots/network_1.0_1.0.txt +++ /dev/null @@ -1 +0,0 @@ -1.501000000000000000e+03 9.090000000000000000e+02 1.538000000000000000e+03 8.600000000000000000e+01 2.997000000000000000e+03 diff --git a/earth_system/evaluations/plots/tipped_elements.pdf b/earth_system/evaluations/plots/tipped_elements.pdf deleted file mode 100644 index e2e861a..0000000 Binary files a/earth_system/evaluations/plots/tipped_elements.pdf and /dev/null differ diff --git a/earth_system/evaluations/plots/tipped_elements.png b/earth_system/evaluations/plots/tipped_elements.png deleted file mode 100644 index 3aaa6cf..0000000 Binary files a/earth_system/evaluations/plots/tipped_elements.png and /dev/null differ diff --git a/earth_system/evaluations/tipped_elements.py b/earth_system/evaluations/tipped_elements.py deleted file mode 100644 index a4947f9..0000000 --- a/earth_system/evaluations/tipped_elements.py +++ /dev/null @@ -1,41 +0,0 @@ -import os -import sys -import numpy as np -import matplotlib.pyplot as plt -import seaborn as sns -sns.set(font_scale=1.5) -import re -import glob - - - -# read all files -networks = np.array(np.sort(glob.glob("../results/feedbacks/*"))) - - -for network in networks: - print(network) - output = [] - final = [] - net_splitter = re.split("network", network)[-1] #used for the saving structure - folders = np.array(np.sort(glob.glob(network + "/0*"))) #do not collect special folders which start with a "-" - for folder in folders: - subfolders = np.array(np.sort(glob.glob(folder + "/feedbacks_*.txt"))) - for kk in subfolders: - file = np.loadtxt(kk) - final.append([file[6], file[7], file[8], file[9], 1]) - final = np.array(final) - - - output.append([ - np.sum(final.T[0]), np.sum(final.T[1]), np.sum(final.T[2]), np.sum(final.T[3]), np.sum(final.T[4]) - ]) - output = np.array(output) - print(output) - - - #Plot structure and saving structure - np.savetxt("plots/network{}.txt".format(net_splitter), output) - - -print("Finish") \ No newline at end of file diff --git a/earth_system/evaluations/tipped_elements_plots.py b/earth_system/evaluations/tipped_elements_plots.py deleted file mode 100644 index 9e5385f..0000000 --- a/earth_system/evaluations/tipped_elements_plots.py +++ /dev/null @@ -1,53 +0,0 @@ -import os -import sys -import numpy as np -import matplotlib.pyplot as plt - -import seaborn as sns -sns.set(font_scale=2.5) -sns.set_style("white") - -import re -import glob - - - - -data = np.sort(glob.glob("plots/network*.txt")) -output = [] -for i in data: - file = np.loadtxt(i) - output.append(file) -output = np.array(output) -mean = 100*np.mean(output, axis=0) -std = 100*np.std(output, axis=0) - - -print("Plotting") -fig, ax0 = plt.subplots(figsize=(8, 10)) - -colors = ["gray", "k", "b", "g"] -labels = ["GIS", "WAIS", "AMOC", "AR"] - - - -plt.rcParams['hatch.linewidth'] = 2. -#ax0.set_title("Number of tipping cascades: {:.0f} +- {:.0f}".format(total, total_err)) -ax0.bar(np.arange(4), [mean[0], mean[2], mean[1], mean[3]]/(0.01*mean[4]), - yerr=[std[0], std[2], std[1], std[3]]/(0.01*mean[4]), - color='None', align='center', alpha=0.85, ecolor='k', error_kw=dict(ecolor='k', lw=2, capsize=5, capthick=3, alpha=1.0), - hatch='xx', edgecolor=colors, lw=2) #default vaules: ecolor='k', error_kw=dict(ecolor='k', lw=2, capsize=5, capthick=2) -ax0.set_xticks(np.arange(4)) -ax0.set_xticklabels(labels, rotation="vertical") -#ax0.set_xlabel("Tipping elements") -ax0.set_ylabel("Likelihood of tipping [%]") -ax0.set_yticks(np.arange(0, 80, 10)) - -fig.tight_layout() -#sns.despine() #no background grid -fig.savefig("plots/tipped_elements.png") -fig.savefig("plots/tipped_elements.pdf") -fig.clf() -plt.close() - -print("Finish") \ No newline at end of file diff --git a/earth_system/lhs_preparator/latin_prob.txt b/earth_system/lhs_preparator/latin_prob.txt deleted file mode 100644 index 610deff..0000000 --- a/earth_system/lhs_preparator/latin_prob.txt +++ /dev/null @@ -1,1000 +0,0 @@ -2.241961283016736139e+00 4.690622821301434264e+00 1.415941190922719528e+00 4.102480797163987170e+00 1.930969839004014199e-01 5.780331277664366718e-01 3.120089095025565529e-01 1.197540259206236191e-01 1.316699858272921964e-01 2.705965076235176681e-01 3.715199043381330890e-01 -2.155850625807500531e+00 5.226118589584062057e+00 3.857259330281634924e+00 4.463155615986821090e+00 1.230606997512483647e-01 4.420520820628320857e-01 4.394691642486325822e-01 2.808452928426151685e-01 1.433361228253986763e-01 1.762502825168476561e-01 3.981044382110280333e-01 -2.557592367099788877e+00 5.050407687568924331e+00 3.657328554877022242e+00 4.433924338990216540e+00 1.017543689159550180e-01 7.710448504418757620e-01 2.403435240951488083e-01 1.832003130893284926e-01 1.216824558889042507e-01 7.620056616514666592e-01 2.124870213980464828e-01 -2.151372455649378068e+00 5.608738768762068005e+00 3.295951912292560237e+00 3.658686756175487886e+00 1.494559928422730388e-01 2.368115940608179204e-01 7.758401473290018613e-01 2.218028017194637602e-01 1.464101466910570915e-01 1.333205544542590548e-01 3.294756782029223396e-01 -1.293688372272019382e+00 3.976375867564774680e+00 5.050149116775495273e+00 4.026204025308965484e+00 1.025321570868448912e-01 4.347908639169696388e-01 8.857393698752209499e-01 1.068827328043394642e-01 1.048178749204332350e-01 9.894735280347783934e-01 1.912568460491645139e-01 -1.195633136932396479e+00 4.875302815816437096e+00 1.018956096429438185e+00 3.514570663336946676e+00 1.196131230040481247e-01 8.550909378222496526e-01 1.380428903132851493e-01 2.210031177346551967e-01 1.106779967287986055e-01 2.262590027635835443e-01 2.193890400269138397e-01 -1.964377108625738888e+00 4.064666295400496843e+00 3.625102687186944728e+00 3.800062194448330377e+00 1.174112014680895877e-01 8.329894635195713715e-01 6.354836989051445562e-01 2.647607353465245561e-01 1.092607216075725529e-01 3.313849201464384997e-01 2.425041229534496412e-01 -1.846880789373606779e+00 3.894653937010740030e+00 3.880268606434637668e+00 4.323437580755631338e+00 1.973957528508918646e-01 4.095671299924583675e-01 5.034099965608209715e-01 2.068848375614729951e-01 1.413754946473199103e-01 5.499421032384442798e-01 1.303742124373776512e-01 -2.987211843430332081e+00 4.802101828223670488e+00 2.348121682371722585e+00 4.105619914222630840e+00 1.672110402820460029e-01 6.673619633976304311e-01 8.737612451068552666e-01 2.374811113547012076e-01 1.383538763609955813e-01 8.565401025703912596e-01 2.621236090034064770e-01 -8.416870442233542748e-01 3.741451777093419917e+00 3.731953514281142859e+00 3.719228824872370165e+00 1.873128997281276742e-01 7.461918160364990893e-01 4.344494419125266571e-01 2.926663467936653218e-01 1.300198812221746159e-01 8.520268291457760990e-01 2.559363351220341753e-01 -1.253640344779520133e+00 5.836593489362240206e+00 1.808074091765456526e+00 3.919869432350347349e+00 1.974972199966101016e-01 9.197469955779445927e-01 5.434759418232572026e-01 1.611302357927732465e-01 1.283594094195524005e-01 1.509580389611200613e-01 3.022846424317747749e-01 -2.062184987465703223e+00 4.157108577521785975e+00 8.618029007601955005e-01 4.041181852348353587e+00 1.179660832750854399e-01 4.661984242234259446e-01 3.179172300385106897e-01 1.158555724879431481e-01 1.376497668955069253e-01 9.942525366727164027e-01 1.400881360039429036e-01 -2.438439007018281757e+00 5.648785724269732356e+00 2.107259118498719719e+00 4.484864034135394917e+00 1.650305672749878827e-01 1.607729557619353156e-01 6.752399226876512062e-01 2.355506427079101517e-01 1.290950091083422624e-01 6.137735432712414507e-01 2.640151040698909268e-01 -2.950614839699555958e+00 3.664885108476783504e+00 4.322237239324378422e+00 4.136317606465853558e+00 1.383848352848250640e-01 2.683176079745824838e-01 7.784481826850913055e-01 1.026590782725671641e-01 1.013814923759417258e-01 5.003623411937864196e-01 3.603678904837275265e-01 -2.852030733237782556e+00 3.854082634875773294e+00 4.034978491085282393e+00 3.874796665496700321e+00 1.084667741835826649e-01 4.715121194447543518e-01 2.788842536034275010e-01 2.935429130517333007e-01 1.368229785715653346e-01 2.950952423691971527e-01 1.300835837883063673e-01 -2.406100974019361960e+00 4.749573280170182876e+00 3.263107177061625563e+00 4.169996588981393693e+00 1.894588677337998850e-01 3.933900033897990145e-01 4.528642373984492764e-01 2.840554699193270638e-01 1.138199683114543559e-01 8.957559638271389568e-01 2.320237025819817944e-01 -1.323444656793700158e+00 3.726423746475185261e+00 1.093630720825176095e+00 3.940529406960960213e+00 1.904172957835117974e-01 9.546276431058793310e-01 8.412424499424354662e-01 1.606491293295275180e-01 1.298014585394256515e-01 8.630643200064854748e-01 3.465142028908695937e-01 -1.996161764577859987e+00 5.355805125998257310e+00 2.626828437276183870e+00 3.673966706124830228e+00 1.921744500981584780e-01 6.668775429169478963e-01 5.507076802740032972e-01 1.282173287157236941e-01 1.101331249687223235e-01 9.846193042816998586e-01 2.389669488222083416e-01 -1.819516136028435982e+00 3.530576842962663608e+00 4.222524358128870503e+00 4.319121347985077186e+00 1.117794250038929155e-01 7.017396759797756012e-01 5.648071964530724243e-01 1.349524216681580457e-01 1.145811351804340433e-01 8.243275632051395574e-01 3.220138235694972595e-01 -2.313587823187737591e+00 4.485171065714625982e+00 4.874992687523103996e+00 3.651819925052582683e+00 1.159903586946896270e-01 5.425353460037357634e-01 3.187872019961964787e-01 1.064958631017665774e-01 1.406056168240882309e-01 3.846031543759862448e-01 2.667395203416080829e-01 -2.565143203053366072e+00 4.278162717757178157e+00 4.015489405518562371e+00 4.195750718127492007e+00 1.252485713277325108e-01 2.528278750508430317e-01 2.671819943363197281e-01 2.778016549934361201e-01 1.287495360183806836e-01 4.040525467546886018e-01 1.813339390101956217e-01 -3.007821135573532700e+00 5.378245104747502836e+00 3.030329105032866899e+00 3.723731012654174055e+00 1.520984561494471698e-01 7.147714851976800787e-01 6.628251698216867105e-01 2.289467667398205619e-01 1.495405513430982936e-01 4.589322835887467145e-01 2.633008897260232795e-01 -2.322989003092319038e+00 4.552497508671667248e+00 5.146485898131270886e+00 4.135568807027722116e+00 1.108228554014788758e-01 6.372914474317193934e-01 4.540011802394994245e-01 1.544741307345461889e-01 1.069897035920440720e-01 4.172734025669422309e-01 1.441147464623437346e-01 -2.333673751891361725e+00 5.855105076323720681e+00 5.341489267160880239e+00 4.267397131674546706e+00 1.521625123887953568e-01 5.963833199263453011e-01 9.669163239829468015e-01 1.491223427837415350e-01 1.186347274632036375e-01 8.578866795097533915e-01 2.115543662388980894e-01 -1.279494698183027079e+00 5.357626903627735970e+00 3.621345069969013508e+00 4.302392189534777422e+00 1.214869186077519314e-01 7.644188156860322048e-01 2.409974664193533511e-01 2.995407539809937236e-01 1.362708578530147652e-01 2.661017683222607899e-01 1.447039316488837879e-01 -1.181109851083216533e+00 5.661107316087900188e+00 3.827322831687556715e+00 4.221854188154082088e+00 1.609855266596512680e-01 3.873622745146614310e-01 6.931144212299552576e-01 2.348782466128806756e-01 1.149967175607881642e-01 3.220613674743180166e-01 2.325314615661932538e-01 -1.437732856510820056e+00 5.062378186492704657e+00 1.835821540043836908e+00 3.897509938300685928e+00 1.440949211932700535e-01 5.166224018344364177e-01 3.999002231920809614e-01 1.516435698412260114e-01 1.491233812372006196e-01 7.457227845844015546e-01 2.784811769182199415e-01 -1.130068249129360103e+00 5.029963684093450738e+00 1.429705849891250269e+00 4.194275244623143273e+00 1.587085047898406376e-01 7.566726350565594617e-01 8.584557858780416106e-01 2.492749953146958242e-01 1.144999529467515126e-01 6.012155567152905888e-01 1.735884636672596903e-01 -2.532680144322425164e+00 4.293663864435211863e+00 3.368064911521029714e+00 3.955244131646046046e+00 1.716599011765410077e-01 9.566809395825884854e-01 1.292399554144713636e-01 1.176888551822002638e-01 1.234089031281170590e-01 9.155402681104073404e-01 2.120234709776213644e-01 -1.631339840019601750e+00 5.343979328710600996e+00 2.373800432685824191e+00 4.499762489037617108e+00 1.216456022182888785e-01 6.049386067865192285e-01 9.383990365958695401e-01 2.908740057329073370e-01 1.467466341629409809e-01 7.142693262475328098e-01 1.393450027624879850e-01 -1.288116686331985949e+00 5.617995643696651165e+00 4.198284730334659542e+00 3.728674532292509003e+00 1.715665651248046708e-01 5.298872204305441480e-01 1.904732860358214763e-01 2.629241011738393530e-01 1.262629381366927872e-01 6.400192030805709198e-01 2.195714974170228651e-01 -1.203747084588553395e+00 5.300621605073811970e+00 3.599286439359357104e+00 3.732894750425574060e+00 1.842158424317551502e-01 8.268610352509850880e-01 6.260897007037566908e-01 1.416731782252205751e-01 1.063252178145858706e-01 9.962709572264101254e-01 2.641454111022971674e-01 -1.858431409013254099e+00 5.002281403806856375e+00 3.052421706338347640e+00 3.574216663465934474e+00 1.377867539641050854e-01 5.263753649405427115e-01 2.548615794774842791e-01 2.254614593232238118e-01 1.024526151304943483e-01 5.984838065285051911e-01 1.527868684709499381e-01 -2.994078582957482304e+00 4.577001707309480416e+00 5.014764592578371705e+00 3.924815075299071587e+00 1.153163715274816009e-01 2.201912337660900665e-01 4.206202730106980425e-01 1.233683375914039759e-01 1.148292188138428510e-01 3.957067066597601546e-01 3.180725715459855607e-01 -8.252750267999410250e-01 4.640306262618403288e+00 3.727670300681953819e+00 4.444504751734199566e+00 1.389266830805037101e-01 2.729122382994071949e-01 6.236598720035103627e-01 2.824992408952476941e-01 1.380623836054716280e-01 4.396023265969992710e-01 1.288514822229692436e-01 -2.684063177911820475e+00 5.204834268382735551e+00 3.344822100954300659e+00 4.465735374701679028e+00 1.926505159415360380e-01 7.389645165979901176e-01 2.057246280835143548e-01 1.973611914990495708e-01 1.465441886519819326e-01 4.094986932872261010e-01 1.011197345063069852e-01 -9.161855910596558017e-01 4.835072011650209056e+00 5.447889696346503108e+00 3.984704939517436095e+00 1.148839830254251154e-01 1.214601538508023326e-01 8.554604476084236575e-01 2.813066544296342064e-01 1.117671197726285287e-01 4.977753087216933991e-01 1.373783715335324118e-01 -1.135679840099831139e+00 4.481681228381487081e+00 5.354449471317117570e+00 4.068313786322989678e+00 1.043376715874191063e-01 7.197195660595550049e-01 3.175572056480580607e-01 1.503029720964943194e-01 1.037154538787460889e-01 5.769270143768731041e-01 3.600425281109432829e-01 -2.068349590331346910e+00 5.090660542991938264e+00 1.434621604433749198e+00 4.053702509522381092e+00 1.975552973983918936e-01 6.781002792113480782e-01 3.362937721737354058e-01 2.699988427087686715e-01 1.440913970404277267e-01 7.229436050102163724e-01 1.798716547178934033e-01 -1.797606814270320541e+00 5.371127928226123061e+00 4.475857711400167638e+00 4.084839831915445529e+00 1.386690456453386344e-01 3.342229217388386076e-01 9.211319850172218215e-01 1.615513536824705887e-01 1.142031074786857281e-01 1.839241111516693450e-01 1.094515986670033941e-01 -1.426520705844159354e+00 3.549649222169443785e+00 1.206565079192425616e+00 3.912108197339511761e+00 1.033664841170639226e-01 2.277206495661535657e-01 3.860574121009288096e-01 1.617466417484101360e-01 1.457703739005516974e-01 1.126366437614216148e-01 3.756682373928713625e-01 -1.390449024654611954e+00 3.625459782768498229e+00 2.951054995391636737e+00 3.821119898631686773e+00 1.970122790252563094e-01 3.695917772481756014e-01 4.892416856952003235e-01 2.328699135762841155e-01 1.055538313682464202e-01 1.200533120497957462e-01 2.020993055835925145e-01 -3.038496479462619249e+00 4.242505644248530494e+00 1.337924808754878514e+00 3.644566434429956203e+00 1.965501150253849416e-01 3.952490835884650000e-01 5.739102027650285764e-01 1.334757266161792910e-01 1.432379983703814530e-01 7.348829177655940015e-01 2.716518890864091929e-01 -2.080501731987884462e+00 3.798792435308959714e+00 8.817336790812331238e-01 3.960939486550884681e+00 1.990732710296039820e-01 2.417240748638220527e-01 9.763001441379355327e-01 1.763925996986117906e-01 1.337466446870997638e-01 2.291708500095372136e-01 3.233515534023896354e-01 -2.829108783252971548e+00 3.590721691264768367e+00 4.828947001046277165e+00 4.266177988829728207e+00 1.481019289615003731e-01 6.917192035847266052e-01 9.477313683501025210e-01 2.928501297107613532e-01 1.244576209240988718e-01 6.382072919295814772e-01 2.794492030426328766e-01 -1.513987879836117934e+00 4.817187947343963828e+00 1.876133729957819130e+00 3.916419007400163022e+00 1.042805074548979472e-01 8.902422692582662167e-01 6.096415709941549466e-01 2.249848159770067857e-01 1.357573530034621445e-01 9.191637648038990527e-01 1.267146420762790548e-01 -1.402149203439964076e+00 5.969451997215242223e+00 1.297240550308690565e+00 4.190902987613016606e+00 1.182169831337721577e-01 9.821584038236034209e-01 5.267922042449197928e-01 2.167202178005919744e-01 1.315703117395703170e-01 7.148767136159117630e-01 1.742422943586808826e-01 -1.377681023879381073e+00 5.411677995492170545e+00 4.178450158974460926e+00 4.065147384310200174e+00 1.474513558086011089e-01 7.138702161827371606e-01 3.514203438015069958e-01 2.025054294230289043e-01 1.217717194679941717e-01 3.570318459711757653e-01 3.201357863081993882e-01 -8.545003842345924028e-01 4.820879445692469289e+00 5.085851871971540206e+00 3.531908475671816205e+00 1.952959724644741935e-01 4.285170721296865937e-01 5.568197326473232067e-01 1.374068737666898632e-01 1.051984033043864009e-01 4.854118213669329496e-01 3.474597810078179361e-01 -2.524989650319184875e+00 3.504518652745630014e+00 5.039249417178822021e+00 3.748192887707581189e+00 1.669818429383749803e-01 9.793164736280542959e-01 3.223928771145498917e-01 2.514517289066589001e-01 1.220261697992336969e-01 6.213670894498534159e-01 2.110865021595872970e-01 -2.179321629955421891e+00 3.556632263746593026e+00 3.459248748576403187e+00 3.776505058108762469e+00 1.910126453838131844e-01 5.646128903882179362e-01 1.065099806740540112e-01 2.556927196409746750e-01 1.446492193133847026e-01 5.891451872550607094e-01 1.215110650106637907e-01 -1.053355400464522251e+00 5.481721762445996404e+00 8.467037237429436702e-01 3.875599838292599131e+00 1.507592946607370088e-01 3.701481371749272276e-01 2.701336055933764024e-01 1.306350121303304079e-01 1.374510176066193190e-01 3.422829367123517708e-01 3.267409964204732731e-01 -1.020087976834153309e+00 5.086494295258873422e+00 4.093467441228393788e+00 3.527809342135342252e+00 1.889255262090530074e-01 3.712766161393983300e-01 8.136304643728518027e-01 2.234795563436224874e-01 1.147945707807687399e-01 3.837206229627634357e-01 3.827963516192767202e-01 -2.146112852108696956e+00 5.760463930726196224e+00 5.004884041141892226e+00 4.413693126453197557e+00 1.835621678578081839e-01 7.999286205832325525e-01 4.563504085754487294e-01 1.646926566415362336e-01 1.157031959769452556e-01 5.275264255767933008e-01 1.900770779298967261e-01 -9.434146858877504593e-01 3.705338596673233287e+00 3.871947036933083730e+00 3.804701115366862396e+00 1.525846599423060501e-01 8.560053890970890089e-01 3.627539169144377018e-01 1.053246442125248539e-01 1.427345117421478793e-01 4.681015098522598450e-01 1.933890306208853604e-01 -2.137349237247215150e+00 4.682556150102043624e+00 4.753807356040884002e+00 3.707814017695680864e+00 1.321504626774541169e-01 5.134718175735218937e-01 1.403655135333393145e-01 2.449016397344334350e-01 1.410959174590707133e-01 6.233738619421229643e-01 3.546389390021318366e-01 -2.268649378355998891e+00 3.559859009037430688e+00 2.376437982345520616e+00 3.902226586490276539e+00 1.540195034260859741e-01 6.118639161954295691e-01 1.054516958093714291e-01 1.842410079110467502e-01 1.268061683992347533e-01 8.545185438435903835e-01 1.186936506429602523e-01 -3.014864836024505834e+00 4.682171956722118722e+00 1.153203434162002550e+00 3.693633989521640792e+00 1.963089448280850025e-01 5.428263936293452607e-01 2.469928160657769156e-01 1.045131190016956590e-01 1.081589838085976474e-01 4.780675351042785737e-01 3.642944327656013614e-01 -3.028412399204922778e+00 5.987416809417034358e+00 1.410373715600677258e+00 3.909629647687129506e+00 1.002030565895805775e-01 3.592093206621952417e-01 2.807664779167948765e-01 2.488678765016292538e-01 1.119385095375779460e-01 2.732184881569114099e-01 3.423508339845656723e-01 -2.593853448734496858e+00 3.757303826239024147e+00 2.978363195725302504e+00 4.074292993614773373e+00 1.124336156196800024e-01 3.571579020935669035e-01 7.130066888091662891e-01 1.317330707614768337e-01 1.422843412763755144e-01 9.859105258300805419e-01 3.241473550468886300e-01 -1.723249823974750683e+00 3.701723472906274459e+00 5.287182033372546108e+00 3.988181794147577452e+00 1.102312656817431846e-01 2.457551130061177702e-01 1.838338858871143011e-01 2.947548439754538174e-01 1.255819140209974427e-01 4.773981720499628212e-01 3.206457701644783720e-01 -2.544669598135781641e+00 4.636464014937222267e+00 2.180214258671127503e+00 4.092121892645907089e+00 1.281527921140123427e-01 4.157374575630718994e-01 2.881553098812711378e-01 2.745999181296659986e-01 1.004161714200637739e-01 4.875422221083455243e-01 1.064834373278826657e-01 -3.096403564329530234e+00 4.313781282464023370e+00 3.541834927321679594e+00 3.775842363290679682e+00 1.729565684321472674e-01 5.451887552891708788e-01 9.768574648084948908e-01 2.133242529424740908e-01 1.114883858364897340e-01 8.004299587825934870e-01 3.778730444910798347e-01 -9.388193106507549679e-01 3.902201498077924935e+00 4.283010057779748081e+00 3.572380973331945597e+00 1.727033363637703323e-01 1.001292354832456488e-01 7.912235224189559935e-01 1.518055408231661352e-01 1.239063127124861996e-01 2.649940931475790462e-01 3.139053378460217592e-01 -1.285185256141756271e+00 4.565723151175495431e+00 3.210845055494988998e+00 3.635436180357059843e+00 1.461463360986312021e-01 7.391550795396651941e-01 8.819979571344858105e-01 1.042566157697090989e-01 1.383273863269211812e-01 8.951905149665086991e-01 3.382908839697591485e-01 -8.026295785217388845e-01 4.624038859307741056e+00 8.192054058729000277e-01 4.157619173209066155e+00 1.518941091194432602e-01 9.330203820174836071e-01 8.400590586276176497e-01 2.081243787555091262e-01 1.180494458625236109e-01 3.036817717487553248e-01 3.967294422007456856e-01 -3.153386087411475636e+00 4.174018986409161691e+00 1.250183583046189595e+00 3.752207317085421323e+00 1.577821496899702580e-01 6.713608911220847464e-01 9.711638434700197164e-01 2.419243151423461080e-01 1.060243460382728486e-01 6.900568428189385317e-01 3.249143560324491142e-01 -2.778540234944441689e+00 5.767267563623011739e+00 2.003439295111779650e+00 3.920109006643402338e+00 1.306681361278574927e-01 9.182293773662653091e-01 3.237852590381781193e-01 2.004970430987150776e-01 1.284715688149382085e-01 3.676635044040174050e-01 2.222033511098800984e-01 -1.892603513617793665e+00 4.361236206899320678e+00 2.918644727351540347e+00 3.646610725733741454e+00 1.154329580603714323e-01 8.192569518955012953e-01 3.112147059965630902e-01 2.547888006765766100e-01 1.460997265273164536e-01 3.003201242384774261e-01 1.364231176435470316e-01 -2.102590403373636896e+00 5.812495358309915261e+00 2.384533687295585125e+00 4.481028003210030697e+00 1.314497377398422540e-01 5.176753943068544972e-01 8.781768966621947836e-01 2.597485493374991905e-01 1.476846330999597168e-01 1.095417178664824520e-01 1.760664961184361110e-01 -2.798531643696067661e+00 5.783703096713111336e+00 2.237503419747071565e+00 4.021709898942464889e+00 1.632734187663699155e-01 9.615071217639703516e-01 2.450475837049576611e-01 2.508830268288043674e-01 1.475021487540221776e-01 3.023458524538528147e-01 3.204003487044790321e-01 -1.233981125558261116e+00 5.562166198846474785e+00 5.197840976475545105e+00 3.966432876224317283e+00 1.762843191787220043e-01 7.722818026935047708e-01 2.200452394514310905e-01 1.087238482802891787e-01 1.144089498243237996e-01 1.376580521150300718e-01 2.547285041572530107e-01 -2.131775719651343159e+00 5.417619866647640947e+00 4.070713615039644573e+00 3.777750592653015271e+00 1.943699753396114505e-01 7.932783542316296232e-01 4.801050157679832564e-01 1.114790777789870374e-01 1.156960422393822074e-01 3.777185607255453270e-01 3.949377850398031464e-01 -1.756109688756340548e+00 4.199757979346929737e+00 3.715072261017192012e+00 4.260852341665154697e+00 1.745581642463470140e-01 9.869503254755853661e-01 2.156472133766185184e-01 2.706526187443685227e-01 1.297519706657856431e-01 2.775283309169124246e-01 3.848241209414282604e-01 -2.612872545499210553e+00 3.630419829570383339e+00 1.457170563625893811e+00 4.083926805287226180e+00 1.413075828846888093e-01 1.499177428945718815e-01 4.192833875296030355e-01 2.873976467471517360e-01 1.005101892527637403e-01 5.215375159600338373e-01 2.992052696472851103e-01 -2.357500748376901711e+00 5.975312053392439537e+00 3.283837989796135837e+00 4.478785696443468467e+00 1.516531535089710447e-01 6.161673982208265565e-01 8.278183988148669625e-01 1.422320180616721275e-01 1.194300457282633371e-01 3.529002714824471809e-01 3.080058993828606040e-01 -2.692817358039548026e+00 4.602979968443544401e+00 3.814302041772236862e+00 3.799441778884834697e+00 1.288855704460836749e-01 4.112094246000349562e-01 9.862251592945667777e-01 1.119183859429122851e-01 1.272485528053088899e-01 9.980271725517061432e-01 2.598560965240567233e-01 -2.562909156101775388e+00 5.876487625994311514e+00 1.957813557031525820e+00 3.528153738282202578e+00 1.311613382282955098e-01 9.677374793100516071e-01 4.202272201338883573e-01 1.998576294394489861e-01 1.266293451590623231e-01 8.535055151655720485e-01 3.712400636217613181e-01 -1.196377013173923309e+00 4.589498009966688663e+00 3.233121693347827730e+00 4.392656998142186353e+00 1.532561015883551203e-01 8.701750587412391269e-01 4.291075175197347491e-01 1.459828460208382195e-01 1.468661896103188313e-01 7.968719584915902043e-01 1.552107517267700132e-01 -2.041323944553171899e+00 4.639279401491856802e+00 4.930643207362656710e+00 3.891366822778681733e+00 1.790311717489561638e-01 4.257915139978684094e-01 2.392500316029974872e-01 1.452169782859951408e-01 1.347765059234956597e-01 4.392918375067842440e-01 3.291608975971500595e-01 -1.719247819454595927e+00 5.885977358575708251e+00 2.117482089913830912e+00 4.430573964392958253e+00 1.822155196247683129e-01 1.461903717271215708e-01 2.532998350091485440e-01 2.920305024719431763e-01 1.482215764773478217e-01 7.718794129464877640e-01 3.091768274220136337e-01 -1.725160584594909619e+00 4.703062169644812052e+00 3.503452485961406460e+00 4.175134905785917283e+00 1.175643089332678165e-01 1.667348081745512189e-01 7.524582399147249356e-01 1.367394114131928462e-01 1.088213970795847280e-01 6.298821285049576169e-01 3.044443589775684966e-01 -2.305143256361304793e+00 3.785247223795125127e+00 3.215947181436889402e+00 3.726497043653965058e+00 1.957505433950648688e-01 1.556205544111419203e-01 2.345324019600725507e-01 2.063487702590648953e-01 1.132604619453130151e-01 1.745945154231815510e-01 1.486364430291330918e-01 -1.566947557655502088e+00 5.949803363023498548e+00 1.791151051340018840e+00 3.882575461204286427e+00 1.995378879446484122e-01 5.210821261405422788e-01 3.492288209359984963e-01 2.903097063883903761e-01 1.242556117493227585e-01 8.345660981543268075e-01 1.795357977734948762e-01 -2.757869311513879484e+00 4.227704880293483569e+00 2.919994619242316958e+00 4.347229937368358499e+00 1.290934738156437611e-01 6.384726398950609783e-01 5.931569313620110862e-01 2.256967889035224051e-01 1.046512629585738263e-01 9.993789369500615249e-01 1.351512055682251301e-01 -2.574684175103432615e+00 5.266649782551700909e+00 3.960312491773779975e+00 3.983565447460394537e+00 1.865915737131962904e-01 6.329899375718798238e-01 8.259854285307358657e-01 1.429538514994225795e-01 1.047605168825016808e-01 1.996117408900185963e-01 2.531606005565795181e-01 -2.551964280771128468e+00 5.412945701882799554e+00 3.951670035300842265e+00 4.320697088192983593e+00 1.053031371870551125e-01 7.030993127636461226e-01 5.689210746902766402e-01 2.789008463579323305e-01 1.353179748519293957e-01 6.523646731998774539e-01 1.071252502278437074e-01 -1.648650525340721540e+00 3.603507017652261446e+00 3.480237559745820164e+00 3.826635387392937737e+00 1.964842003091976097e-01 4.025921283725563127e-01 7.817720739792294316e-01 1.442839797128073753e-01 1.249063308823343682e-01 8.840903154676045261e-01 3.533156567015051097e-01 -1.380592795484502311e+00 5.088351761535919948e+00 5.304694987410969453e+00 4.400819691873521400e+00 1.018546488862657751e-01 5.538285803673026475e-01 6.390355251482333632e-01 2.606210030181059789e-01 1.239824035653238621e-01 6.431926318090268602e-01 3.360007572855544522e-01 -1.228127211635550387e+00 5.220648140315146790e+00 4.636021951837128618e+00 3.702706635189528583e+00 1.046301736761986179e-01 4.900455979848662436e-01 3.670262268246421433e-01 1.768322517244519665e-01 1.448488515035063207e-01 2.139272050175854978e-01 1.107441363599024897e-01 -1.657441401117373925e+00 3.873665856571602895e+00 1.802961862643730706e+00 4.470604278236301354e+00 1.642786981373279276e-01 5.187883914283382136e-01 2.959735868001152070e-01 1.229483644561874395e-01 1.182338845015892259e-01 6.026039655756831870e-01 2.682778055651713345e-01 -1.685019560007300798e+00 4.363895541275649492e+00 1.833881062916550286e+00 3.587009887733079605e+00 1.993928351819352907e-01 4.054654916365082462e-01 4.734911976146152224e-01 1.378144511102958603e-01 1.080518254881076001e-01 6.775684300573323604e-01 1.866449332576066156e-01 -1.009504332596617759e+00 3.703626299237792630e+00 5.021386232727129695e+00 4.154075600209129249e+00 1.167807325061384904e-01 7.691631745643333629e-01 6.832433014365957291e-01 2.150139809995535445e-01 1.089335347374019852e-01 9.876328098493074581e-01 2.983461012745267094e-01 -2.618824948718746271e+00 5.435897331970531710e+00 1.794850427406537330e+00 4.155029486965736929e+00 1.402841297655417763e-01 5.379733448267194351e-01 9.303019516382664555e-01 2.742056185119440270e-01 1.115200476507489796e-01 2.248900123932183193e-01 3.396696669734007301e-01 -1.090196543732475432e+00 3.607113749431277938e+00 4.183999327447733840e+00 4.067909219360124951e+00 1.090048036486217509e-01 4.240535100532991652e-01 8.059401529978368339e-01 1.903184037925963468e-01 1.136707352304659885e-01 8.189469347623986595e-01 3.790782683276785470e-01 -3.144803607053844985e+00 5.455277230608158057e+00 3.691259710346495027e+00 4.117934788518402556e+00 1.578976679316189402e-01 4.295452444188608832e-01 2.770590437111724591e-01 2.677282259794493413e-01 1.484766688338903240e-01 7.318463294892801896e-01 1.039142178249015669e-01 -2.272109755857331326e+00 3.795961929836452420e+00 1.878936577243468520e+00 3.847850233861573876e+00 1.988829024213565611e-01 7.969964620819620649e-01 9.448115707422368725e-01 2.438362983090564817e-01 1.066742251532410840e-01 9.034653729403063771e-01 2.706936445839939198e-01 -2.525725914240618764e+00 4.126035647647370297e+00 3.821893731797625371e+00 3.837889398947453401e+00 1.322127942247030841e-01 2.048211686537365628e-01 5.369971001877631434e-01 1.883413079335954365e-01 1.166661110409806384e-01 8.926410300401103060e-01 2.239654287980443192e-01 -2.811387893368499036e+00 4.965504194793243897e+00 4.101424846436251492e+00 3.788654123426015818e+00 1.307195570700814824e-01 8.104497507357677488e-01 4.023598866421487230e-01 2.709082070559067912e-01 1.231066863318595883e-01 7.993165647305793264e-01 3.399464866592015744e-01 -1.048859032936133584e+00 5.233706882280811712e+00 4.906435940596746370e+00 4.241325747539670843e+00 1.741107439159856329e-01 9.097686308439608682e-01 3.680522449574279431e-01 1.483490014836233717e-01 1.355908369994080487e-01 8.970894827366771018e-01 2.175189003053647763e-01 -1.155618244404333250e+00 5.400015144083837981e+00 4.087749007034965132e+00 4.179849144332941080e+00 1.194304821920511711e-01 1.526064348755655775e-01 5.972841925836662735e-01 2.545966623660274042e-01 1.072476406654801762e-01 6.504326482895265160e-01 1.590659976740035619e-01 -1.046916304578211498e+00 3.944814426120383466e+00 3.866592198856815266e+00 4.485807422584952242e+00 1.734610189737851305e-01 9.979192535346733672e-01 8.872013734145850483e-01 1.677928447314588067e-01 1.459385529501535383e-01 5.604765857762729064e-01 3.483998747267733620e-01 -2.815052051747016115e+00 4.968078808651183564e+00 4.825252965147329043e+00 3.543183097485464117e+00 1.083772173022625601e-01 6.899551530962902968e-01 1.393272285805003396e-01 1.946829259512854460e-01 1.008545911063072065e-01 7.927425922666628821e-01 2.084166970983202805e-01 -2.713934608438036022e+00 5.469489041195612522e+00 3.709063393068755765e+00 4.272910980109618784e+00 1.786654824056728985e-01 6.863152150444246091e-01 1.802827825926996419e-01 1.251943821513174238e-01 1.332298183775439959e-01 6.357899145363440363e-01 2.965834124372696556e-01 -1.106480316016058119e+00 3.534240818014465102e+00 5.106844147778161869e+00 4.390289717516040469e+00 1.558825312206755798e-01 5.875475424764757815e-01 9.518942079243667420e-01 2.066788581557549020e-01 1.159962599061752503e-01 9.454800548833927065e-01 1.126174033077642217e-01 -2.432693771280656669e+00 5.890170556760394582e+00 1.688637085864318932e+00 4.461209694642434442e+00 1.381016066597582637e-01 2.336773365573497352e-01 7.776243342458980523e-01 1.750426209321812587e-01 1.040192913337088659e-01 3.166053856907685704e-01 3.085382335049076108e-01 -2.687220898968354810e+00 3.856201583730590521e+00 2.802070397420655112e+00 4.369724465017565507e+00 1.205834820175493982e-01 2.616897997794262465e-01 1.579537764469159389e-01 2.294960868198285264e-01 1.456949679854930568e-01 9.412185928049080497e-01 3.720805201224086645e-01 -1.038162517185565292e+00 4.144610319793902597e+00 5.318882849819774883e+00 3.928235206530021895e+00 1.003698331563952079e-01 2.978331475237354642e-01 1.459754118147653379e-01 2.045907483714948794e-01 1.260431463916863726e-01 8.036421715597761306e-01 3.158074112012001500e-01 -8.336152333104553946e-01 5.244750471526759661e+00 5.092735211266343320e+00 4.344484428926091546e+00 1.185863971322580895e-01 4.856602429845563451e-01 9.232768384107608028e-01 2.260726996511806530e-01 1.303658170541067141e-01 7.874446875156012604e-01 3.553241845849538505e-01 -1.273612376934519563e+00 4.670042880344035474e+00 3.971489493823342265e+00 3.597604217731273035e+00 1.333832374401166809e-01 4.780178182881682503e-01 5.687094026616347220e-01 2.018788005049307888e-01 1.318907859173928387e-01 9.984017410953832661e-01 1.313139664515753646e-01 -1.803353328822578483e+00 4.666376251565824695e+00 5.379456847549658249e+00 3.526187644966225498e+00 1.677870562673909327e-01 7.477235820037970715e-01 8.054677858096945808e-01 2.117804806657540007e-01 1.329376392702617538e-01 2.397959070931690306e-01 3.530282266586717288e-01 -1.029010823142127329e+00 3.554752444423487923e+00 4.686879473007917518e+00 4.276774699945287139e+00 1.418420251375155094e-01 2.631170496319146235e-01 6.682089216601522219e-01 1.656068207337660636e-01 1.209522086296694610e-01 7.639514604193323732e-01 2.607044653979815885e-01 -1.387930430602509979e+00 4.370736431166338143e+00 4.001888795127819698e+00 4.289698328402097971e+00 1.946581682633576615e-01 3.253833513023743906e-01 9.153259196197109926e-01 2.796031854989580179e-01 1.105793950720796032e-01 2.086350809252706107e-01 1.500266812151381246e-01 -1.207375224381401768e+00 5.303811458495136577e+00 3.937269910064014056e+00 4.077965533855225644e+00 1.112672538900282976e-01 9.148308498005411904e-01 8.744023329354857488e-01 1.066333190233658273e-01 1.329747958646182726e-01 5.992238289561946374e-01 2.423883850260918349e-01 -2.738310813931069454e+00 3.841521774163992653e+00 1.129519232711616361e+00 3.950447750605149189e+00 1.165358641676556561e-01 9.788016023753931538e-01 9.243329506997335354e-01 2.075962496538079072e-01 1.121055834061957246e-01 1.148710749230528322e-01 1.415042570909487429e-01 -1.916525356414191528e+00 4.184163454868246035e+00 2.973677048298910996e+00 4.184101135697921414e+00 1.565608152059243530e-01 7.639539655968861087e-01 6.024124757773988703e-01 2.287485133380186553e-01 1.015732236326190724e-01 3.140108846585711877e-01 1.611699177132260852e-01 -1.628894446861541834e+00 5.532804589091028014e+00 2.876196263161161504e+00 4.131146953331671590e+00 1.836052240974779814e-01 4.802556513760362078e-01 8.683563780928329479e-01 2.830010836421947285e-01 1.301572864475816771e-01 8.224679138118646815e-01 1.701883690097917290e-01 -1.070253262106553915e+00 4.651366880348748012e+00 2.190282116338357454e+00 3.936307101246687701e+00 1.212164568125230907e-01 1.925924011096017407e-01 9.589198286153046702e-01 2.819578747627445869e-01 1.121897374644477419e-01 8.525266045073275345e-01 2.835136690375570367e-01 -1.772009126089181041e+00 4.652601701914695020e+00 4.574323267476839483e+00 4.168333987380695049e+00 1.758346442600262627e-01 3.303264952058785897e-01 7.050214459508981069e-01 1.716104979172464184e-01 1.452029618554255830e-01 4.002347855321706227e-01 2.947495590289574419e-01 -9.021348852926972528e-01 5.279524412542325962e+00 2.144786599752655398e+00 4.246002165297881881e+00 1.480902757080207743e-01 4.276098863056199129e-01 1.645416896355366143e-01 2.114817596766513375e-01 1.490748584352495354e-01 4.317620704168951828e-01 3.982082053719810943e-01 -2.450597871963251073e+00 5.963514720210442377e+00 5.121787230098378885e+00 4.214857316545193910e+00 1.511690723962846039e-01 8.244860681186920726e-01 1.018998371611845033e-01 1.848477260131901612e-01 1.012017570482763307e-01 2.368726843364089563e-01 1.054059355828437239e-01 -9.077076931662995118e-01 4.123768988077001652e+00 1.634584683366976154e+00 3.815971611454241241e+00 1.733519094584655695e-01 2.742523171335378707e-01 5.747357660328458184e-01 2.397452435217776456e-01 1.363941181766626654e-01 4.550061086395793541e-01 1.279337739040949384e-01 -2.002278418872676546e+00 4.011454008171520869e+00 1.577379026991373001e+00 3.972963256342746163e+00 1.262005521622939497e-01 6.425119773015998126e-01 3.817919978457881003e-01 2.820587617572386518e-01 1.299800199382913357e-01 7.091024768174246651e-01 2.493334774684802524e-01 -2.224814120681568141e+00 4.468273788070662889e+00 3.255186563374996567e+00 3.839697575818612929e+00 1.045230134649414583e-01 5.682439726931307611e-01 6.999387409207404875e-01 1.581392052376645596e-01 1.057502094734536352e-01 1.345320321352327098e-01 1.772001123677660883e-01 -1.503259954574658774e+00 5.018415559065529052e+00 2.856620311255228195e+00 4.028472445850339589e+00 1.057306251706237599e-01 1.186477340618850573e-01 8.802728013676421881e-01 1.645194537180797723e-01 1.295921614659427679e-01 8.820596030556032696e-01 3.747531615470940380e-01 -1.779525610939062474e+00 5.056687274151364875e+00 4.770430101978383242e+00 3.530846659042215396e+00 1.937320551920206080e-01 4.457195721272595446e-01 8.895595106740741276e-01 1.460535483002466106e-01 1.055179255924082599e-01 7.982653163134607599e-01 1.286331299905920933e-01 -2.860332609344552246e+00 3.580681302539661104e+00 3.059390957633050689e+00 4.425958320111305966e+00 1.434586346067166507e-01 7.750352481798086224e-01 5.837509569167861345e-01 2.380117714683120111e-01 1.179986385728149650e-01 3.725723528429981668e-01 2.126580364551345914e-01 -1.190695908193359465e+00 4.167708241116333312e+00 1.199595636026024259e+00 4.120146883138136928e+00 1.032471507382398124e-01 3.416092050557503201e-01 6.577133652472808567e-01 1.253283329735464524e-01 1.315098956017707876e-01 4.345570937190053051e-01 3.352052979116574294e-01 -3.091778433062600584e+00 4.501968614777938527e+00 3.088556216254200848e+00 4.471811837075017060e+00 1.613280843407007559e-01 8.417430957327091123e-01 8.878269875078571571e-01 1.372497473779226707e-01 1.017400260190017003e-01 8.692742789136953530e-01 2.649707160424078500e-01 -1.470041426552769259e+00 5.296739386450800779e+00 3.792216112669559713e+00 4.180551204473343496e+00 1.803347293098327975e-01 1.406770850519200866e-01 3.916664822670410384e-01 2.668598818999169953e-01 1.335014403422987717e-01 6.104928448426381049e-01 3.089869182051535601e-01 -2.877091399429894558e+00 4.317887854040076689e+00 2.008445044580507322e+00 3.849792595946598617e+00 1.675195918135127249e-01 5.754546389001621298e-01 6.035075488008715405e-01 1.122850207604740441e-01 1.025055081854776007e-01 7.486847049245908270e-01 2.910770860070191479e-01 -1.887049037873024249e+00 4.077991843231734137e+00 1.316303013518358211e+00 3.868479650526818414e+00 1.918280562247251797e-01 4.165424061743171480e-01 8.675823537292741694e-01 2.762467682457171447e-01 1.322368992332963733e-01 1.192285442688020836e-01 1.905476092378262931e-01 -1.109449067939347167e+00 3.640159320074739746e+00 2.289356482248962266e+00 3.649288909121197300e+00 1.875296786310078900e-01 6.325034391945876244e-01 9.163175520186197520e-01 1.809227340421392660e-01 1.124007649281356103e-01 7.878152261995190475e-01 3.126614142045218703e-01 -2.766524504299740173e+00 5.109434841959572537e+00 1.706513769646773593e+00 4.252467946504298268e+00 1.510485220068763790e-01 4.021950680483383778e-01 3.877678317543881148e-01 2.694154302280316604e-01 1.160143690774969177e-01 7.605285359178155513e-01 2.447703640766595301e-01 -2.963407102440264396e+00 5.763279538244091782e+00 2.685610503196757648e+00 3.763746858919368776e+00 1.055932205792072254e-01 5.745247626872539426e-01 5.781152883304386814e-01 2.957131071974938852e-01 1.246352818355603576e-01 1.489059667142351995e-01 2.737481057364516968e-01 -1.821076448369702394e+00 3.963447221982752566e+00 4.142212474849834791e+00 4.378367049453727233e+00 1.100835001899759386e-01 6.400574991612867359e-01 6.622714386425249122e-01 2.420730749960816330e-01 1.101812923708430092e-01 8.992328496953888584e-01 1.577410803074890122e-01 -1.179152301672910852e+00 4.925707968838205275e+00 5.243484848058359127e+00 4.192021517615714288e+00 1.350939402746551277e-01 5.013485853755291766e-01 4.705035675091487901e-01 1.689771871748840804e-01 1.133648531581984975e-01 4.481438811574258718e-01 2.249216404296625060e-01 -2.300343298500061362e+00 3.519184112347071736e+00 2.165917354735926281e+00 3.712977076643177998e+00 1.279864003240911430e-01 3.757682967944517838e-01 1.570338602314282905e-01 1.847234039430399322e-01 1.398846177084832054e-01 7.542632368072014204e-01 1.620912341164461590e-01 -1.404656733380801548e+00 5.882809647387350793e+00 4.712186074124285362e+00 4.407922301057555003e+00 1.258844938415462911e-01 5.863144256469615678e-01 6.930808247173462222e-01 1.970925361068663895e-01 1.281500069835135314e-01 1.319232175384170702e-01 2.047162292859434907e-01 -1.210301485963435120e+00 5.819240423690294151e+00 4.892452602014843777e+00 4.331613587675040122e+00 1.938202259461123123e-01 8.406921484179018522e-01 8.761246035774877816e-01 2.012467476255072607e-01 1.330179254423828894e-01 8.896280295304822561e-01 1.108463391767995354e-01 -1.878209212201510825e+00 4.811487202953937725e+00 4.275322645567718460e+00 4.139614230185750365e+00 1.496669204542865339e-01 5.303340395090080372e-01 9.138020397458115340e-01 2.056405739122783571e-01 1.454969859416939126e-01 5.034893425082231921e-01 3.299015596207302559e-01 -1.749339023632419554e+00 5.959626548191429229e+00 2.257175488337864522e+00 4.496421494947155928e+00 1.335443355179820601e-01 1.865728237981292559e-01 4.668507965983414998e-01 1.558111144282764426e-01 1.380213681136336079e-01 9.394806714592408570e-01 2.228275389945281182e-01 -2.158979960659350716e+00 4.630321679590172934e+00 3.944837381459570302e+00 4.408248486682371237e+00 1.164644191179512456e-01 4.866987675108680467e-01 5.961606695145856838e-01 2.839263490867293682e-01 1.129641315437601989e-01 8.831855045326454379e-01 3.654277314551637179e-01 -1.064719007307439957e+00 3.550211489364546669e+00 1.961743563410232039e+00 4.141281273954688480e+00 1.486754767650873277e-01 4.634480573921571089e-01 5.175404048358794862e-01 1.131074684517650031e-01 1.450639234565617164e-01 3.287740839245477664e-01 1.453708025875128929e-01 -2.827239738460057161e+00 4.529992336439091716e+00 2.871160677723252341e+00 4.039256370385015060e+00 1.001594903199513470e-01 5.819526883420556018e-01 4.758723935253389437e-01 2.238406840250311558e-01 1.031703979058277987e-01 9.512961739769614233e-01 2.663642852988951648e-01 -2.043237911848217792e+00 5.015225348493805413e+00 3.673581572180776078e+00 3.569808361294009913e+00 1.031791209552002792e-01 6.455729078975098734e-01 3.932432430273939961e-01 2.701697535048194210e-01 1.206472935327359414e-01 9.890888122767940160e-01 1.073058143099404754e-01 -2.752493461181520384e+00 5.906261425015594924e+00 1.320959193176577173e+00 4.127173296430161287e+00 1.670462957181601538e-01 1.128033192906042897e-01 2.575337026057685774e-01 1.380559764347680241e-01 1.328874027502338628e-01 8.022354715484322218e-01 1.299885826144479839e-01 -1.061911287819437222e+00 5.683266200084830189e+00 1.174995091239259049e+00 4.345553753233409644e+00 1.077938701237831226e-01 9.743900368424996961e-01 3.976038510603679965e-01 2.029959765677471495e-01 1.208296026839810189e-01 1.658701024567791893e-01 3.061159219277896359e-01 -1.476575378243099035e+00 3.627948960988625515e+00 3.760210237371935271e+00 3.612065325214322886e+00 1.546397958806263462e-01 7.918905597427892129e-01 8.234468668003441794e-01 1.249455877430061534e-01 1.268677616928055307e-01 7.988843601695949648e-01 1.785338105175385826e-01 -1.055057884431675586e+00 4.406321026596673462e+00 2.533179177537169036e+00 4.279306623666671250e+00 1.612461108486668571e-01 3.247628355069507866e-01 7.638771400228754338e-01 1.812284920611606787e-01 1.095993615964729329e-01 8.792563652378351247e-01 1.763917126261305979e-01 -2.255699855499867290e+00 5.526685798632263058e+00 1.995273762582730814e+00 4.483961617217076423e+00 1.121150990364543909e-01 7.328519632700671860e-01 5.013242609799534177e-01 2.450618248829425638e-01 1.260702557572149496e-01 4.757284393265868161e-01 2.500758837466201534e-01 -1.080031914331494924e+00 3.666267671463534494e+00 2.381317710891482697e+00 4.172921437065570061e+00 1.266021699845214232e-01 6.181667293214939685e-01 9.959254552865079990e-01 1.489522062692436588e-01 1.483701420080983657e-01 5.133511664766599036e-01 1.255596513680421467e-01 -2.265690327634065415e+00 5.252377089466300220e+00 1.681777512172086819e+00 4.415571606606273569e+00 1.347438756877940846e-01 7.654274614414592337e-01 4.839992565251902690e-01 1.896801868227858401e-01 1.115645580047895380e-01 7.741050950514364315e-01 1.240364056678063265e-01 -1.173407690992583685e+00 4.508002663624381512e+00 2.461034031377913323e+00 4.300727244620738965e+00 1.372696034648869801e-01 9.829987511890813101e-01 4.510807845998769938e-01 1.874890347413000202e-01 1.311376758523551123e-01 5.713340652353307014e-01 3.549678612695272850e-01 -1.788082074432017610e+00 5.151167900556548496e+00 5.452966877971761051e+00 3.913950475158295639e+00 1.901069187980338471e-01 8.279130479990509661e-01 2.337300290845187312e-01 2.243811243696569591e-01 1.028051117617295174e-01 1.427956846801021751e-01 3.537934111600414822e-01 -1.535391437922767111e+00 4.487549917940728328e+00 5.334645362514885747e+00 4.029896641472191732e+00 1.340533140477280505e-01 7.130144549440011748e-01 4.694991107154790067e-01 2.861216427697840237e-01 1.386460202693370058e-01 6.121609474761746661e-01 1.459806756563794272e-01 -1.920429452046622743e+00 3.777251061083461092e+00 3.956665910800047925e+00 4.284055812533888563e+00 1.722044237727943516e-01 4.755729927474932062e-01 4.588447138312249374e-01 2.847382896519399242e-01 1.366131986493354100e-01 3.576441501317759730e-01 1.874223171799576926e-01 -8.684950451545865313e-01 3.632795513269445831e+00 2.712249895451517290e+00 3.850474166058337477e+00 1.508781236831783223e-01 3.502490303557151963e-01 3.611157274795672167e-01 2.703059119759556594e-01 1.381101109946162586e-01 2.496838254906897370e-01 3.403796232392764520e-01 -1.240456519840053451e+00 4.213850249130537406e+00 3.371678881390598015e+00 4.239581959994419336e+00 1.574352079192483100e-01 9.199942284809725646e-01 5.386602737533988661e-01 2.580241372244173048e-01 1.137743749856824915e-01 5.900879381834543969e-01 1.721734992879370707e-01 -8.012226328623398564e-01 4.256249018306979437e+00 1.493805967081148989e+00 3.516661425454534307e+00 1.019526660326554313e-01 6.493548574797447515e-01 5.134195295585918251e-01 1.527429457682686065e-01 1.447113393134421278e-01 1.225883542908248747e-01 1.266755616004508200e-01 -2.025969700636696125e+00 5.966325038952727589e+00 1.278718226396728497e+00 4.431299212124327092e+00 1.226385040943189925e-01 6.998453900778389691e-01 4.519982750040493213e-01 1.889843435909385194e-01 1.174173851738955499e-01 8.600220680695004338e-01 2.969786467823454790e-01 -2.929937445010794228e+00 5.013319092087831663e+00 3.554386713326609382e+00 3.947028938588520219e+00 1.431638718475202465e-01 2.021583723440291691e-01 7.480999228517420940e-01 1.594052503077369176e-01 1.111868557247714523e-01 7.157701449294713303e-01 3.168800175934569641e-01 -1.116704159444369404e+00 4.342205441728602011e+00 1.531541890045911680e+00 3.539324587749082429e+00 1.444060583024979749e-01 8.945566760072176660e-01 6.865517072999773873e-01 2.573226443268563646e-01 1.168768926654142476e-01 2.790006717850234130e-01 1.113358411683984944e-01 -1.558911812160655330e+00 4.274808370204475239e+00 3.377578533130175309e+00 3.888039885912525584e+00 1.579732122800698579e-01 9.304629393398458070e-01 1.316790898539126342e-01 2.224466723296232851e-01 1.021243883764484245e-01 3.118506120816055827e-01 2.371621744441602953e-01 -2.785448186114537705e+00 5.785387541974833958e+00 4.054437229475571058e+00 4.495210304082442931e+00 1.746281703016713815e-01 9.140796012166803042e-01 1.698929098162314799e-01 2.273495567345350798e-01 1.173568532188234981e-01 3.448071933897440822e-01 3.066410908708987471e-01 -2.615214445789544762e+00 5.916231462428296339e+00 2.409614400498039544e+00 4.033506861181981762e+00 1.344199770427621787e-01 1.933111894562622446e-01 2.006017569877034945e-01 1.075252943573975217e-01 1.113825467766028782e-01 2.593036621782962570e-01 1.177299804004354189e-01 -1.601511483484276521e+00 4.414056169955616227e+00 1.071485847039610473e+00 4.032374330338808655e+00 1.595049045368685525e-01 7.600084161777949099e-01 2.381957536014209231e-01 1.828557341380321888e-01 1.128343787119129166e-01 8.919274099456667715e-01 3.879526886485901160e-01 -3.133970430632537330e+00 4.470614882311956251e+00 3.766160519156880326e+00 4.261851138562204433e+00 1.843764081930370502e-01 5.587633136790969290e-01 7.333450275688621067e-01 1.445099087231686563e-01 1.444989974676504640e-01 9.102631748931362399e-01 3.901591636262604634e-01 -2.447592008681669817e+00 4.899211842426947072e+00 4.246761139620541137e+00 3.890303230361357834e+00 1.806472193650643931e-01 9.413209752059690238e-01 7.421319915750256291e-01 1.384331654468378692e-01 1.301414003480854120e-01 1.024581097991872913e-01 1.955489257068507847e-01 -1.341639360642671530e+00 5.421399251000599051e+00 1.190801062919463194e+00 3.895403989926016664e+00 1.373490823757345658e-01 9.587432106171430712e-01 1.486482945850328141e-01 1.336854412748727516e-01 1.435342471990244673e-01 5.117204788599921672e-01 3.832329778941209186e-01 -1.976561354287583061e+00 4.082639510707241293e+00 3.334169238301156746e+00 3.796881941492093571e+00 1.166660523856262732e-01 4.038894768012701864e-01 9.454855246590833096e-01 1.995255772740714972e-01 1.212475355820368111e-01 9.833262801137900855e-01 2.974872542638777873e-01 -2.514906841057794828e+00 5.382337991882344852e+00 2.556451022860819933e+00 4.349389968059398370e+00 1.569467477670048183e-01 5.042242284476895486e-01 5.762267127531648381e-01 1.569753384481293867e-01 1.429956320794734115e-01 9.934264102420813369e-01 1.243599643663154397e-01 -8.902176674552804148e-01 5.116006833070002813e+00 3.034247233922644504e+00 4.231613082333436360e+00 1.626823171404299107e-01 4.348415491814330291e-01 4.229254225894087948e-01 1.127114273548503187e-01 1.482791562661828766e-01 7.410284922524319473e-01 2.421891454808367539e-01 -1.840626343464441650e+00 4.735050603044316020e+00 3.612212122554599780e+00 4.011139269550214159e+00 1.871679341104752203e-01 2.319140174241414443e-01 7.681414698877340186e-01 2.106561257261403419e-01 1.011625341322221067e-01 7.472028264237767781e-01 2.441448221401886221e-01 -8.619756315449083051e-01 5.316862510741361625e+00 3.140490370622753602e+00 3.713438221164715447e+00 1.349004429025561502e-01 9.010880352080515854e-01 3.083837138666795097e-01 2.968880482805744681e-01 1.196884505041598129e-01 4.713286616860360434e-01 3.344035107613441693e-01 -1.309509830120245910e+00 4.375883009791531997e+00 4.169925144028645114e+00 3.509294196282857214e+00 1.256517930730177701e-01 3.164891581521621644e-01 9.269118720070878004e-01 2.506514994546390485e-01 1.442546802981694576e-01 4.599871753140151176e-01 2.889556370974414312e-01 -1.231793257463971614e+00 4.284308920340560434e+00 3.619156826952951711e+00 4.427501581435433486e+00 1.796140072312856772e-01 1.231928863077121072e-01 2.132285825210438190e-01 1.965910892774603569e-01 1.493176666342269920e-01 3.979251089011947018e-01 1.522703925824789306e-01 -3.130029464986946230e+00 3.689478922341499878e+00 5.027635266402951331e+00 4.434636274628156016e+00 1.093660973763580790e-01 2.922143257034235386e-01 7.547615772424786096e-01 1.642795910188818431e-01 1.432711546360482813e-01 2.488210002205827609e-01 2.700792510652220701e-01 -2.931964320295931792e+00 4.223457276102371871e+00 3.229289144199083417e+00 3.730769118405628859e+00 1.330145771097866192e-01 4.477715206610739518e-01 6.711404945664647403e-01 2.467040033439795443e-01 1.267752653822330211e-01 3.505881568193477404e-01 2.707351428630332957e-01 -1.479592689106696612e+00 4.610056975151641367e+00 2.406702392259215895e+00 3.519355821722934596e+00 1.584396707096863144e-01 6.279113448150136501e-01 5.051793210036532589e-01 2.732132098244280938e-01 1.256998690903249616e-01 6.669469114641629615e-01 3.192259424608463458e-01 -2.401070793523996993e+00 5.815486310361121625e+00 4.483474491058300870e+00 3.998237409973897538e+00 1.582937494457846983e-01 2.778820269357689110e-01 8.042975339767115539e-01 2.276000784504894348e-01 1.431406034817002126e-01 1.467209028135203208e-01 3.490198925709387390e-01 -2.337893497748757099e+00 4.208448202046050746e+00 4.800973371440039550e+00 3.959249448623927137e+00 1.841479450072359414e-01 2.251741235320107171e-01 7.540008119564591826e-01 1.667123706767895952e-01 1.264965331279151173e-01 7.737726249387769650e-01 3.688153798226854185e-01 -1.590142725649712929e+00 4.105619280498675749e+00 8.150248580065005966e-01 3.655088094556922851e+00 1.764914600562632607e-01 4.777407137349962696e-01 9.700778925675099806e-01 1.869182589051353593e-01 1.392566066934046720e-01 4.212414200992301572e-01 2.878429998934654011e-01 -2.035367860138906693e+00 4.721792111705313211e+00 4.120633139950761858e+00 3.843908546710428809e+00 1.136861366145061891e-01 6.307609931426952921e-01 3.353277817991416332e-01 2.471082775921506491e-01 1.302029718735593644e-01 5.637636593811077290e-01 2.852685256375106504e-01 -2.624282664519637542e+00 5.666017023872226055e+00 3.485181095405466500e+00 4.243463612826170461e+00 1.981905335496163822e-01 8.657181916419934842e-01 5.932272780833270920e-01 1.976641431547649375e-01 1.376918724043895703e-01 3.340026358157718311e-01 3.853901423116385949e-01 -9.686090287540126686e-01 4.997218216313296324e+00 1.061132931927459166e+00 3.970127344906813960e+00 1.798720310337275918e-01 3.125007349473388762e-01 5.699802094147253806e-01 1.736098904482665795e-01 1.466441869103594642e-01 8.558879211770090700e-01 1.421860928824687509e-01 -1.146130346161203351e+00 3.920470514450161037e+00 1.939062179895740590e+00 3.619855400735706663e+00 1.739618534540388894e-01 6.697039835871473334e-01 4.885508026866589582e-01 1.435996777002221392e-01 1.283070425354078115e-01 6.888055941680018002e-01 2.931857724364360096e-01 -1.085809826000899925e+00 4.040288977434917328e+00 3.461426598226839069e+00 3.949992366010701250e+00 1.815079066789704321e-01 4.605949168475624855e-01 8.835011684483456973e-01 1.541364816252789038e-01 1.143459966571009345e-01 7.895381960024270285e-01 2.499607133047848373e-01 -3.162696172333610001e+00 3.623354993444177996e+00 1.269614720197547619e+00 3.870444233272342771e+00 1.744389505955517006e-01 5.667873443370788911e-01 7.121984173308778532e-01 1.041403947635122090e-01 1.307413035800903400e-01 3.521884985220078423e-01 1.306033100553340431e-01 -3.186003724286777583e+00 4.016739953937983998e+00 1.120574769185976205e+00 4.449776295351554722e+00 1.449400027147383363e-01 4.948609605018541302e-01 8.541132151249604121e-01 2.212251538495567105e-01 1.427679741853943862e-01 8.740613085334698606e-01 1.496552409407799211e-01 -2.349289976795612134e+00 4.958383247568061591e+00 2.673163481146850096e+00 3.877830554278703268e+00 1.747225968290521680e-01 3.185353871480566257e-01 5.557424301444865433e-01 2.070416035116512954e-01 1.354059022066857465e-01 7.253038163289399209e-01 3.102036263094012369e-01 -1.422291891550994114e+00 5.082629083796462055e+00 3.439551610987281904e+00 3.588462539240629301e+00 1.144791652369717416e-01 9.383944996829436391e-01 6.603920036740297261e-01 2.680347465013517283e-01 1.338574343571673209e-01 1.546591095854366049e-01 3.151238448371082579e-01 -1.359228187870332505e+00 5.545502473181538328e+00 5.310830615019778378e+00 4.487942694118091325e+00 1.114375392976691276e-01 2.789758996658426859e-01 1.679872715213462375e-01 2.837347353494343305e-01 1.064563552861352430e-01 7.204874156663174656e-01 1.024631463187509750e-01 -1.501471751041840275e+00 3.897701918979759483e+00 4.353974814213623645e+00 4.423385484345677021e+00 1.081673240262652630e-01 9.892505075741443443e-01 9.366401382525088026e-01 2.092431718176950839e-01 1.102612940673136505e-01 9.816623216624466020e-01 3.246050747135356129e-01 -2.656216180064057131e+00 4.908425498253599528e+00 1.279660852971967078e+00 4.377596919904336303e+00 1.135873503965661724e-01 1.566249044928779977e-01 3.596814436402722137e-01 2.152246452345427663e-01 1.455923977278203718e-01 4.406724331638404157e-01 1.529235277630142387e-01 -1.430178602062204263e+00 4.186269525525215585e+00 4.020660850237457673e+00 3.687855687661099946e+00 1.586882122816870022e-01 9.355423192735602411e-01 2.430567865877622247e-01 1.484670268738845778e-01 1.005769040249729768e-01 2.634236599859874350e-01 2.912887569362476170e-01 -2.198275423743522250e+00 4.447047507983563186e+00 4.908613042544136995e+00 4.055402854795066681e+00 1.207317330547026529e-01 8.717927791375806867e-01 6.671629294420053924e-01 1.916114169720847804e-01 1.053205530991378341e-01 8.329061275804858777e-01 2.933051371609001756e-01 -9.099204981719837271e-01 4.863596318094394633e+00 5.439984333734332544e+00 3.918628234800924481e+00 1.113718504990405256e-01 9.228144435341339991e-01 7.980515344914672626e-01 1.258920738281696372e-01 1.267404787043875658e-01 3.373853670021164097e-01 1.919748246913982048e-01 -1.910297644875289746e+00 5.833850221041971373e+00 1.769665997220478459e+00 4.148997488022720503e+00 1.728301811218163619e-01 2.704321070660051785e-01 8.767960527590473729e-01 2.532507476986712858e-01 1.047416066546472541e-01 6.692884429438721305e-01 1.131227451753952506e-01 -1.558349295855392835e+00 4.028930628586545382e+00 2.215920289497959494e+00 3.540308615022754957e+00 1.655636336016916843e-01 7.336127123936440064e-01 3.659161744694101603e-01 2.156105166086184910e-01 1.052691624605160553e-01 8.675352169135434055e-01 1.470942676266015492e-01 -1.852229635026751531e+00 4.249401241818375752e+00 5.134492500531426806e+00 3.535635696884103840e+00 1.831027545510432730e-01 3.155532031429919004e-01 7.225437623179714608e-01 1.862819223294442106e-01 1.282326095955321488e-01 1.536999516690269740e-01 3.476679951748968267e-01 -3.062378382295609214e+00 4.170859795270665416e+00 3.738353535314166365e+00 3.766191872388532147e+00 1.401897029236928716e-01 4.584491748325613125e-01 6.367959581856631468e-01 1.319317837978056795e-01 1.177158679709778694e-01 6.072404259689304640e-01 3.751943999458234869e-01 -2.607389976867927395e+00 5.027463285856264896e+00 3.068795442019655262e+00 4.270454557515002136e+00 1.625884155155587485e-01 3.634176586708131040e-01 9.687454869537667212e-01 1.963353174031450266e-01 1.002302664621796263e-01 1.964755808798706038e-01 3.856848418431919612e-01 -9.521416004634430941e-01 4.219183248689054366e+00 3.350944730069535638e+00 4.222812709589126356e+00 1.925814307083751065e-01 6.868010285245903512e-01 6.246970935069972031e-01 1.455183646051338708e-01 1.422355639399097704e-01 7.126713612118937835e-01 1.134291765397520552e-01 -2.802977674116845286e+00 3.669285506535207908e+00 4.076974827028097437e+00 4.307207887590109863e+00 1.654716918339828868e-01 1.195007919403239249e-01 2.613609070322892025e-01 1.403875835611730072e-01 1.098288643277406385e-01 8.215513446351346838e-01 3.487083246639673950e-01 -2.132715942542047216e+00 4.882150798132055769e+00 5.328267824621171656e+00 3.759828290168189202e+00 1.303880505922169197e-01 2.541088782385661493e-01 4.608529752265061452e-01 1.494125302074306716e-01 1.348631003907158066e-01 4.666962282763185144e-01 3.776181971903864731e-01 -8.168409791323079094e-01 4.112020654893189686e+00 4.409194930775923282e+00 4.054293745815199301e+00 1.323574982465710592e-01 1.796971535840652112e-01 9.988462253721186457e-01 1.802569086085075434e-01 1.311958359759028137e-01 1.067112749586669046e-01 2.571052647736127295e-01 -1.491805624297329880e+00 3.658583821073073228e+00 5.353127511889414158e+00 3.822805082054868464e+00 1.439349088697874368e-01 1.899340964368458895e-01 3.416147920923406911e-01 1.586547109246543852e-01 1.172640151050635404e-01 2.126683419949020049e-01 2.897980006542276721e-01 -3.087164822672510134e+00 4.369710709945779037e+00 4.886698763531154732e+00 3.764903816746432152e+00 1.571285440372050257e-01 5.060918453144459539e-01 1.034248454805177936e-01 1.476352823927769842e-01 1.138848652636254427e-01 8.685252992013151596e-01 3.443615145854516668e-01 -2.050544180699468200e+00 3.579384440872490192e+00 9.030730626426893837e-01 4.453564883893639248e+00 1.610940939426538376e-01 1.125972077180280306e-01 4.327853791346398804e-01 2.530752861663000397e-01 1.335830619995418966e-01 2.001273939039101002e-01 2.691892581432647757e-01 -1.454527733294186831e+00 3.871279827183953248e+00 4.869920199187302678e+00 4.167932823135183540e+00 1.069627252500665315e-01 6.487939205426528355e-01 9.653036046338960841e-01 1.153091340989596397e-01 1.221199975956187428e-01 8.642143609654324710e-01 3.055489639382531486e-01 -1.490836467249174957e+00 3.868939495150030883e+00 2.839077769100902593e+00 4.422175557154235825e+00 1.663673875528259294e-01 4.524413191023537451e-01 7.194220498416207255e-01 2.923701237879638981e-01 1.187326168665540638e-01 7.072508471486002035e-01 1.053367702094177710e-01 -9.277895326656098174e-01 4.122012036756631304e+00 2.312026048438844406e+00 3.640070976509548917e+00 1.679823029629519959e-01 8.924760131731814816e-01 2.192874797128555597e-01 1.276826135215319569e-01 1.373450144621193580e-01 7.468414810900356748e-01 1.993408002962691605e-01 -3.010897585841041391e+00 5.734879032498524154e+00 3.452761988579420738e+00 3.892362462533877299e+00 1.634216768522810947e-01 7.463193807889223486e-01 2.692104773257853467e-01 1.071210178071373975e-01 1.232372170050886340e-01 5.097625653824214842e-01 1.630460766447465182e-01 -1.394627238335563568e+00 3.960665638527905763e+00 2.817236611705795646e+00 3.703597836637174012e+00 1.773305931742822084e-01 6.688251441581153367e-01 5.544153237196447481e-01 1.776417786117407693e-01 1.309628176446901993e-01 2.118617697298215696e-01 1.535425345438058420e-01 -1.991682453884531023e+00 4.076982280455702323e+00 1.222468245253090391e+00 4.121403550377594094e+00 1.231664198035638536e-01 1.571529072084814904e-01 7.930358186359914852e-01 1.950813809150818146e-01 1.164043410997320505e-01 3.182587292407107471e-01 1.548457282899244614e-01 -2.096739677976843907e+00 5.615278923741311878e+00 4.833025481990402383e+00 4.156542548215027111e+00 1.555047229935026531e-01 2.305243487740923636e-01 1.795306410891288618e-01 2.269478420258781715e-01 1.496323741457323830e-01 7.764113662060706522e-01 2.803358097806553650e-01 -3.087251951664415905e+00 5.691987622130758595e+00 1.624048723682617323e+00 3.672338643556468440e+00 1.007280407584557891e-01 1.716212145771319753e-01 5.525103735863186039e-01 2.911568138455217225e-01 1.266723495296473156e-01 9.223953388233027129e-01 2.340136428948043912e-01 -2.251149433592654958e+00 3.637377378400721728e+00 4.505477001767094869e+00 4.443495318125079585e+00 1.844508779004011834e-01 1.908036948133969568e-01 9.052166636365924779e-01 1.691279557733313399e-01 1.407903329150548277e-01 3.235618384554233007e-01 3.649861985815534560e-01 -3.035257436585457214e+00 4.176229699460453304e+00 3.382543296811038047e+00 4.312542100167734205e+00 1.869091397171465385e-01 7.172810024242491922e-01 9.098829584695378170e-01 1.941039790403251142e-01 1.464518128110287032e-01 8.753621079745999012e-01 1.519714442028449741e-01 -1.947317324199090871e+00 5.256926546564955061e+00 4.643891181830477777e+00 3.899885688899944469e+00 1.208172261452011981e-01 2.824108733597412990e-01 4.169243053122758669e-01 1.310796868577792373e-01 1.171284654670037839e-01 9.361557639907963635e-01 2.510455651730219007e-01 -9.126789218467544762e-01 4.490584416965097247e+00 3.291437228520211811e+00 3.935316998562099489e+00 1.622034095091894612e-01 3.940925866657638554e-01 3.813194354618787418e-01 2.965405833413842229e-01 1.485939359579006580e-01 8.287606628682268051e-01 2.550628663682255048e-01 -1.465114569057088811e+00 5.795390298968805531e+00 2.600706110971416685e+00 3.865341754021134335e+00 1.627694675886239284e-01 5.533034140661395872e-01 4.029470490213709066e-01 1.678240562385074908e-01 1.275175141431142412e-01 3.654952998926973562e-01 2.333120345082044522e-01 -2.443000775354772003e+00 5.800246878817826968e+00 2.816204425252266219e+00 3.630428962588268860e+00 1.424707096193674749e-01 7.242622526076214484e-01 6.532781147504522767e-01 2.428802281221781045e-01 1.196060919598067873e-01 5.286437112148496542e-01 1.260700216987080124e-01 -1.766055649541598438e+00 5.830593917477068011e+00 1.082417221238218596e+00 3.854778539214634314e+00 1.879215782534085499e-01 9.702684759464650366e-01 2.230193498909659733e-01 2.182460563850337487e-01 1.221844408998566667e-01 6.367444121373785348e-01 3.669198760772306445e-01 -9.229612405430691613e-01 4.217279656007447919e+00 9.073434034342575671e-01 4.046454058111460306e+00 1.618621367050792070e-01 3.552546380808545567e-01 9.260905855647358909e-01 2.615932077080556084e-01 1.182805061010318848e-01 5.181214932212450108e-01 1.038307120532242639e-01 -2.506720391863365371e+00 5.659813207064029683e+00 9.292037403636805859e-01 4.321131532657672913e+00 1.697147270900548621e-01 7.962219349106430810e-01 2.713475528471177012e-01 2.859649701688702361e-01 1.442132985281451840e-01 1.304337010142921083e-01 3.318724075013097519e-01 -3.109844534926847537e+00 4.388497408963187851e+00 9.581286830862232318e-01 4.095452048327485883e+00 1.935600333381559124e-01 8.580450650026119064e-01 9.967052915525315138e-01 2.863731733650869415e-01 1.497549555440078062e-01 4.231720016326078193e-01 2.882355948609394147e-01 -9.460650841539329781e-01 3.990989939751944160e+00 4.409736234865694549e+00 3.873184799789180843e+00 1.098281588105578938e-01 9.767423313238629001e-01 1.310749114745693444e-01 2.527550452305093454e-01 1.211177399285276318e-01 9.417428310992320695e-01 1.626973775242179787e-01 -3.179045447492509169e+00 5.803138195894442575e+00 3.242176624595376033e+00 4.064457214641462812e+00 1.156355862664709550e-01 1.368885347609099523e-01 6.459073955538114920e-01 1.280888893436970544e-01 1.065672899016090053e-01 8.733096221510537882e-01 3.449647595468208205e-01 -2.725768666064838364e+00 5.599258737747322634e+00 1.514166158065423762e+00 4.023715799298918760e+00 1.882467935735347986e-01 4.642022963592509210e-01 8.623958427788805947e-01 1.923997514067561920e-01 1.497183316329376845e-01 4.931896399518841401e-01 3.942793239180982789e-01 -2.636661905454944943e+00 4.658279720034554927e+00 1.023903191875393359e+00 4.464297613087836680e+00 1.385950411797105541e-01 5.195661909613793483e-01 3.602769438668581570e-01 2.801178804744912654e-01 1.481436760640755246e-01 2.529986979552480419e-01 1.990989804261559248e-01 -2.223151271115276106e+00 5.634614838405786585e+00 4.656254396960563646e+00 3.561193215722278538e+00 1.145556078820217510e-01 5.394415254400878323e-01 9.077014655394677334e-01 2.395608689322962226e-01 1.015393296541576978e-01 6.089128129388375887e-01 3.340492060208481440e-01 -1.296092421169164233e+00 4.724813568340760384e+00 5.479330319520767212e+00 3.866324123511664546e+00 1.604720481238075258e-01 2.692504414175356242e-01 8.905989844886311735e-01 1.309802077267338272e-01 1.049956173649079644e-01 7.587120209969216988e-01 2.081530627525990662e-01 -2.082461558124779621e+00 5.305161556070367546e+00 5.438014165158295832e+00 4.013557113691602396e+00 1.091069371364508517e-01 5.946698161816971195e-01 6.897536788498075389e-01 2.457563105842697770e-01 1.181901119742255479e-01 2.889524543455763705e-01 1.327333154690433226e-01 -1.593407728777109345e+00 5.408643650355221766e+00 2.821495468803575157e+00 3.956127160271512899e+00 1.062769583247542282e-01 7.419291572990264205e-01 3.747710605987233379e-01 1.241003774426231721e-01 1.367797408163206330e-01 9.733838806379790931e-01 1.047559579802540414e-01 -1.258408308735300185e+00 5.723345375651597955e+00 1.553516227507117486e+00 4.370817885515264400e+00 1.502794160557293646e-01 6.501876261431992488e-01 1.767475194230493929e-01 2.589926790696265302e-01 1.296209688456884113e-01 7.306633456917599467e-01 2.644602316316559953e-01 -8.671201125591403436e-01 4.980897493724963709e+00 2.805565983947619024e+00 3.951019016589341959e+00 1.629027434747782888e-01 6.141571647924123356e-01 7.101334499718441329e-01 1.790725730911654490e-01 1.237428898044183323e-01 6.791336073320479727e-01 1.159343839311603730e-01 -1.358506735947333510e+00 4.984410260620901312e+00 1.545441897374089990e+00 3.736538263072842092e+00 1.067718266665380750e-01 1.075071287336381715e-01 9.738756414137808015e-01 2.410352935887339065e-01 1.402011378075479764e-01 5.832395023012229007e-01 3.724924067069766975e-01 -1.823356668759597898e+00 3.815272325906820861e+00 1.666693271595022008e+00 4.440313201087621842e+00 1.724192852118043850e-01 3.891585932896057809e-01 5.659749939950869946e-01 1.701265851731558476e-01 1.143938026509606631e-01 5.461788454100797718e-01 1.002393408508557432e-01 -1.816407678983942731e+00 5.020238437440025514e+00 1.032581834347301442e+00 3.740878814190926160e+00 1.581223129544880313e-01 1.849282613751785653e-01 9.617185450732703700e-01 2.477095276605302543e-01 1.233432422012792351e-01 3.903386959199579564e-01 1.703680696190818522e-01 -2.759108920966391043e+00 3.851057071565080037e+00 1.671659016452441637e+00 4.475811658460019160e+00 1.223114989010479631e-01 5.154540126719125981e-01 4.336700014791893265e-01 2.655728557723789907e-01 1.176054151984346485e-01 2.506449943774383127e-01 1.862764375797810179e-01 -2.498351651117328487e+00 3.833097481294549524e+00 3.124584082778447680e+00 4.005766288000737418e+00 1.985472356854254827e-01 2.140510801164835775e-01 1.936016450998991889e-01 2.924025820645559937e-01 1.076657762933540402e-01 2.993252248727553688e-01 2.487648771307263973e-01 -2.376841659863771383e+00 3.695816062422428772e+00 3.532922002100570502e+00 4.016966138770282413e+00 1.268356133548258213e-01 2.564974411136625720e-01 2.634564763738445059e-01 2.753197948740855328e-01 1.410348135931180635e-01 3.790879048982512822e-01 1.088880931526664264e-01 -2.627664926008149937e+00 5.794674338685721793e+00 1.721670046225892925e+00 4.203278180607791015e+00 1.472286706971664139e-01 2.604868446978307883e-01 9.360899514021112644e-01 2.246807338010235466e-01 1.358484392500731719e-01 5.949692226164836617e-01 1.598676492323178600e-01 -2.487706031366363035e+00 4.036995222859789401e+00 4.516723872602202761e+00 3.706511419188736056e+00 1.269458220820709193e-01 3.682395720220943414e-01 9.483408118517477892e-01 1.784417032991807150e-01 1.487096699533927424e-01 5.845237779528884570e-01 2.145576151269813769e-01 -2.837367697960782920e+00 5.145650540026835529e+00 5.076246897778549538e+00 4.113247194221918868e+00 1.215822048291615443e-01 3.014687591254091581e-01 6.117968154648384393e-01 2.751379692284594558e-01 1.165074209713303222e-01 6.957786799564008584e-01 3.989332679666816039e-01 -1.980453258115386417e+00 5.188853845826104205e+00 5.347993363987994186e+00 3.852928126087781013e+00 1.082198004051050239e-01 5.457164035617370068e-01 2.268625330506331694e-01 2.076980588596951394e-01 1.100298069148257646e-01 3.661230007165515721e-01 1.928145261700984769e-01 -1.869268040517148899e+00 5.164494082661768459e+00 4.736414539884118646e+00 4.212983552380634045e+00 1.341594034996070051e-01 9.453314076665449983e-01 8.066844665862127339e-01 1.755953170838288058e-01 1.041189195297655551e-01 9.045850973667616257e-01 1.078179787537451029e-01 -2.728717799344552830e+00 5.254126317522663570e+00 1.145972646876482148e+00 4.226679726084737965e+00 1.847815334452514169e-01 6.561435648795885811e-01 1.825484644410549917e-01 1.303282164137908594e-01 1.351936880099053329e-01 9.122257251240953879e-01 2.232231159172727575e-01 -2.004319981449405041e+00 5.398224984356823519e+00 2.100431479888073660e+00 4.367664380996234996e+00 1.950373310387795989e-01 3.607630565516560806e-01 6.437099858084914805e-01 2.674893283124223919e-01 1.026424469977171988e-01 1.632369949793687769e-01 2.172307791654252140e-01 -2.016915800844539142e+00 4.660448914508034335e+00 5.236387215988674626e+00 3.871466258920395198e+00 1.294813714449998265e-01 1.659450604456735867e-01 7.172807161370526874e-01 1.665683138142093622e-01 1.461475822628263976e-01 3.670912162554755831e-01 2.382957517479511456e-01 -2.553692952357042856e+00 5.974868714730675379e+00 1.839822821220495452e+00 4.162937127873564513e+00 1.367837607327867522e-01 1.153929766604488150e-01 5.224470659283729779e-01 2.893117059394315627e-01 1.139287703254250467e-01 1.410861687425455646e-01 1.870721345075727349e-01 -2.983584896305485401e+00 5.566468698250535141e+00 1.115628190281028553e+00 4.208112093714470703e+00 1.638165197877016199e-01 1.312745391648784954e-01 8.912170129972094568e-01 2.290045701393100819e-01 1.119776474020189733e-01 7.798612569850181808e-01 3.772201912672910051e-01 -2.413740883530644421e+00 4.560210098221677555e+00 9.936410104307344948e-01 4.368666869741458569e+00 1.736753272060557185e-01 5.931570807234237686e-01 3.041282068631163682e-01 1.269988796800249342e-01 1.408716062891967047e-01 8.054016420957265110e-01 3.371168310766865517e-01 -2.689719580022136292e+00 3.909654016763512541e+00 4.898561891320055040e+00 4.391620206134134285e+00 1.204879581355964846e-01 8.804806683588176641e-01 4.564463565645083820e-01 2.338028136125673007e-01 1.412425999031451385e-01 9.652963665805845972e-01 2.397925286478673201e-01 -2.141401297028160400e+00 4.207424545958663664e+00 4.057749137595568101e+00 4.457559030986143256e+00 1.086261170271853732e-01 7.302919391489569589e-01 8.785105328735260954e-01 2.567335296409836154e-01 1.360955248413930063e-01 5.168673433665028627e-01 3.866520199074312547e-01 -2.532917666602971352e+00 5.068805137616594791e+00 1.361644125801751315e+00 4.103030593443655505e+00 1.274669283444755941e-01 7.203238907647731004e-01 5.918919382717466871e-01 2.271665003665886973e-01 1.131248181479944243e-01 8.172920932798348748e-01 3.998171686791148760e-01 -2.020334135309797219e+00 3.915491364504972260e+00 2.200620004341635294e+00 4.082085079008280992e+00 1.863408842666564313e-01 1.030902281960594663e-01 8.808638345038428685e-01 1.180039056382914675e-01 1.089987857210076155e-01 6.585395995137617309e-01 1.545365902058705720e-01 -1.588760654095669134e+00 3.564229263702122008e+00 3.188213879862746403e+00 3.513491214386667227e+00 1.694531202723910390e-01 8.095825079855952788e-01 1.273961077159676825e-01 2.422324468329294933e-01 1.073197265130114708e-01 4.614675505356589102e-01 2.996593593932362354e-01 -1.987120576447772180e+00 3.767491941252568033e+00 2.054932735256251419e+00 3.500048553143908059e+00 1.044127820455722916e-01 1.327978483000340493e-01 2.414476200745903356e-01 2.521331089270811843e-01 1.265869403360694034e-01 9.312309873106227043e-01 2.298661335299228281e-01 -2.902499444541532192e+00 5.229534171625310535e+00 2.743606347087512276e+00 4.491485978278048741e+00 1.331809833949362532e-01 8.426232030289368957e-01 2.962553728389594188e-01 1.284338521746088424e-01 1.379612875276613193e-01 6.156604040831075153e-01 2.037530360299287802e-01 -9.776722980861248802e-01 5.626943911031316858e+00 3.668310512506187671e+00 3.677912996847894522e+00 1.795478828463514809e-01 2.280087654033048084e-01 2.212472788076597641e-01 2.388954354774335265e-01 1.483405303040138401e-01 5.623208387059279723e-01 3.738243745296490061e-01 -2.808979600160421697e+00 5.517289405674358882e+00 1.088470165743304907e+00 3.746673095874797799e+00 1.934524197772722331e-01 3.908192744470554425e-01 9.583811433607097863e-01 2.262358154786247577e-01 1.331101115240789501e-01 2.165502293517341803e-01 2.151584602210377950e-01 -1.318108076285745334e+00 5.331766130841375073e+00 1.654249038402234362e+00 3.720711804920824317e+00 1.146049600630076049e-01 4.879509129357182395e-01 3.129644622923416497e-01 2.096705680842788633e-01 1.461972629568455972e-01 2.581974087851017785e-01 3.860891507359190955e-01 -2.937429902065154863e+00 4.783798781715297821e+00 2.571103525203918494e+00 4.119259692038488296e+00 1.651267214835139829e-01 5.255871435562494698e-01 3.133721635555571927e-01 1.256095920153906254e-01 1.152264588798829342e-01 3.029937512267307231e-01 2.357131706014630734e-01 -2.231178723329996672e+00 3.772710313129593818e+00 4.698760302794625865e+00 3.664114678974054407e+00 1.915289162510526166e-01 4.099230066800063632e-01 8.454019335190603446e-01 1.674685546868898145e-01 1.180521739025804095e-01 9.758753240581680144e-01 3.635070719918509496e-01 -2.887007812016888053e+00 5.823984857448075481e+00 5.429848474525664770e+00 4.273684545691171621e+00 1.886750614531637893e-01 4.179803353999667070e-01 9.067705589517769393e-01 1.603810766312190328e-01 1.228202644967735652e-01 3.908579081134029298e-01 3.670331311223140602e-01 -2.121605461601559384e+00 4.448875363329667820e+00 9.897815368295652672e-01 3.886888529532493308e+00 1.678862946348065877e-01 6.617410591136598796e-01 4.959924684910280712e-01 2.570281330066335190e-01 1.395378671995496922e-01 7.431943422479099226e-01 1.216384460835321230e-01 -3.193616669243086292e+00 3.929079912120947427e+00 2.564583328893410119e+00 3.774412672075088349e+00 1.356678323553180687e-01 5.571973602023423400e-01 9.529532689416951863e-01 1.853011434034781968e-01 1.122081710033014240e-01 8.850647454065104780e-01 1.628463767910945381e-01 -2.477797876304540736e+00 3.541527318609078101e+00 3.592229168864452760e+00 4.199803272189792658e+00 1.232767006317611602e-01 1.293607285697114528e-01 6.420656523105390256e-01 1.288856858072975620e-01 1.010572463754117467e-01 1.238236631517747044e-01 2.349055635718566848e-01 -2.330363949536416790e+00 5.376403339236551560e+00 2.082244006656206903e+00 3.553326771169113663e+00 1.702201001489803134e-01 5.577396804587960721e-01 4.747170411893729680e-01 2.194541278700241349e-01 1.481871181827553174e-01 1.216056515249313019e-01 1.048645267446525614e-01 -2.973359469097676566e+00 4.669377128148630263e+00 4.127750061817623717e+00 3.824761189327556377e+00 1.931638866447145664e-01 2.989583501086851003e-01 4.154905038863853095e-01 1.515761607738557726e-01 1.282824800486920547e-01 4.892523882451249584e-01 2.388361426487206063e-01 -2.821576828974101225e+00 5.779829531745926730e+00 1.047574307153543494e+00 3.941728099991054890e+00 1.426627870463122172e-01 6.340928561833019117e-01 8.825147444480125891e-01 1.730028029280043511e-01 1.310762666381031505e-01 2.618070179025667743e-01 1.987439934036840938e-01 -1.774947944419666079e+00 3.762786186851437620e+00 2.492284092136699769e+00 4.429742736217486154e+00 1.209312919304301737e-01 6.263390214010576829e-01 8.508851548400466758e-01 1.758911887144363473e-01 1.209356716213387528e-01 4.694041508478462577e-01 3.011090691974009914e-01 -1.322668196658125961e+00 3.966766649830102853e+00 5.384160538743747004e+00 3.922873900135090963e+00 1.242954160638315153e-01 6.004410551521849326e-01 8.212914972976076422e-01 1.984218877526494618e-01 1.387489432676859979e-01 5.369115403000503939e-01 3.380182789893044770e-01 -2.316320172259515253e+00 3.958282370186593013e+00 4.050827401639462977e+00 3.931648073735662940e+00 1.189388571722324595e-01 4.730796111852476615e-01 9.008465725692269555e-01 1.861448066072931562e-01 1.457028378899409560e-01 2.093875483969058759e-01 2.946012138225351240e-01 -1.350395989424099552e+00 3.878314297588487225e+00 2.843658916490579891e+00 4.365240862161117619e+00 1.011174223694489699e-01 6.749383081167839027e-01 6.378152276549905464e-01 1.089677664974051385e-01 1.472190160035815321e-01 9.483053001519681224e-01 2.252088550849082604e-01 -2.675566919135031085e+00 3.903856879588323281e+00 3.187558683142786009e+00 4.342767806502570771e+00 1.792855096583212682e-01 6.270391230842548014e-01 4.261080201666662681e-01 2.409185490702434318e-01 1.395612974139585072e-01 6.182073003647315934e-01 2.506101144049800444e-01 -9.488018498429975356e-01 5.311557622750296304e+00 2.357280360165093125e+00 4.416280130785273705e+00 1.955303298213570962e-01 7.262630589995919816e-01 5.954912213548919642e-01 2.245333692725552943e-01 1.175213053084176451e-01 2.610790817751145743e-01 2.873610878407502067e-01 -1.483094317882246216e+00 5.944581453181115194e+00 1.741322674202679277e+00 4.310779632623936486e+00 1.748981755357737755e-01 9.503918472696347708e-01 6.471723811166255613e-01 1.745328721914312098e-01 1.411442307449966571e-01 7.752124489705048971e-01 2.755016740744432591e-01 -1.167118311223560578e+00 5.725304820211180257e+00 1.903128951701903437e+00 3.656516766915510530e+00 1.479316645132952301e-01 3.070812368698455641e-01 6.040504673847499895e-01 1.179949760169253514e-01 1.019184473367218124e-01 5.080408349112519595e-01 3.224252885812495806e-01 -1.584371474181594408e+00 5.539914489969913092e+00 2.728508517723926108e+00 4.406809400507393448e+00 1.343790160251241428e-01 3.017757066904350749e-01 2.138277575425909793e-01 2.330504177520042186e-01 1.187905162141866117e-01 5.239803105685192364e-01 2.063898271853199240e-01 -2.846896682569045822e+00 5.868186742375110398e+00 1.735058407732712027e+00 3.753591111059381369e+00 1.291236563293982620e-01 9.492262967077024216e-01 8.571377381156175534e-01 2.079585749475987844e-01 1.020806395609778483e-01 4.199514340284906666e-01 2.131988748094880148e-01 -2.468788884510901838e+00 3.744332364807042790e+00 4.083589303124545822e+00 3.521165904259764279e+00 1.000241155430200979e-01 1.242860034770558730e-01 9.976285283105544854e-01 2.091497143948823356e-01 1.286644748823918827e-01 5.256797340044562228e-01 3.185923251588401728e-01 -1.094313855746433806e+00 5.464539946342496179e+00 3.754416679536101142e+00 3.811714707914948708e+00 1.692786330725876698e-01 3.097175912719022373e-01 4.352957085071896826e-01 2.522681496732898654e-01 1.354989347101693276e-01 7.908043850632029415e-01 2.522727802822627430e-01 -3.198630099905743762e+00 4.538214021921083585e+00 2.757133448611347681e+00 3.657516311063261139e+00 1.257787865410494588e-01 4.007422735369520206e-01 6.018096920760801494e-01 2.940654226672930749e-01 1.117270124778842744e-01 4.294538046373594931e-01 1.635530247148482275e-01 -2.862730640174033780e+00 4.320253858393537705e+00 2.029623395174163569e+00 4.085448344140164778e+00 1.676939149968567078e-01 9.535646325541516921e-01 8.890819345973208776e-01 1.539290561960843517e-01 1.276747598706540476e-01 6.140509016178178348e-01 2.892399480059267836e-01 -2.106646077419881191e+00 4.679334205020857951e+00 5.126722250938909653e+00 3.698635443769410003e+00 1.264570837390190661e-01 7.408106840351715849e-01 9.224287843567200440e-01 2.538681705510742459e-01 1.120791501426799813e-01 6.535215165541591320e-01 1.398950066271076320e-01 -2.736727771281909583e+00 3.524644503716011901e+00 1.183736777210618429e+00 3.948158761433828268e+00 1.662010124823090074e-01 7.536370272062341558e-01 1.723162030319964066e-01 2.335459315412180270e-01 1.084749817739501243e-01 8.138164969185417430e-01 2.103908961562058477e-01 -2.332438980370803439e+00 3.997795290107361676e+00 3.163145387754579652e+00 3.690292414342422056e+00 1.186777429952812074e-01 7.745298613577733526e-01 1.914571344064722180e-01 2.758792620670834084e-01 1.227266775316703112e-01 9.333583209825101479e-01 2.477772443929302515e-01 -2.282571237671350950e+00 3.789678281398614068e+00 2.586445380087727841e+00 3.652243646084193163e+00 1.899510501070952873e-01 8.291399117177699063e-01 7.988304172761431232e-01 1.219292893504955733e-01 1.250521511012673559e-01 9.443532808846475390e-01 1.518359775225648356e-01 -1.532561827473303939e+00 3.849637016335369033e+00 3.926374036942068102e+00 4.071369218150880265e+00 1.554417183844509498e-01 1.759898711893468637e-01 5.322729985620736626e-01 2.643133538065910448e-01 1.396339199703824918e-01 7.422486942018740042e-01 1.965583936128153519e-01 -1.968703766618306927e+00 3.644647530827747062e+00 3.923300347151552181e+00 3.515332727981915539e+00 1.706329667631539260e-01 6.656453682646066294e-01 5.626019622150471022e-01 2.730491407619100031e-01 1.059111006936813981e-01 1.075866128531660915e-01 3.883901778646745573e-01 -1.510847944517454966e+00 4.840691352995673213e+00 4.740646724448059679e+00 3.795239660167361251e+00 1.395130184773842597e-01 7.800401044390165017e-01 6.401005668035478768e-01 2.084238617494555412e-01 1.086603293824904004e-01 8.083860927084908221e-01 2.582815184800845154e-01 -1.398911849356147652e+00 5.470971917410476060e+00 1.392846491517957253e+00 4.027529977646836734e+00 1.412050210440475018e-01 2.000202015938640776e-01 5.213683404881209738e-01 1.468970427321673322e-01 1.069156628971149325e-01 9.768083112823638947e-01 3.862573914566573841e-01 -2.999826462857615894e+00 5.922156049907170150e+00 8.692168175066464775e-01 4.254918006796595265e+00 1.813376572542627352e-01 9.438209408282245416e-01 3.573835465326222760e-01 1.396604616286379885e-01 1.403969650772836364e-01 5.582919023453504215e-01 2.982630916397341903e-01 -3.067487297045687455e+00 4.505680248913040309e+00 3.569352025450548638e+00 4.259588957330093351e+00 1.808183463113274547e-01 4.580313510647331388e-01 5.852764327572271830e-01 1.239594405929943938e-01 1.160813385068004550e-01 8.061682551132030028e-01 1.653634194414611569e-01 -8.361277972874794351e-01 4.438986527066973053e+00 3.151816554537779425e+00 4.494471078092411531e+00 1.206991514600103399e-01 3.741156338244818746e-01 5.808433155986076901e-01 1.871899418373758617e-01 1.169275825012326131e-01 5.517816892496266723e-01 1.559332640836604000e-01 -2.894252057115748400e+00 5.950185708325665956e+00 3.978804237180718850e+00 3.626877548376940208e+00 1.737801869772289121e-01 7.940737142235269053e-01 6.693803008141482325e-01 2.952586879207250714e-01 1.128543857537081946e-01 7.821018269865389616e-01 1.403180868364951039e-01 -2.724351804347569406e+00 3.620840106710858652e+00 5.376760276237112279e+00 3.911986841912578061e+00 1.364901929521945279e-01 8.964733554338848442e-01 2.368511373150918864e-01 2.340611487731624474e-01 1.262490036192742970e-01 2.697847557675797647e-01 3.764146229486674544e-01 -2.946664138112651266e+00 5.210818588202744905e+00 4.160377492907516128e+00 4.355843316832686440e+00 1.453627031741424047e-01 1.297194962135573559e-01 3.508257833715912044e-01 2.886064010776516753e-01 1.208622282857056418e-01 4.192114604683400136e-01 1.756712934779524615e-01 -1.167695513663907558e+00 4.605065848112069204e+00 1.262821974315643025e+00 3.943397792536945001e+00 1.923239453026399925e-01 7.319102590258147467e-01 5.200367083484160879e-01 1.420542792810842170e-01 1.430064996948275657e-01 4.334617204435589066e-01 3.189105677874162215e-01 -2.047616704023305090e+00 5.258432107814098977e+00 3.390399634017322583e+00 4.042542082381976876e+00 1.142788497572434364e-01 9.365745068410112895e-01 5.453360774128050981e-01 2.867265289564360220e-01 1.300641218033546376e-01 8.728699825381172062e-01 1.324009484658106861e-01 -3.155309338147336717e+00 5.754596806926688402e+00 9.157047281411582196e-01 3.577487867672011213e+00 1.979372925854362975e-01 6.188604977730609580e-01 5.637980243813334180e-01 1.062221071139351630e-01 1.277579543729134293e-01 3.501803260091217451e-01 1.252817133456225474e-01 -8.736595425518045577e-01 3.801895737945964360e+00 3.324007623511609388e+00 3.591955792938640091e+00 1.907648572764183981e-01 1.785780903939005460e-01 5.708224325621983342e-01 1.278729509924233787e-01 1.275971663969368841e-01 2.463707419726196279e-01 1.533394209773652206e-01 -3.122868412406350380e+00 4.673997809462386854e+00 4.317872073624657858e+00 4.280140521576257129e+00 1.567038314627860196e-01 9.419686653539323107e-01 1.458069475779452118e-01 2.342229393523349856e-01 1.286155827367663762e-01 9.952845944672654710e-01 3.052273509169561860e-01 -1.982821057544136956e+00 5.314729710081289582e+00 2.053190762933076563e+00 4.298294884006898187e+00 1.513378856124655836e-01 3.380700819762838538e-01 2.942698980112214979e-01 2.975766518098569291e-01 1.346937958075896669e-01 9.246611746123951647e-01 3.320979631469718196e-01 -3.002546027084792790e+00 4.098533312057371703e+00 3.198364946200302761e+00 3.518476285949633020e+00 1.238242135363234325e-01 3.620086453512930680e-01 5.824995771628989072e-01 1.173638086361369348e-01 1.469640734367785861e-01 5.598442541178051401e-01 3.332908712565101350e-01 -1.998766006506626614e+00 3.891821499779893667e+00 5.055426644334605868e+00 3.878188186299126983e+00 1.742464316738255581e-01 9.217205940932596819e-01 5.126610876712685005e-01 2.179362537188004045e-01 1.120064615896474297e-01 4.264219970068372501e-01 2.025693076720249119e-01 -9.299911856624013540e-01 4.367305681324604727e+00 4.510469977978064371e+00 4.447569071102046578e+00 1.370344259022509004e-01 3.658078820620271898e-01 9.605513431720639206e-01 1.364914315807544409e-01 1.213890143245261177e-01 1.711020523055805653e-01 2.860989559225359802e-01 -2.225740154528420334e+00 4.714107202601444335e+00 4.428150295932556268e+00 4.062553360744183273e+00 1.735072084660674308e-01 5.243041051128788377e-01 7.477154409829225301e-01 1.054027732573272480e-01 1.080117347696984420e-01 3.302956051657380820e-01 3.905826133925207611e-01 -2.782521281718090655e+00 4.392323028103258586e+00 3.109659482422114429e+00 4.460879128392906345e+00 1.568227114217306539e-01 7.438083916197704148e-01 1.880303576247830399e-01 1.133342094252243054e-01 1.308204955453287355e-01 2.573020191820580282e-01 1.476264889082805343e-01 -1.737345836205801186e+00 5.402779943874783442e+00 4.235054788390391955e+00 4.286001830953699354e+00 1.047067645644005063e-01 8.686783276358440720e-01 4.181232836622750249e-01 1.621111746247932139e-01 1.009857178193242083e-01 2.807542242436419366e-01 2.986369655101359655e-01 -1.795283634110069748e+00 4.532162452988651502e+00 8.273314159469973283e-01 3.618449125134048927e+00 1.809678353851287835e-01 5.335063156940448303e-01 3.712664130853186029e-01 1.272970571265256701e-01 1.042061886063576637e-01 4.883929834913137702e-01 1.283859483654233580e-01 -1.899674186690917477e+00 5.369184898374026460e+00 2.807722872573759076e+00 3.814889912254857407e+00 1.371007493757646634e-01 4.416037107032551035e-01 2.483096001915620077e-01 1.194896911502939668e-01 1.123282663587729380e-01 2.749121719982542400e-01 3.310990469214014631e-01 -1.888263316351758370e+00 5.002589957942395138e+00 4.840538715982527052e+00 3.563472458849939351e+00 1.517912866354626800e-01 7.770075527043003305e-01 8.381923407114882929e-01 2.715906508238786765e-01 1.133327134657218516e-01 5.470017077853501775e-01 1.778164694357951825e-01 -2.186565658413807345e+00 3.779397726458308959e+00 2.077794083014896653e+00 4.469543484324424831e+00 1.614954111930029523e-01 2.952248787535743935e-01 5.302399687215854085e-01 1.933486205987293427e-01 1.379468218482001463e-01 3.080230867387014904e-01 1.621809520835933160e-01 -1.760029145465543010e+00 5.685084742760229126e+00 5.132735246615840019e+00 3.559077372339005230e+00 1.830224227521407843e-01 2.114134687314355165e-01 8.642220592241474098e-01 2.696432097984788889e-01 1.226302147164100576e-01 4.306208239692347339e-01 1.021213264589204278e-01 -1.332037945943025825e+00 3.747749589233584810e+00 2.476209723474500635e+00 3.581450832890663794e+00 1.801763573396835405e-01 3.944901908345495034e-01 1.305075110985236819e-01 2.719870007479816554e-01 1.434769646130683307e-01 8.876666953601938248e-01 1.125724146383723367e-01 -2.408402594792543372e+00 4.799457310984406533e+00 2.993560069647129396e+00 3.968434375459100050e+00 1.228641925610009372e-01 5.907561329430888186e-01 3.890176396679242421e-01 1.837636262425125233e-01 1.323415436266398570e-01 4.009788107988977446e-01 2.836050047996249157e-01 -2.789971100444788910e+00 3.821488324560718297e+00 3.173071169987795592e+00 4.380578671538387425e+00 1.320680098274230885e-01 7.584220263350522906e-01 2.444891830041180658e-01 2.963626814163361489e-01 1.023529553496357464e-01 9.093389697782443548e-01 2.331168203404764827e-01 -2.277802763501244332e+00 3.736273528891120854e+00 1.043104757631734492e+00 4.420939986012220047e+00 1.881705228235377447e-01 6.881877867028585172e-01 5.257394446997148973e-01 1.046511091049918407e-01 1.440138031853718803e-01 5.420546029697012047e-01 2.612954021969741691e-01 -1.445185413091655935e+00 5.446131402928875431e+00 4.614166328545578288e+00 4.366112603581928653e+00 1.751955375850567931e-01 9.103477093593339564e-01 1.537797352943242601e-01 1.648662392221105777e-01 1.077593908087560587e-01 1.726824370377555429e-01 1.697705186262908894e-01 -2.503904094782774870e+00 5.308203041430967772e+00 1.127387926629334736e+00 4.410319297960538343e+00 1.588913161735541202e-01 2.468062751863450699e-01 2.499673878879351274e-01 1.966177122396820520e-01 1.418913968635611422e-01 1.157313463186411262e-01 3.875636635350023784e-01 -2.191942686833383558e+00 4.140418607326902922e+00 3.220672494509247308e+00 3.512008542424495783e+00 1.293905632530447658e-01 3.818159875907852774e-01 6.730207022378367210e-01 1.092831439174243580e-01 1.076049641357224029e-01 7.031927479371935519e-01 3.993697753501425085e-01 -1.733531581222282014e+00 5.351289056110266174e+00 4.025646660396158261e+00 4.164626140343838046e+00 1.561511082411886076e-01 1.150340832561344007e-01 2.906037014628750081e-01 1.766299063336450037e-01 1.017717137518988763e-01 1.111961229259720019e-01 3.400339662449412548e-01 -2.770757095901468237e+00 5.911224463936149753e+00 1.674480973101640124e+00 4.326551455767974730e+00 1.811395919602521998e-01 9.923076024453130195e-01 8.520447717197784376e-01 2.987801413842405829e-01 1.223267469720048795e-01 9.547387997066614229e-01 1.820822128023977804e-01 -8.473801195625749738e-01 4.962486664476073450e+00 4.807759861003544799e+00 4.382827841834843419e+00 1.378393741404134176e-01 6.170183234837044450e-01 3.805900747002105566e-01 1.650302915816475591e-01 1.304413606391701674e-01 4.416816924774480402e-01 3.565447380722039927e-01 -2.087983956398438146e+00 5.630505782519511726e+00 4.160628326797450427e+00 3.603899661390382203e+00 1.417860197298481395e-01 5.170553521611331860e-01 1.589193540420740791e-01 1.186808661778707280e-01 1.150480446170458471e-01 1.528798760308910376e-01 2.627766797452879555e-01 -3.021809396114133683e+00 4.852892778956038100e+00 2.537400705497479425e+00 4.455951541217746836e+00 1.912986466878008329e-01 9.529543515368407158e-01 4.683901605391345147e-01 2.799618155192841740e-01 1.407320691830590553e-01 1.171381842511401011e-01 3.412521969343612627e-01 -1.708052427899183989e+00 4.557119657840203786e+00 9.655886013774981347e-01 4.161779318940112660e+00 1.295939757624119393e-01 6.854347037509013196e-01 6.391502318955287754e-01 2.111642241412055587e-01 1.450110028851074873e-01 6.925669589541789684e-01 2.041459538935380957e-01 -1.785345327944913851e+00 5.431830904524882264e+00 3.422806870531978518e+00 4.379029381267897314e+00 1.470600632735247493e-01 7.489670283464311407e-01 6.570319352526958756e-01 1.121670320689629463e-01 1.186553457650581095e-01 5.329862024092110184e-01 1.986824381460196021e-01 -2.410971477857112077e+00 4.051117758257211321e+00 3.012708965883309276e+00 3.819334390382059130e+00 1.969235176226303008e-01 2.481424982489854325e-01 6.206099389819841328e-01 1.661702057985455228e-01 1.159283498105546373e-01 5.694899575154781513e-01 2.858797721014861848e-01 -2.898473572056712300e+00 5.011335902190531044e+00 5.040373372986087119e+00 3.971262134775193076e+00 1.302907361723229518e-01 6.508695030106224078e-01 5.295178663215407422e-01 1.201178855726847128e-01 1.050372615897287865e-01 2.859426434485617952e-01 2.454370516897691201e-01 -3.160753931969228603e+00 5.827742910340576898e+00 2.793330643751156916e+00 4.428740677841951801e+00 1.250064673500151380e-01 1.434731003249847814e-01 1.987739966293630145e-01 2.264088071070239627e-01 1.393433206558855608e-01 9.063737636579350943e-01 2.673758737864359025e-01 -2.307736807648252508e+00 5.132486113254802973e+00 2.132483240387810230e+00 3.793845547443658983e+00 1.932478807154442424e-01 6.018068581993846200e-01 2.748625129831397951e-01 1.786148680193781479e-01 1.479799847862941498e-01 8.773951226168468231e-01 3.732156000123419970e-01 -2.455766427280201114e+00 4.964259993590024678e+00 1.351964434188545283e+00 4.096656578521244541e+00 1.927813987035055243e-01 6.443066676729810593e-01 2.490736353816144499e-01 2.688534768332231373e-01 1.054352638370951584e-01 8.908431299137288262e-01 1.350069701097728614e-01 -2.327787393985911280e+00 5.714141200673527266e+00 4.434080715290178887e+00 3.731435070060639347e+00 1.397030118906471552e-01 6.232284417742751659e-01 6.739205749185258609e-01 2.054819658536984894e-01 1.067556969944748052e-01 3.683263343018055025e-01 2.459839164685775625e-01 -1.692173768789795307e+00 5.187008589792659663e+00 2.486782105512096663e+00 3.840936857087178691e+00 1.903398449956468785e-01 5.623259119494379288e-01 2.761546699877288069e-01 1.447762925470509054e-01 1.125559677953430898e-01 2.389007483028589840e-01 2.408306244949483255e-01 -2.351702853168410545e+00 5.386574538243238841e+00 3.564646492101816833e+00 4.388505343969567818e+00 1.351078705392585455e-01 5.004259504419356075e-01 9.409467809596133714e-01 1.291641597929404084e-01 1.086465531689311537e-01 9.500155898578784841e-01 2.393220823918902895e-01 -2.943262832219875058e+00 3.754494411860191505e+00 4.873924210818256775e+00 3.718515384883803510e+00 1.300464327596725644e-01 4.828144519180117555e-01 6.144208908615218512e-01 1.710550340761242682e-01 1.473246512450313572e-01 8.400866963447511937e-01 1.511904844514859736e-01 -1.059159744612571785e+00 5.170762664221779659e+00 4.220306173443693076e+00 3.621416272629267130e+00 1.499066527360888024e-01 4.910329132735058444e-01 1.232405393224423745e-01 2.474400736252852506e-01 1.296570367142249047e-01 9.203228324732820598e-01 3.953869664422000607e-01 -1.236690057070890303e+00 4.109878758522699016e+00 2.264161634223513797e+00 4.014298416578269801e+00 1.423240028133380963e-01 8.998252022397776884e-01 9.548847620335675357e-01 2.978315377063736058e-01 1.202806790384973457e-01 4.601870688733656900e-01 3.156530774745878731e-01 -2.171375100883843778e+00 5.752166851385455359e+00 3.807393834625586670e+00 4.437698123697781938e+00 1.877200396754553358e-01 3.054747520424083707e-01 1.555799474772622537e-01 2.357679678801390122e-01 1.173256926345432882e-01 4.254933633122536252e-01 2.428031332062835224e-01 -2.762304690824331388e+00 4.975903563522094508e+00 1.920892621931844957e+00 4.051341335850332293e+00 1.157251812037864702e-01 3.220764484406943295e-01 1.764571306661085748e-01 2.367132717663183450e-01 1.496776087078891260e-01 8.296605186558615452e-01 2.307454753947730808e-01 -2.500666446816404598e+00 5.575938133537102104e+00 2.783936086397034160e+00 3.925902486347451426e+00 1.719039301772541384e-01 4.535366537945160204e-01 1.087237616771676157e-01 1.048568355628537174e-01 1.245548555978989863e-01 1.274815266548393056e-01 1.745291757728075488e-01 -3.177915932120426667e+00 5.881539321106767915e+00 2.471456890927935302e+00 3.760200409350461292e+00 1.834393867081710316e-01 7.625883957496863985e-01 5.082464804210362619e-01 2.755837433744305898e-01 1.391111945384417015e-01 5.488149365452644757e-01 1.835306795315757022e-01 -1.577340507144948223e+00 5.037320252315690361e+00 2.911048022965212034e+00 4.383345324593094894e+00 1.533525149104873753e-01 6.526568382210834462e-01 4.897740143747081332e-01 2.555712831623248582e-01 1.027978389020105521e-01 2.975291208149488109e-01 2.010017007797380018e-01 -8.995184008190381109e-01 3.761379336464135470e+00 4.921909386020883126e+00 4.247479814119794916e+00 1.683713320415876624e-01 9.846490921017110320e-01 8.977269335509630022e-01 2.241949975947759022e-01 1.472854791066348645e-01 4.810328965942193280e-01 2.789173435594376471e-01 -9.352245027503214292e-01 4.423209623333752560e+00 4.105898631195509019e+00 4.050056237483047994e+00 1.849938717154705758e-01 5.020102077372511351e-01 8.479678489154213183e-01 1.798583957969019098e-01 1.371159781163689972e-01 7.510257613856329284e-01 3.766820927097591643e-01 -1.874109526497125255e+00 4.410298191558023717e+00 5.322194863581128921e+00 4.328364672577898808e+00 1.659594343056576271e-01 6.979215249475184679e-01 1.752754648581263675e-01 1.109554767707573858e-01 1.206646372353770841e-01 3.882234939843580701e-01 1.593559805376747185e-01 -2.253766858528844175e+00 5.839636174959348836e+00 4.264203641557539726e+00 4.099431080585761222e+00 1.465974376113929334e-01 7.062563193443852638e-01 6.217861473273271766e-01 1.327322283201362030e-01 1.072697737020465447e-01 5.364761533350398404e-01 1.122834795965610977e-01 -9.663830440215023243e-01 4.195115297056904780e+00 9.716876565973437962e-01 4.097634612860622916e+00 1.898242488130382488e-01 7.511304070024117374e-01 6.647139818730076755e-01 2.558679076336164426e-01 1.263644590896085829e-01 3.691265120055207127e-01 1.034304343378955465e-01 -2.699820378451453173e+00 4.014349429234514766e+00 1.916054052586099843e+00 3.628224961918544267e+00 1.012640186145370436e-01 9.049369418923081110e-01 6.702797993998134141e-01 2.983668171575991623e-01 1.161046151400412507e-01 4.118346841347763077e-01 3.807408348624184979e-01 -1.993856781174569770e+00 4.280831326375157175e+00 9.740166429490331179e-01 4.229041925409292801e+00 1.776994266554344781e-01 3.430193407370028535e-01 9.818186000060926677e-01 2.478197283362441050e-01 1.003894623403770725e-01 3.242885501643799628e-01 3.485451287128131792e-01 -2.495381105628612595e+00 4.478950606104569410e+00 4.348018597099644111e+00 3.639894356873834891e+00 1.255117930165477458e-01 1.250448664574171365e-01 8.422836223280358858e-01 2.895562882483849743e-01 1.077081628863285345e-01 8.201921732856650715e-01 2.343067969258570971e-01 -1.021950821426111489e+00 4.989696755587449850e+00 1.026536022141200322e+00 3.893696622548532105e+00 1.519120703571685549e-01 4.686885013451844717e-01 4.214487685882110091e-01 2.129365632525390128e-01 1.487707744028719248e-01 6.462205092459223366e-01 3.693823730222527413e-01 -2.974561820171858884e+00 5.674840012058222527e+00 4.521202073303046021e+00 3.921041776606421614e+00 1.545446802829783528e-01 1.945830298888089893e-01 8.490652757681136364e-01 2.781667586682078364e-01 1.308774309910754607e-01 3.482226777172610088e-01 2.812281654066188796e-01 -9.567941888937961936e-01 4.167253404153235863e+00 1.594230398289649298e+00 3.825762940769587228e+00 1.783177081191300029e-01 7.809955439880672534e-01 6.941953941657315053e-01 2.735302524145447611e-01 1.051043440937786816e-01 5.320922957661859964e-01 3.451384132881845646e-01 -9.258806339844907196e-01 5.157248137034418534e+00 3.585695225898615668e+00 3.604934785710636191e+00 1.028251170476603277e-01 8.114767775335226530e-01 2.840017392379393657e-01 2.993858491726275606e-01 1.212582101033599369e-01 1.729907123543678038e-01 2.950262569400477486e-01 -1.696928893607894118e+00 5.268388412747802008e+00 4.125259168980949909e+00 4.047858241908131482e+00 1.029820028241581892e-01 8.037663538368229332e-01 6.795271855503437486e-01 1.707505750438184644e-01 1.271186600135499611e-01 5.237782866855592578e-01 2.289178086687698732e-01 -1.472634727155702095e+00 4.088504633606440564e+00 2.644430685562757510e+00 3.636533643922153392e+00 1.914250157241631500e-01 3.065055439117020386e-01 2.655312850753525078e-01 2.140970015031373741e-01 1.181327222963030332e-01 1.620011403726688282e-01 2.267641016116869468e-01 -2.022130532369350142e+00 4.315556008498606211e+00 4.692392106214893666e+00 4.073145746276981782e+00 1.111039350196795367e-01 7.266467175674525825e-01 8.336347344265478965e-01 1.020165062144478274e-01 1.068337524617516271e-01 3.714970940315774905e-01 1.715327835995421601e-01 -1.061538919735302455e+00 5.105177535535757372e+00 5.292299153867495498e+00 4.056509022246371998e+00 1.036711699013963400e-01 1.109887873515949391e-01 3.793177963401167530e-01 2.083820115202534295e-01 1.431963138269273239e-01 9.616065942174623071e-01 2.925194579251351179e-01 -1.803097360879757582e+00 4.649000142555531845e+00 1.536511581286446937e+00 4.108076999132530993e+00 1.482138565838787003e-01 9.657903946268733275e-01 5.378007222350685845e-01 2.901313815035727606e-01 1.491647975049292252e-01 8.460487433566626914e-01 1.794679099706578129e-01 -1.913787030991843663e+00 5.444874481991510251e+00 5.080328420594098837e+00 3.610353660024764100e+00 1.800246037274628175e-01 4.448174523389185619e-01 7.653888663155375971e-01 2.950827526269759193e-01 1.153149050252366553e-01 8.427459849308732709e-01 1.230073750698070928e-01 -2.765333836963596248e+00 3.922640397962140479e+00 1.335115865946412628e+00 4.330747938541026798e+00 1.254326988283371025e-01 8.777954506625590403e-01 5.095836066317543933e-01 1.139950174648744069e-01 1.319543665990272896e-01 6.526761281949662319e-01 3.977315956602609504e-01 -1.522005779021380345e+00 5.919996369490499788e+00 4.260409137173627236e+00 3.567212221419316265e+00 1.253454691158087941e-01 7.524932503566228448e-01 1.957979369421095628e-01 1.012181476747078257e-01 1.141035411476159639e-01 5.338995558373457184e-01 3.815562253521387337e-01 -8.145638397476109294e-01 3.734763903421531861e+00 1.737807821246880380e+00 4.163315327590415116e+00 1.063176549285640704e-01 9.584276171663584920e-01 3.402187873674151763e-01 1.051915471400531876e-01 1.409116812388620243e-01 1.330638724105800141e-01 1.008635835511228485e-01 -2.436028775857348450e+00 5.914999211532960821e+00 4.782206300643458974e+00 4.031784394777856662e+00 1.688698183247256401e-01 9.321420714717398859e-01 5.163503928134268728e-01 1.392531847561328529e-01 1.347143387168641127e-01 2.320187755330890278e-01 1.996977333077855077e-01 -1.662771835338802795e+00 4.069308405277737961e+00 3.891407840849547384e+00 3.729929528439658970e+00 1.224378416396076918e-01 4.071021984484911593e-01 7.361720216357764413e-01 2.049882846363697275e-01 1.441148240248990020e-01 9.551726087780343377e-01 2.146942068857663477e-01 -2.156530337449474644e+00 4.730173508612885769e+00 5.425495227821130584e+00 4.299742704042810892e+00 1.334001803997868774e-01 5.762423892047137119e-01 7.459803578682863145e-01 2.445421846317764880e-01 1.190748801145366520e-01 1.476262582077222385e-01 1.855698727602325127e-01 -1.746904375453192770e+00 4.133852829127494743e+00 5.299877838119730455e+00 4.151282556261148393e+00 1.535177186461039178e-01 8.166006144977510095e-01 5.023281600037711181e-01 2.424697306222309834e-01 1.000293972182440955e-01 5.043643314386921928e-01 3.919566550100477276e-01 -1.841656516897133944e+00 5.996539801065312147e+00 4.662758787928713566e+00 4.237847573199759132e+00 1.633687890598068404e-01 4.124181462205694926e-01 1.193994173312193652e-01 2.624712843033357723e-01 1.198974927514697697e-01 7.517716385270081236e-01 2.158927873773032469e-01 -2.474500124307255966e+00 4.260390334275265367e+00 2.065219858116251750e+00 4.262927244190111153e+00 1.345912406603676226e-01 3.237697336867275122e-01 7.960822932386510953e-01 1.920193272498479931e-01 1.416671107423116416e-01 6.565184439948320572e-01 1.921766159033805876e-01 -2.619215354464291323e+00 5.522421216430496216e+00 2.572456774302604110e+00 4.107732995657274344e+00 1.860456248734785878e-01 5.801090455044284333e-01 4.232604336813395873e-01 1.735010072338220855e-01 1.114385497547479148e-01 2.584800698638310967e-01 2.295544524481222259e-01 -8.299640494245716926e-01 4.951290460429862428e+00 2.364797137027307983e+00 3.545552761320501123e+00 1.040722342199882355e-01 2.672625132541825987e-01 8.001459139694514500e-01 1.184761960244955226e-01 1.401653543527040524e-01 3.362727198194719325e-01 2.456113831625112431e-01 -1.016366951891882975e+00 4.547867914945209478e+00 3.917732676576325623e+00 3.704993584325545708e+00 1.158101942095814130e-01 6.830606347078213014e-01 2.601556283367331135e-01 1.723842745756534178e-01 1.205004602654997231e-01 3.740886257700034578e-01 1.867916020589513726e-01 -2.804304258023215368e+00 5.461445600051064275e+00 3.135489772368420525e+00 4.329960677013015236e+00 1.658412700230856573e-01 2.988168621565940875e-01 5.402087789166876153e-01 2.949464258861607124e-01 1.413239264553526053e-01 1.791661053772984902e-01 2.602308302395477391e-01 -1.946040525705868607e+00 3.846059110615589471e+00 3.044150354216097476e+00 3.586335054786736976e+00 1.770679147512919938e-01 2.209683875903656058e-01 6.715991897749390427e-01 2.089328654794271045e-01 1.382122697128951860e-01 6.625577886469863342e-01 3.618973727656338291e-01 -2.577553049901058380e+00 3.609105757045709240e+00 5.473375300346449812e+00 3.692221047241351251e+00 1.050183606507871098e-01 3.397262969051459969e-01 9.719078943203929288e-01 1.015847917480428575e-01 1.261255034460873337e-01 3.972595150957728416e-01 1.616309621713570288e-01 -1.527242613442294950e+00 4.941755001883598730e+00 5.396947154578004557e+00 3.722453173852119157e+00 1.048894992299990170e-01 6.583462250744963606e-01 8.984693793071015788e-01 1.473847262111272205e-01 1.217438117320240598e-01 3.995683970418375530e-01 3.539354800479455054e-01 -1.952811671387824299e+00 5.854894094206079203e+00 1.323997244525099815e+00 3.525471855475367455e+00 1.971968172604451341e-01 3.918066716320748322e-01 3.967942115202687248e-01 2.308716772211218127e-01 1.145387953615248922e-01 9.787871684710126585e-01 3.114369736692830792e-01 -3.119457697675941610e+00 5.924237414858859907e+00 5.412327950277370014e+00 4.086531264081811443e+00 1.788331806578745131e-01 9.553615422473555885e-01 4.011991320605073907e-01 2.898728458149891773e-01 1.280780713910431301e-01 4.628679665818021816e-01 3.660816712163393882e-01 -3.039763724732843286e+00 3.831650703666157121e+00 4.113246743374361358e+00 3.887572898099769247e+00 1.547448471248559498e-01 4.955760323510245424e-01 2.989461828332624083e-01 2.904703136927329621e-01 1.021904909776723963e-01 1.049645712910820539e-01 2.608617673840748497e-01 -1.957715646792369091e+00 3.792674492674506403e+00 1.932319029366972085e+00 3.771486383883048354e+00 1.637706175917941209e-01 3.861678955872305252e-01 7.069935026014857460e-01 2.843229139144772821e-01 1.389413571719356755e-01 1.016661328749756676e-01 3.034077132734380733e-01 -2.980728340703539203e+00 4.058854321898410333e+00 4.559366751187993394e+00 4.018014666799475165e+00 1.749272632229348923e-01 8.599385370205556711e-01 1.432155484499713083e-01 2.302263724602024164e-01 1.109650280890594198e-01 5.836007222313484011e-01 3.511631992014412340e-01 -2.176473304648087748e+00 4.358325238256561818e+00 3.315446629163600001e+00 3.978800598046476900e+00 1.360265318947859181e-01 2.503946373092290623e-01 6.299317081259228068e-01 2.773527415787812034e-01 1.492534657187616354e-01 5.733011699265578853e-01 1.641656014521078732e-01 -3.184367447904436155e+00 5.215103571642668356e+00 9.234614176029718458e-01 3.818287784043511657e+00 1.956719312122565946e-01 1.858518235822316234e-01 7.389292495537577166e-01 2.043390036407596866e-01 1.043780786054877285e-01 3.600517749201097573e-01 1.083586252271957068e-01 -2.007333882972610617e+00 5.562570199415963756e+00 1.227164273250450410e+00 4.401906130464947609e+00 1.498553935577645602e-01 3.197746289670713171e-01 4.309939974498492310e-01 2.891789897679299948e-01 1.099820153275080648e-01 8.697521050779150054e-01 1.725919476034233069e-01 -2.883693425429494361e+00 4.082238453201289197e+00 2.605521524531221544e+00 4.446819049617763753e+00 1.845674171969939603e-01 2.958425849101212757e-01 9.403776040487842325e-01 1.913337596494068815e-01 1.111099763786475986e-01 3.513180693891264639e-01 2.364539253565915988e-01 -1.102690185894579677e+00 5.321785737076888623e+00 4.455406051289640068e+00 4.008906393381014510e+00 1.094615874428358365e-01 3.830001570221285290e-01 6.081141906262619301e-01 1.189001683643937102e-01 1.361587076881618230e-01 8.485377549847763490e-01 3.808890867474276076e-01 -1.290317962736942770e+00 4.118937690956850695e+00 4.006925679703460474e+00 3.641205960083195414e+00 1.109774456681904831e-01 5.484050645261975276e-01 5.292948734292938218e-01 2.565494126246580797e-01 1.233771839235994622e-01 9.807247373737735252e-01 2.735450417469779683e-01 -2.216535312150095471e+00 4.818944090080392151e+00 1.709944430354412903e+00 4.472855469756813918e+00 1.317550308131420767e-01 4.313303313669532013e-01 5.087714315311219204e-01 1.244590723671995525e-01 1.024422429049872685e-01 1.674215482658881204e-01 3.625625985006206697e-01 -2.733612178082497124e+00 5.048625023328053629e+00 1.289240283505949991e+00 4.376102389483634170e+00 1.104246262287601615e-01 5.481316598316239297e-01 7.491939142269248286e-01 1.556634457836144625e-01 1.116859238124609521e-01 8.639688821603768165e-01 1.983849205762792112e-01 -1.741960328237133870e+00 5.193256837940211312e+00 2.176027866540431788e+00 3.999936999100019541e+00 1.673746028268518482e-01 9.168128546892246877e-01 6.872920151272595701e-01 2.577815300484853078e-01 1.261986497260248197e-01 5.795953769735503469e-01 3.330691411117506218e-01 -9.804027371020299642e-01 3.769701418993029129e+00 1.557924780369293716e+00 3.773086155277390219e+00 1.794095128238464842e-01 6.546441734550466629e-01 8.699627111368969379e-01 2.204256917088370238e-01 1.313312925115099339e-01 6.847562932730075769e-01 1.060829808156933396e-01 -1.826050146877647329e+00 4.327899998397299441e+00 2.746851908153706390e+00 4.197036155028460946e+00 1.022464143463636815e-01 1.596119353605011115e-01 1.343334093426840070e-01 2.435997840852632546e-01 1.419387420517855547e-01 4.906107650610636028e-01 2.841718051488212327e-01 -9.737237894566515006e-01 3.582835581812263470e+00 4.416056533216623947e+00 4.256672244385622861e+00 1.756422797826529547e-01 3.210484632939590854e-01 5.874670029050547138e-01 2.406350062759670949e-01 1.034805975515265819e-01 7.782834267361157243e-01 1.602227368371955118e-01 -2.855735454727016176e+00 4.527255606264230181e+00 2.510782376374154801e+00 3.994090995962065183e+00 1.346717788569092300e-01 9.987507663064941754e-01 5.490763135334822964e-01 2.678902309888977484e-01 1.193518292567518624e-01 2.406829538540212476e-01 1.946955923590269477e-01 -2.208633234383194033e+00 4.286214101597979109e+00 2.833979732999059031e+00 3.714896128855467161e+00 1.617896246773945501e-01 9.082623954320736548e-01 4.435331002032780745e-01 2.600479309423221475e-01 1.319171920678590959e-01 7.658199935259301094e-01 2.216918015472674752e-01 -2.368750243880606732e+00 5.033165718770938213e+00 1.573136617438740448e+00 3.624060600663230769e+00 1.714428624427522529e-01 2.841640842225220398e-01 9.603384506453004343e-01 1.183849905914338557e-01 1.424599350753594784e-01 2.691413362118435515e-01 2.719170324966531105e-01 -1.935482850509812280e+00 3.510188723610340400e+00 3.770527275419290447e+00 4.081307330200611538e+00 1.526675563460981044e-01 7.226024052653968743e-01 3.313979123209006561e-01 2.817463474884114305e-01 1.444410627625064003e-01 3.103103107683364836e-01 3.543949800744616851e-01 -1.312645520679854627e+00 4.992197162589716797e+00 5.267855982465056819e+00 3.812906643219596603e+00 1.553311549662078905e-01 8.753790435241856072e-01 6.585301700058528995e-01 1.084469540547329386e-01 1.412928272043193767e-01 5.521145839534163935e-01 3.021374518138310594e-01 -2.295156892605138665e+00 5.218668854231950149e+00 4.168167277857982356e+00 4.066385373745179166e+00 1.375400277533139759e-01 5.231931361430132155e-01 4.424361729950297972e-01 1.566707384481081100e-01 1.075302945181850212e-01 8.015693379497614846e-01 1.515256067157206843e-01 -2.127224222682223775e+00 5.178428090401789419e+00 4.327775411049859855e+00 4.196692982301021502e+00 1.661118779703558146e-01 6.847734934973939147e-01 6.766284040518152354e-01 2.177241224071480852e-01 1.428093018414010040e-01 5.433668598904803915e-01 2.450812425630775893e-01 -1.675355341145215560e+00 3.600533502119052542e+00 2.124567663554319363e+00 3.813772818523079700e+00 1.362248241277330962e-01 6.968657702248106656e-01 3.390350776511401043e-01 2.165222379160751665e-01 1.325050138788909371e-01 9.781615236680840653e-01 3.840964332981294804e-01 -2.280005323295173802e+00 5.297662617018712439e+00 2.393352220315807521e+00 3.711455883524525490e+00 1.338761606485439348e-01 9.473017080257620792e-01 2.216186542355748634e-01 2.648816989018182300e-01 1.295269940559005406e-01 1.060815957700197432e-01 3.929609871453390024e-01 -8.328704100212553918e-01 3.814496017416028728e+00 4.192022855470622034e+00 3.926121972687606654e+00 1.265327637446191644e-01 5.549419626119660442e-01 5.463255956937360658e-01 2.985044981613577120e-01 1.463838916942011570e-01 7.343017553901572958e-01 3.970356240543929660e-01 -1.624523607719749130e+00 4.543158226161390978e+00 1.644781919757555055e+00 4.351999026783033742e+00 1.504092497903491699e-01 5.472776434239161603e-01 3.217268836796941534e-01 1.155545821628844172e-01 1.229281307635185921e-01 3.068611425597612685e-01 3.675866944634164080e-01 -1.150817227378067686e+00 4.384630736662955997e+00 2.267018990651120447e+00 3.820136127176322560e+00 1.531352748752173587e-01 7.859969418351366865e-01 2.591565810523264179e-01 1.215242871374166006e-01 1.273223414953735810e-01 6.833688700829722018e-01 3.127236180109325137e-01 -9.709637487363435016e-01 5.935976192169290400e+00 4.854899026463806777e+00 4.000862106067231139e+00 1.143731179392616093e-01 5.790891779379785387e-01 8.610075870875895099e-01 2.919226585475590552e-01 1.314987008857695649e-01 7.614090941117639399e-01 3.987077838066646063e-01 -1.031613759664316676e+00 4.733845651386293873e+00 2.647330132996446928e+00 3.503444518932877116e+00 1.853412707183552666e-01 7.316739941692236293e-01 9.133731874050913246e-01 1.696749235514961041e-01 1.451096442984646795e-01 8.266568313116944289e-01 1.015580538571231872e-01 -1.547305488947631869e+00 3.970034907340433072e+00 1.999355433904477231e+00 4.405545243583416593e+00 1.846147682761908604e-01 2.852212518186940660e-01 7.435884976829726378e-01 1.672299545032678580e-01 1.060682147862584551e-01 3.229273413469725407e-01 3.563601582737451201e-01 -2.596819452348238411e+00 5.594505764265185199e+00 3.575143597669141471e+00 4.450198363119555189e+00 1.128464456163183055e-01 8.041845674589235271e-01 2.507442441119786536e-01 2.358700544821617229e-01 1.220848796013535298e-01 6.194424886744003267e-01 1.689460552043823283e-01 -1.347947331615239719e+00 5.704079449579300132e+00 8.929866527902114992e-01 3.642612220698506764e+00 1.752411358007735509e-01 2.964614703772395776e-01 8.715205651657210728e-01 2.073764484048222501e-01 1.236057416005282711e-01 3.751292362588308782e-01 1.018329444157527325e-01 -1.570755724526302410e+00 3.576603234490110417e+00 1.344174474525227758e+00 3.980777428994703104e+00 1.095483195127057718e-01 8.830552625042283887e-01 1.118753668164628595e-01 1.855959543760652419e-01 1.126068620073284732e-01 6.491790982400096333e-01 2.044355000507184217e-01 -8.700743807417332665e-01 4.806553089773586862e+00 4.214996207377750714e+00 4.048556691073978975e+00 1.315742263975201443e-01 5.122045085259007147e-01 3.331156442017217389e-01 2.687009208459713028e-01 1.339817455660098078e-01 1.949990519375434106e-01 3.996990598149049445e-01 -1.884157353937908841e+00 5.970815771897139967e+00 3.809028775001084277e+00 4.022362404198540631e+00 1.630656404459892572e-01 6.774787619004062345e-01 6.053162699207756958e-01 1.254329380840067953e-01 1.132335937071007881e-01 9.519126659610464003e-01 3.788536816219221226e-01 -1.522882329848738614e+00 4.395850529178821020e+00 3.247943933684751983e+00 3.856809368240278424e+00 1.398521440676875338e-01 1.682137715112759224e-01 9.883190030309130236e-01 1.957011971251377824e-01 1.085305087646760286e-01 4.717613125986271916e-01 2.432296932374080622e-01 -8.556682878213537347e-01 5.820698888907765323e+00 2.523902079080953431e+00 3.828527876419304476e+00 1.839288417699920519e-01 6.891972855353303284e-01 3.059500445516806222e-01 2.036752670093721629e-01 1.093694367658867850e-01 1.310742836984355175e-01 3.256454754661505246e-01 -1.433765584418412509e+00 4.043963988962172351e+00 3.180332094818583144e+00 3.754724205498028766e+00 1.408023558628276328e-01 8.511807328423293129e-01 8.271182590518233457e-01 2.737333044346734745e-01 1.421484551148032294e-01 1.652893169179735500e-01 2.007204865796061166e-01 -1.131932826653182733e+00 4.057283231814014179e+00 1.259041680218564219e+00 3.986913223023837549e+00 1.740795699480806036e-01 7.846984319590388779e-01 9.014057906694168398e-01 1.876035772627879794e-01 1.247529689809602493e-01 9.800511135332655721e-01 2.830842693133330812e-01 -1.813226494663519484e+00 4.239753662303674453e+00 1.954217983489923149e+00 4.052353887946582134e+00 1.010352899348195138e-01 1.341279534535162188e-01 1.704238314322296111e-01 1.436638451100258063e-01 1.071637363334274756e-01 4.457200745748262083e-01 1.412938307048718367e-01 -9.909806256111050038e-01 4.268140451911059507e+00 2.256734716949801545e+00 4.418183450648321298e+00 1.667080773644269431e-01 6.597866093864421799e-01 4.049699375923430100e-01 1.591129677614966376e-01 1.474887810671017541e-01 9.694348400839326585e-01 1.389962372904609555e-01 -2.319954856684669942e+00 5.114010290329236597e+00 2.525234206990630170e+00 4.462246456368123226e+00 1.352349894952274700e-01 2.642377418503860653e-01 3.549079707591102917e-01 2.740863392530035192e-01 1.312396682316754326e-01 9.578440737054126908e-01 3.734659996914558855e-01 -2.210145272155428664e+00 4.333643341710992303e+00 1.472941974297345080e+00 4.245085981488180948e+00 1.549706130574836638e-01 9.058232144316378243e-01 1.220612475906656669e-01 1.671836291292104759e-01 1.333005940692753577e-01 5.440051982336275849e-01 3.175181055865986535e-01 -2.991772767988538639e+00 4.569324968347257432e+00 1.449418206964396383e+00 3.797429789105028153e+00 1.442505533516755256e-01 4.491873595408438780e-01 7.312200753492387184e-01 2.652930151983398654e-01 1.177617308783568822e-01 5.626192531274096797e-01 1.332601448570159552e-01 -2.925950757494612198e+00 3.751014930091200572e+00 4.303594021048240847e+00 4.218370806211515500e+00 1.649072457926059332e-01 2.437874454165419869e-01 2.728936408376260170e-01 2.939243430993212503e-01 1.185394187975060687e-01 4.514718028154537377e-01 2.017024020212074276e-01 -2.663638528030932484e+00 5.239216532783471436e+00 5.491482257515168719e+00 4.106964298001964053e+00 1.856701938403502727e-01 3.365610891132270188e-01 4.638148016311752775e-01 2.627403067455290619e-01 1.349837317428211891e-01 1.974961000482382545e-01 1.175014353232474856e-01 -3.045490452217043398e+00 5.900825517368081030e+00 1.646448001667156991e+00 4.291441877268950655e+00 1.013516892736121972e-01 3.840273122941159079e-01 6.433148959030471348e-01 2.875779897940814456e-01 1.478132909936852313e-01 5.853909392312525162e-01 3.574690864436963489e-01 -1.882118788917218177e+00 5.555565906252587283e+00 4.499156677621087397e+00 3.634953232247606358e+00 1.802541072534692701e-01 2.876910265510628228e-01 8.179860309237215743e-01 1.532774873628543477e-01 1.285703234510148785e-01 9.089469494185857812e-01 3.417909930368001614e-01 -9.334722214141111252e-01 3.977698304503442195e+00 2.138013742781978976e+00 4.339036865213486749e+00 1.562583166874832175e-01 8.675749577977910354e-01 7.673135024784328850e-01 2.154575968324150548e-01 1.197167936410565153e-01 6.556873910278389062e-01 3.561580704956058829e-01 -2.794439360163829544e+00 3.881268973056351435e+00 4.381809781209377697e+00 3.680850882679441938e+00 1.895602883535461580e-01 1.369184550327781358e-01 1.812729656281430457e-01 2.046382291933953046e-01 1.194827491698900318e-01 1.248329324666547641e-01 3.440715888401850164e-01 -3.114168716923879643e+00 3.656268287961128571e+00 5.313808403298006411e+00 3.992797176746700316e+00 1.134098144273083530e-01 7.926941309086412701e-01 8.963401407103301910e-01 1.031587360298628075e-01 1.449004373093245035e-01 6.325999959198723710e-01 3.286568875476039153e-01 -2.173615120135894863e+00 5.149067825613615312e+00 2.716887290185088233e+00 4.459122847042409354e+00 1.590126527010709279e-01 7.103145054005716164e-01 8.083509616574667822e-01 1.841131328288179159e-01 1.103023915109176412e-01 2.385009807443753960e-01 2.955664987186635284e-01 -1.495818681192222055e+00 4.729885163655148439e+00 5.403193242242187999e+00 4.357829387746991578e+00 1.693028315412827833e-01 4.823553605597338256e-01 5.552171094771598536e-01 1.313576105032165930e-01 1.232966004085143397e-01 8.619698522097315463e-01 3.702970892360935018e-01 -1.026229874983930035e+00 4.719676443367318619e+00 3.274049463648649017e+00 3.533509086814613287e+00 1.469700443258296907e-01 9.004789666335691889e-01 9.741731383076449591e-01 2.369486182955383158e-01 1.397289376076838174e-01 2.023301446890348743e-01 3.892657481879933101e-01 -1.305133083915760883e+00 4.953161010265773712e+00 4.952298148260947386e+00 4.445647432866772775e+00 1.817583873760282298e-01 8.302229893991005527e-01 4.108764744932160706e-01 1.304597750885783669e-01 1.214432529238541614e-01 5.297879229540484181e-01 1.196332297562890945e-01 -8.822689008624489126e-01 4.377725279337482789e+00 1.241371672296729400e+00 4.183722670613167161e+00 1.823133607096991404e-01 7.681028300702875677e-01 9.186688123925350613e-01 1.325800057699478285e-01 1.336446975376576751e-01 2.544081292814893702e-01 3.435976338030969357e-01 -1.975946793741001350e+00 3.927014468223018362e+00 2.324741499381195453e+00 4.313549943496841621e+00 1.983031828604223112e-01 2.831292694563566359e-01 3.991070576017212712e-01 2.605017842755664725e-01 1.236822813711309088e-01 1.607508700545137170e-01 2.824003022162573928e-01 -2.882935661038687591e+00 3.864442936596413247e+00 2.621988816510073761e+00 3.502568970930485026e+00 1.793398854098622874e-01 9.235232375993651655e-01 1.628688669757965279e-01 1.170874946793544896e-01 1.475832885063484978e-01 1.639238283378195160e-01 2.376320000954761369e-01 -1.200906360821236696e+00 3.951475007895276725e+00 4.586549809050318949e+00 3.638764770963698325e+00 1.832667456561365704e-01 9.348312120700225103e-01 3.730847650748633226e-01 2.977362260247905512e-01 1.184099288401230521e-01 3.612162762868438293e-01 2.443407138488024322e-01 -2.388568201619197584e+00 4.003209088668356230e+00 3.237651490297218437e+00 4.223187059260158804e+00 1.023107186614435338e-01 7.488450666170637371e-01 8.370659458643099349e-01 2.441056572266597224e-01 1.359368597589777350e-01 7.851403298927642771e-01 3.514334431900912881e-01 -2.419669618453555771e+00 4.998593464330297387e+00 4.365299298121240845e+00 3.510806808440691373e+00 1.999309986481807300e-01 6.088099405922874352e-01 3.867920210390120017e-01 2.792747257594064281e-01 1.305838725527566357e-01 7.390934066692335103e-01 3.264689086409435226e-01 -1.181719227766797609e+00 4.306966017510607259e+00 4.448742403222337494e+00 3.778539864181331254e+00 1.589182979290587050e-01 6.905346309209423605e-01 7.530546922654038910e-01 1.943810379650185993e-01 1.094286822998903341e-01 8.984830080523971141e-01 1.878682298194381262e-01 -2.416149314655184899e+00 5.072926793892106545e+00 2.736458061257539320e+00 3.575651684333296387e+00 1.336230008545220005e-01 8.894606749646701838e-01 7.042342609273215537e-01 2.931206227010539900e-01 1.414950986569796787e-01 8.397263566395753998e-01 3.619262693997562508e-01 -2.517066596761744712e+00 5.507051201539482577e+00 3.633222062546988873e+00 3.905255341713275818e+00 1.851078877993240779e-01 5.372762966494294412e-01 6.069656567607120135e-01 2.231385264707434479e-01 1.369178795200031440e-01 2.108711457608160589e-01 1.149248442600934589e-01 -3.079425806747501326e+00 5.365138872509563228e+00 2.020970658096659545e+00 3.944587673209443146e+00 1.542796417887642713e-01 3.354057727720654580e-01 3.209074862670528994e-01 1.471274517452015318e-01 1.214959608005722891e-01 5.318700707793820870e-01 1.118975244623798132e-01 -2.820345710650095761e+00 3.995956964098403397e+00 5.338993438174576944e+00 4.122587921773638975e+00 1.400976284362910329e-01 9.450546427223818213e-01 7.026792652368251124e-01 2.670435871437844000e-01 1.276477939119324001e-01 3.761617431856939531e-01 3.666854000285578730e-01 -1.864434543217612150e+00 4.920956990607059822e+00 2.863503190442274970e+00 3.558775996715829226e+00 1.647484889432259680e-01 4.849735414677991407e-01 1.990260492429271888e-01 2.135023328170329859e-01 1.325653971034918555e-01 7.116411410338588928e-01 2.587258119899488173e-01 -1.625898752306741413e+00 4.418300508974588148e+00 2.895011591617362434e+00 3.505309137490275173e+00 1.410525027094091388e-01 7.022994725439528629e-01 5.529084822556801226e-01 1.694721969889139424e-01 1.345109502606995633e-01 4.367785201275384832e-01 1.204808773351087187e-01 -2.037305821712175558e+00 4.829143291477650202e+00 2.964807741278231212e+00 3.560002516226270508e+00 1.218660691463082091e-01 7.044407623913845340e-01 3.774068232023017888e-01 1.553453446587473308e-01 1.174739874319879196e-01 7.008481009269449391e-01 1.237778244116089499e-01 -1.192415572832543624e+00 4.866677464285790400e+00 1.946881365314064638e+00 3.973660587673259137e+00 1.394566037753011134e-01 2.409162234071668962e-01 7.038108812190534413e-01 1.989289754719791303e-01 1.130999785503490063e-01 7.684501844676053794e-01 2.942529592206603040e-01 -1.830839478088764682e+00 4.796417090695832997e+00 2.987865359516066910e+00 4.255998580048647284e+00 1.429692786648794067e-01 3.665374823210048039e-01 7.164488906210626507e-01 1.156164119329286949e-01 1.430664597574594632e-01 2.796085959860759029e-01 3.161354383825333292e-01 -2.262477980897609431e+00 5.044010364985036965e+00 4.961716174839231996e+00 4.187366339277603267e+00 1.332413312418058715e-01 4.229057656888226546e-01 8.200576869989232298e-01 1.464179641763000417e-01 1.058690862975905089e-01 5.501970341311412938e-01 1.537752377447040020e-01 -9.466342671034252421e-01 4.025411244687134626e+00 4.135945885856259885e+00 3.910901135139113194e+00 1.713143529314089808e-01 1.653552563299197919e-01 7.928591355129346319e-01 2.086248976471794803e-01 1.362010986005362523e-01 5.869544776086079718e-01 3.084962048043063398e-01 -1.578777156056215158e+00 5.209097915320810124e+00 1.373771106119276331e+00 3.954958842781677308e+00 1.781932847505598716e-01 2.810138731644047372e-01 3.147125911406734589e-01 1.151021528355605783e-01 1.285471889389382949e-01 4.132462601371962307e-01 1.967454952832987658e-01 -1.128606886974063528e+00 5.488276722224918913e+00 3.432377942506735558e+00 4.040825710860884712e+00 1.656521994215229276e-01 4.083731862150709047e-01 4.793314398436974155e-01 1.143139133256339951e-01 1.162041440489373634e-01 1.810788946763901563e-01 2.808126326066223144e-01 -3.100637664388391279e+00 4.304083106185623286e+00 5.066416788697518214e+00 3.661144644769014800e+00 1.353963898713522740e-01 1.961937308148088421e-01 1.953975607569149175e-01 2.100719716246401414e-01 1.168419264091552501e-01 9.359947498828166124e-01 1.409310845016815417e-01 -1.548926683671229210e+00 3.783013952265135149e+00 3.143420307183914630e+00 4.114031509432077627e+00 1.384941566854408779e-01 9.669899940887761725e-01 1.427665682589432383e-01 1.081958925377369957e-01 1.146571599252370621e-01 8.072379142128586205e-01 3.582359243755891542e-01 -9.611375693823830391e-01 3.714308124946584133e+00 4.529775504081723803e+00 3.643376589888748462e+00 1.947070910070668182e-01 1.812792839569110914e-01 5.943667176768868687e-01 2.170933088848755466e-01 1.088589883620550841e-01 7.137198196535461392e-01 1.973763884913750100e-01 -2.117052125176406285e+00 4.402302479409313740e+00 4.790427863917645190e+00 4.238371427172801909e+00 1.316661621302513407e-01 8.003921241133832298e-01 7.009643873617134036e-01 1.376505302142064513e-01 1.140644913116362624e-01 5.770860373305698454e-01 1.788480382289402426e-01 -1.012296933700501889e+00 3.865346765227090309e+00 2.676305670200611608e+00 3.616795041830280777e+00 1.219418385991125342e-01 1.068469536332308650e-01 5.311671499026073828e-01 1.296844550004324081e-01 1.054824925660080431e-01 2.071864332091959138e-01 2.262799236901816002e-01 -1.488124111086573720e+00 4.765744003573444409e+00 1.656434675353590347e+00 3.794725396417513608e+00 1.698863816239177815e-01 4.796375724592933931e-01 7.514569027255942890e-01 2.190320015643380525e-01 1.492399227801782524e-01 1.862595176415831888e-01 3.578148769153812747e-01 -3.173393230438236401e+00 3.639649907537549467e+00 5.138490588218513011e+00 3.537370613360825367e+00 1.054332092800295828e-01 5.881418786793364273e-01 2.113481450454579025e-01 2.864546587706163772e-01 1.449872434403589871e-01 7.958972456164434828e-01 3.032258118492202059e-01 -8.386531120152267427e-01 5.742529515287208675e+00 4.607045381590286759e+00 3.627532831863065077e+00 1.992868244804417155e-01 9.257389212783474486e-01 2.022948828756030715e-01 2.404103442484759323e-01 1.224106467919695296e-01 2.842997862049970736e-01 2.001496999697923718e-01 -2.522016210487588062e+00 5.536329773533974929e+00 2.294821634604288008e+00 3.570585976230306713e+00 1.862916277688176081e-01 1.416914523470244602e-01 7.614367252180606060e-01 2.503465922448969705e-01 1.059593226636413588e-01 3.305686063825924448e-01 3.369416864451941773e-01 -1.661183674057248094e+00 5.072203752062996784e+00 5.273850333547252411e+00 4.283665097245122233e+00 1.202417038467137322e-01 4.357614432934558968e-01 9.307773783956679869e-01 1.129714418050864755e-01 1.343418289507821717e-01 3.054843542727894157e-01 3.297146159040365565e-01 -2.775531316028425621e+00 5.483433459182062819e+00 3.121311715501927431e+00 3.739789457555795948e+00 1.287448386459683070e-01 8.409242667716351205e-01 7.711281919593230283e-01 2.916393469622958756e-01 1.116280988728023532e-01 6.732724594168167931e-01 2.483402560711626961e-01 -1.005020273725986790e+00 4.903574378064180728e+00 5.368776425237266281e+00 4.436422072950984230e+00 1.968043417278451390e-01 4.701784966308834024e-01 2.606333490162547895e-01 2.378902482081559355e-01 1.420724322139352291e-01 5.615377393285206908e-01 2.137319875151822424e-01 -2.694787645686655075e+00 5.550895601468543106e+00 2.735842316604330193e+00 4.034003691073063891e+00 1.445442067164926792e-01 5.071665015227385664e-01 6.493519863457760666e-01 1.961295997657080958e-01 1.167133308122504931e-01 5.867584171376113433e-01 1.931159448651527666e-01 -2.163360495427267161e+00 5.771525099407544879e+00 1.401405503054565793e+00 4.490842821778247895e+00 1.275576031841649249e-01 6.758232282162471849e-01 2.817338957452050208e-01 2.161150084821590045e-01 1.341158134478042108e-01 4.990534212824467852e-01 2.203150950851536782e-01 -1.153843270343669403e+00 5.477697261463038814e+00 4.073347163255299108e+00 3.885020060981761780e+00 1.049833971937048499e-01 8.367364257219154222e-01 9.436304412106705231e-01 1.662074992905596682e-01 1.049384209483589236e-01 6.980926250956348555e-01 2.404431940404433699e-01 -2.666336491039599910e+00 4.462427353028255439e+00 8.884964334325001767e-01 4.364234879270854961e+00 1.080323270177572237e-01 6.207681249526467715e-01 3.371649901875317656e-01 1.523511057481183595e-01 1.149010776234123399e-01 3.405372191764265977e-01 2.786801987046507723e-01 -1.370346688329123541e+00 5.653220482950352732e+00 4.040382047794986775e+00 3.884317364146715246e+00 1.475390958080409209e-01 1.493902264936815827e-01 2.297372767131070359e-01 2.879550381349239574e-01 1.231796685433836636e-01 1.623548776610658773e-01 2.815221851254243179e-01 -2.698025488126183369e+00 5.747681328165668901e+00 2.318131789745046412e+00 3.901575972096474221e+00 1.750007783630990743e-01 8.521171862142110642e-01 9.487541522356192081e-01 1.450440093975097211e-01 1.154801885110233739e-01 2.554462550513361685e-01 3.557605097939703365e-01 -3.065327944865395615e+00 3.945861176404866999e+00 1.695674717536834741e+00 4.220870344963525866e+00 1.543269956943550958e-01 4.763883156106071270e-01 8.940187398372428929e-01 2.672850409364345703e-01 1.065195816456453726e-01 3.435210965484939982e-01 3.837062655607739181e-01 -2.104560831250032127e+00 5.729792912957419659e+00 4.473013029376586402e+00 3.557672140828281648e+00 1.909882289582716108e-01 6.374755015729307583e-01 5.417770151703902304e-01 2.233558634323935532e-01 1.027002676907909362e-01 8.663665175369466009e-01 3.630770583106049942e-01 -3.059156532965277009e+00 5.635528509641781092e+00 4.896072921036081382e+00 3.629668851543055297e+00 1.615471075589891004e-01 2.081644208140598640e-01 8.092739356108770155e-01 2.771526121765460760e-01 1.334458709682559419e-01 3.277762657312733863e-01 3.913932519784832920e-01 -1.602063378060674115e+00 5.182517385279778566e+00 5.366796449319216400e+00 3.989395652730743258e+00 1.447560979989724883e-01 8.722989103063231164e-01 5.679872592631027839e-01 2.849137686939419156e-01 1.294113082586943464e-01 8.416639261631404523e-01 1.317538450236792336e-01 -2.715925787134643610e+00 4.153837392300604670e+00 4.429259084626746557e+00 4.451618640285103901e+00 1.106340288150224060e-01 9.463678868211631290e-01 4.672199459387930132e-01 2.222625899288682150e-01 1.437495078832993489e-01 9.173843563590208250e-01 3.965827078723854759e-01 -2.114999914350415899e+00 4.978454818585466235e+00 4.486528893323447065e+00 3.790916371652760741e+00 1.759552169952307843e-01 8.990654282021015575e-01 5.185365010502949179e-01 1.061296788392073198e-01 1.090570613289894991e-01 4.453409315234799770e-01 2.367994806755729098e-01 -2.085726768739847969e+00 5.651392804254351532e+00 1.080078704086157693e+00 3.876931923255324985e+00 1.902180960372331919e-01 7.446926545707670542e-01 6.167569917121362710e-01 2.618236612084302584e-01 1.405058169345361763e-01 4.105873170303057096e-01 1.976686670521574096e-01 -2.800153256912599531e+00 5.205130358800176715e+00 2.211146654429484215e+00 4.090902011721622600e+00 1.450746975218556445e-01 6.799134811542324464e-01 2.926024868274996749e-01 2.383956034462866580e-01 1.401360184449142732e-01 3.459702900251071522e-01 2.961752944937680043e-01 -1.730037452914146012e+00 4.889095755424248679e+00 2.368390615879175432e+00 3.743110734717908894e+00 1.978184084887723571e-01 7.297577675759900906e-01 4.278588461879788696e-01 2.026643083988301786e-01 1.243927046528761626e-01 3.261731228758424361e-01 1.180222610833252112e-01 -1.319907342208566092e+00 4.850894824324470278e+00 5.276811714543250709e+00 4.227121786495496636e+00 1.495891151956122711e-01 5.417350005213814601e-01 9.992722625105697754e-01 2.512462335665637259e-01 1.370214670043388705e-01 8.119227301907356864e-01 3.569902297705918048e-01 -1.585503694897598681e+00 4.701373367021496996e+00 1.179129171455704395e+00 4.488201831947662868e+00 1.309457865258147891e-01 3.498535866778355041e-01 5.239228544529507259e-01 1.605619898586277960e-01 1.350482031055939558e-01 6.820089183394770771e-01 1.462418779530834656e-01 -1.101891773044018974e+00 4.464827273627561155e+00 2.681164036568667974e+00 4.080733314689172886e+00 1.485852060041140954e-01 8.879035657087717137e-01 2.852967271739699218e-01 2.401040902130662513e-01 1.284062509306661271e-01 4.943882670378967337e-01 3.170778775696097007e-01 -2.476461191211221102e+00 4.763783635397800253e+00 2.330562750540233985e+00 3.883836516973588893e+00 1.160656514599397587e-01 3.272267697965892674e-01 1.692554698983374240e-01 1.570291339841460299e-01 1.134609153848441798e-01 3.947511210199419196e-01 2.030088916763713169e-01 -1.955233387338959794e+00 3.547294014521443106e+00 3.900633840198264757e+00 4.235944235012529369e+00 1.775195155286366511e-01 6.741393212492948761e-01 9.630545706406229423e-01 2.130155355445422227e-01 1.218355580223776102e-01 6.099493786097690551e-01 1.644113672969373385e-01 -3.068211712032725913e+00 4.946674507569021273e+00 3.875945823389892020e+00 4.126963814730437718e+00 1.820375719668777259e-01 8.392567046712109402e-01 6.509725236143034666e-01 2.832084765154542216e-01 1.293367295864835675e-01 2.938358812171534273e-01 2.818625257192565181e-01 -1.263095059535506159e+00 4.404059310519331305e+00 2.414609245676861526e+00 4.177619432558431711e+00 1.436266999140876632e-01 4.565053056252049712e-01 2.971113702818449775e-01 2.542566843092781692e-01 1.175643815065666453e-01 9.743735085983512567e-01 1.951575405875055069e-01 -2.421056441148685678e+00 4.323820525330002162e+00 4.280347041213545367e+00 4.340864465158005281e+00 1.524277047313470079e-01 9.179564428369401119e-01 1.612794623957166107e-01 2.623018608879798541e-01 1.022037973465611399e-01 3.867577568492043261e-01 1.425889967198113173e-01 -2.874086848418428097e+00 5.192249379000675624e+00 3.258615863709601435e+00 3.564227005962075978e+00 1.876373206138658434e-01 1.781264166363284440e-01 6.486560846879042552e-01 2.016438118664364010e-01 1.019694078414170452e-01 2.417604863612181632e-01 2.265613848670402775e-01 -3.073537832144433324e+00 4.251004295062795535e+00 4.749748301558828878e+00 4.224581135058523174e+00 1.933310796777729101e-01 5.116644862887432810e-01 9.252234685657015900e-01 2.761837049620995410e-01 1.079631211107577315e-01 8.314359486964504331e-01 1.958622353643281466e-01 -1.176195687997297235e+00 4.914996362723837997e+00 4.493647402670901236e+00 3.549244342172557687e+00 1.299587124221510681e-01 2.600144062458589200e-01 6.815514022683152318e-01 2.835394032402888120e-01 1.458271173703360457e-01 3.473495010814040551e-01 3.261299089759825964e-01 -8.095595633642310718e-01 5.382985536933321491e+00 4.268636787493846008e+00 3.915969818149400705e+00 1.785656036246508205e-01 6.041793593473624435e-01 1.267628330677220694e-01 1.801416893162103849e-01 1.350620724511926163e-01 1.441634425589887192e-01 2.058577634831218195e-01 -3.025237609884408485e+00 4.934861969696143547e+00 5.210496859528292113e+00 4.335379274018086981e+00 1.593821268519847456e-01 8.869513449143022754e-01 4.552592003836052337e-01 1.792947656204681994e-01 1.204780510994167692e-01 4.674270530073840746e-01 2.053526974106169023e-01 -2.094967442728583151e+00 4.769955502922425872e+00 1.053382963025056629e+00 4.072905459536384498e+00 1.286421064768930589e-01 7.738462967579914364e-01 9.176810124529956036e-01 1.226890990053214059e-01 1.493583120737090875e-01 1.588473192450789440e-01 1.897807340481420524e-01 -1.326606123849242369e+00 4.559380698573763269e+00 2.751671153234865663e+00 4.309875998250277895e+00 1.437684431654678852e-01 8.359367372836921106e-01 7.238988187966044485e-01 1.174106091216617770e-01 1.321425966032675481e-01 9.611588225129739094e-01 1.163993432386136451e-01 -1.943310388712095715e+00 3.844605064924455196e+00 5.162599561615922816e+00 3.700265333531436607e+00 1.180066259572708498e-01 7.954247347353292641e-01 3.297064014943310584e-01 2.278642800900579357e-01 1.167609797426265583e-01 5.355893992898776990e-01 3.029174843862946220e-01 -1.024901953646460084e+00 5.486655902299260035e+00 2.889106701862703908e+00 4.236845867826357193e+00 1.110075421129505524e-01 7.004909913181065484e-01 2.124080343401572590e-01 2.060878798548337332e-01 1.273713260379724932e-01 2.436576443355311927e-01 1.292288643666399672e-01 -2.344834160327638806e+00 5.862171343286655123e+00 3.404955258287615472e+00 3.697310550398634099e+00 1.624011152563449856e-01 5.029433941378775863e-01 4.374293909629348720e-01 1.978603709401098310e-01 1.352584637897153996e-01 7.372604573234649017e-01 3.013941109854736955e-01 -1.361778268349183918e+00 4.104282799381356206e+00 5.496358716561542401e+00 3.787039817575362122e+00 1.245300900314490478e-01 8.465387606957306410e-01 2.569460214542477194e-01 2.937200859782205242e-01 1.378639987667406586e-01 9.852522389820241866e-01 3.687729650869003839e-01 -2.792499067041747107e+00 5.864085571429459520e+00 4.228186750420438678e+00 3.594083095046196163e+00 1.492001102830144421e-01 2.065924031561656160e-01 4.595843799257839368e-01 1.530211417786931372e-01 1.006544968113858018e-01 5.561900764868419333e-01 3.584431105495528014e-01 -9.557856255536554269e-01 5.571802113858893790e+00 2.430216609383567317e+00 3.701694566890816773e+00 1.812498720090781057e-01 3.122001153532788509e-01 5.343825385421796526e-01 1.329401957660138744e-01 1.109177477444591303e-01 6.043546517145051977e-01 1.949444375029215082e-01 -2.360060123461758863e+00 3.528957415242747864e+00 1.501892422407142824e+00 3.938825383377877021e+00 1.689022205266289822e-01 1.474565173722351685e-01 1.973252028304614547e-01 1.099056789735717993e-01 1.105098642928661890e-01 4.566267726452958309e-01 1.458278506832417776e-01 -1.942391669034031265e+00 4.626715308034777152e+00 4.209272007490737266e+00 3.520595505069681330e+00 1.874375590365560673e-01 3.977778366954931588e-01 1.664595640223683892e-01 1.981253249181689768e-01 1.480651589362106946e-01 5.811221223286306969e-01 2.688516574306901719e-01 -1.184593553222209383e+00 4.096467269309988168e+00 3.603608983756325657e+00 3.927388936382691487e+00 1.132930971844016005e-01 9.964297342638693822e-01 1.483166076315076132e-01 2.373345388536894363e-01 1.467548826833726672e-01 8.708576682838837790e-01 2.467123912888084525e-01 -2.672216230505454426e+00 3.911821911609721703e+00 1.506903317522161778e+00 3.614753892427059245e+00 1.305499079398382001e-01 7.892161456207147374e-01 6.921746875915122388e-01 1.382530377376376407e-01 1.210945154448725553e-01 1.436203370183754269e-01 1.322789229511122100e-01 -1.844939665278747976e+00 4.495375053373665608e+00 4.330587189037515827e+00 3.534798546253541840e+00 1.852631848163400485e-01 2.395296788611356864e-01 9.790527313563923695e-01 2.123087571081193614e-01 1.462213546320834112e-01 2.639176372958613181e-01 1.043223594653940045e-01 -8.946535126018236861e-01 5.623964804864462153e+00 1.811390671419522702e+00 3.617873234354028078e+00 1.552861519726460027e-01 9.886218945851977802e-01 7.950110275001374127e-01 2.324066560261743020e-01 1.373797947418018139e-01 3.209552689331158781e-01 3.194123777385433072e-01 -1.463744269638071582e+00 5.152551023614337922e+00 1.244497214377658700e+00 3.596351590712393076e+00 1.784934221659031095e-01 5.274349346846621822e-01 4.314598450649054229e-01 1.039702953599582064e-01 1.394264175524611848e-01 7.014726688452493919e-01 3.334347104966218778e-01 -2.570829902553647628e+00 4.590962105015560013e+00 1.106375741055938056e+00 4.201394102553309473e+00 1.407858544003987578e-01 8.186558467715389087e-01 1.655352704429730870e-01 1.261702821623526538e-01 1.184601155380060611e-01 7.529552470405261877e-01 1.100156201728723360e-01 -2.584744976418600793e+00 4.762065125758704554e+00 1.882856429840910284e+00 3.979924881819511651e+00 1.199351011528950461e-01 2.864993538095996772e-01 6.852705619638053136e-01 2.579545436395039859e-01 1.230950486235745239e-01 8.858786525113477861e-01 3.963895211217567383e-01 -1.212505607265679686e+00 5.945351791817516052e+00 1.372578643608130644e+00 4.353373300140233049e+00 1.078427966009392891e-01 9.662865888962117733e-01 4.815510128874558315e-01 1.593329768114554457e-01 1.052265948738858592e-01 2.900706373184296361e-01 1.728487298857213639e-01 -1.800413797108250780e+00 5.993779423724492794e+00 8.583991279434166621e-01 4.206688234401355864e+00 1.477756282864249315e-01 8.130743116370582335e-01 2.831562625184101956e-01 2.385490375241142713e-01 1.150616231819578394e-01 7.773189535705111730e-01 1.936345043841437019e-01 -1.368461201540699612e+00 5.467122016253611605e+00 2.231546509180807991e+00 3.830058924263045395e+00 1.103559083258142254e-01 1.938604979995446342e-01 3.882218436356600355e-01 2.663590196599279203e-01 1.332745650631171341e-01 8.434568483345650236e-01 3.597685119319065095e-01 -1.930759639895069490e+00 5.117841427278078115e+00 3.251022497902262387e+00 3.879761152881257669e+00 1.138682919018039613e-01 1.390112986335080847e-01 1.543948094964394946e-01 1.598820141569027853e-01 1.188181437190433676e-01 7.243757787992386454e-01 3.122821245378699651e-01 -2.572100619895259399e+00 5.137973025736277677e+00 8.492363976728497521e-01 3.838950106816902963e+00 1.674606483448528027e-01 4.609750075471559239e-01 9.924445724552494186e-01 2.630510229904673425e-01 1.447663957556362957e-01 7.255304834347561238e-01 3.361944827582573070e-01 -2.365468203174038386e+00 3.933774027101796467e+00 4.541579900530305913e+00 3.903321797673493077e+00 1.619087397013609930e-01 3.904596773332437154e-01 1.094233969597567385e-01 1.237568707073238433e-01 1.224901177076550274e-01 6.763548295411344613e-01 1.885821836848355915e-01 -2.031131560828243199e+00 3.566962730860190778e+00 2.777670819147177284e+00 3.524309936670153132e+00 1.657105507644303921e-01 4.310600107129799463e-01 5.421070710041568930e-01 2.180327590358196177e-01 1.365486433540062661e-01 1.004861918756908973e-01 2.462199849021175779e-01 -2.169672030206218238e+00 4.451489075053555844e+00 4.652491286007215621e+00 3.831773686722117489e+00 1.489654341258621062e-01 3.777805912812415290e-01 9.572310481164290064e-01 2.136917837884038662e-01 1.147464395339635596e-01 3.013810687014064627e-01 1.114461705911146266e-01 -1.461031121964398327e+00 4.030749850743460705e+00 4.358697626990586826e+00 3.769827714378722217e+00 1.065926782666577893e-01 5.922763537916447829e-01 8.636568031296424364e-01 1.891956765739491453e-01 1.265019522656328221e-01 8.758366926694212129e-01 3.058839057755629032e-01 -1.250859841571028586e+00 3.728633992456224622e+00 1.797533486472353781e+00 3.789940710345508279e+00 1.668994431498790898e-01 3.081978526711060540e-01 2.915198922561314521e-01 2.393150780720046389e-01 1.061299332678833918e-01 9.477278183436196324e-01 1.028455239845121744e-01 -1.365157084164733359e+00 4.093948955890071240e+00 2.904281738279887115e+00 3.670540691202301975e+00 1.826218758631042993e-01 1.733756739763915311e-01 1.147884708375036256e-01 1.391026458497194307e-01 1.371506467723911105e-01 5.025304997337818325e-01 3.278670019753594511e-01 -3.164186275045180352e+00 4.872272577535724736e+00 3.521235910041636608e+00 4.049264267122600458e+00 1.583138125839686772e-01 9.963570344339275353e-01 9.115122325318302243e-01 1.205234839476872905e-01 1.441760785716247051e-01 8.322082189782283868e-01 3.077425925878202184e-01 -8.854059736713176809e-01 5.930725370061859181e+00 4.290785015429027460e+00 3.689629707391920199e+00 1.432446117381536987e-01 6.631112140378149222e-01 1.891846987089024767e-01 2.058848594260677678e-01 1.155045102959435660e-01 4.379977958259235749e-01 2.893217462663745243e-01 -1.704306312496297382e+00 4.440517996861025551e+00 1.489692900192542524e+00 3.872969606170208579e+00 1.131447247348447288e-01 5.613217400722645412e-01 7.450806246426101564e-01 2.756795696505222049e-01 1.246730747644575615e-01 6.413102805907529014e-01 3.104265495221325555e-01 -1.247678391091643579e+00 5.705897094674036829e+00 5.034543274996677198e+00 4.277274320744580471e+00 1.089659605235567541e-01 2.520512460155097112e-01 1.332869794553517562e-01 2.981555237196510388e-01 1.417222271049737581e-01 7.110203536754703402e-01 1.852204571229577601e-01 -9.052709713458659824e-01 4.755363731289594220e+00 4.533212326474956200e+00 3.645350327125324252e+00 1.271794164169003372e-01 1.347041847094335998e-01 3.542816656081394511e-01 1.739240458259626865e-01 1.330553256745785062e-01 7.366286224489870804e-01 3.183872635115991279e-01 -2.671400568124755459e+00 4.038651489964292907e+00 2.044502515150486310e+00 4.146148632323419569e+00 1.594206786511467022e-01 4.432992321908655331e-01 2.286579095069436185e-01 1.022968690880222409e-01 1.269200829780506301e-01 7.596385463638042346e-01 1.201216617505160567e-01 -1.988976535135796642e+00 3.593427323389466910e+00 4.312151751097794694e+00 3.674491095317110378e+00 1.640446768421983115e-01 6.037870190891025945e-01 6.476950377302901352e-01 2.455190482000195185e-01 1.107590088394004579e-01 7.576750726637228039e-01 2.197309903648123897e-01 -1.447383317458776908e+00 5.941594988599577576e+00 1.111455969358197349e+00 3.930090266566212964e+00 1.962610282127084105e-01 1.767719955827747325e-01 8.600143629486947106e-01 1.496902836097279421e-01 1.070708976794546852e-01 3.049605516984312814e-01 2.624492704760425510e-01 -2.484341488125249242e+00 3.772357227879029828e+00 3.477986369949136680e+00 4.115317312208771838e+00 1.797122707829354460e-01 2.072708835201746702e-01 5.992535343574250106e-01 1.752691964598854513e-01 1.270946471301573899e-01 3.151134725014160809e-01 1.472898584996181759e-01 -2.629145278351094461e+00 5.120848912983400503e+00 1.167631988025119805e+00 4.234578603394697716e+00 1.771191982491976402e-01 3.139507007173212849e-01 5.621981927938084489e-01 1.243274907351548109e-01 1.073890075112555048e-01 2.480482085005587534e-01 2.972970499807119360e-01 -1.303357104946090583e+00 5.614121877870873689e+00 5.170621219529913049e+00 3.532083955301884348e+00 1.184604569564939452e-01 2.327399021894952791e-01 5.880661200436561042e-01 2.585096233708757962e-01 1.400758606118053251e-01 9.722972321512795002e-01 1.943768482011807297e-01 -1.789561930508624332e+00 4.773240705541275553e+00 2.700168252652476397e+00 4.358104745857900753e+00 1.816404825258272626e-01 9.425702073922569424e-01 9.204311364924301353e-01 2.728596815629369399e-01 1.357128809582579254e-01 4.126026053659810344e-01 3.648729591550079476e-01 -1.160420128238705217e+00 4.139725444319751979e+00 5.246624651301921460e+00 3.996881538900786790e+00 1.197728219522119081e-01 6.150292524451643761e-01 2.720321016245665913e-01 1.342139742038443440e-01 1.381763254551031384e-01 1.596893294768281513e-01 1.733959684252748823e-01 -8.138670996735856145e-01 3.690884895903389751e+00 1.894953304022717777e+00 3.782449047743943638e+00 1.631827386572032856e-01 7.230953271669501303e-01 2.824806010975438597e-01 1.905595625957447470e-01 1.292323841781796989e-01 8.942896732456039333e-01 3.374226821791724285e-01 -2.781433744920867035e+00 5.984082627500784568e+00 4.239882330070179783e+00 4.076806466577628463e+00 1.284935276090466150e-01 3.649104684995253534e-01 7.594888997932816022e-01 2.856100255952649380e-01 1.278414407636518924e-01 3.564182177320108780e-01 2.876434817974331537e-01 -2.423785669372819029e+00 3.679151111274227670e+00 4.730975549872581176e+00 3.708973440339462080e+00 1.710168957358314257e-01 2.622376940042698834e-01 4.786091765032435275e-01 2.481245442315236638e-01 1.292614629541885274e-01 7.079754358897031308e-01 3.644669548457435404e-01 -2.463533972608088263e+00 4.511361356732392025e+00 4.043910319028952927e+00 4.087895583386653264e+00 1.641554235257704497e-01 8.377424403790644236e-01 7.647372713512650133e-01 2.253618745079641050e-01 1.050654147731005378e-01 8.130734965493000566e-01 1.417056822820555451e-01 -2.405576086676060932e+00 4.711947610810083731e+00 1.561544929756506050e+00 3.647572782273285519e+00 1.550242827224919129e-01 1.221914162267731530e-01 4.647606868645144385e-01 1.293316556684999674e-01 1.488661748089727677e-01 7.915338025680700440e-01 2.002044963878824024e-01 -1.257682597161860594e+00 5.426535704181531194e+00 3.849993229245033177e+00 4.372571581509017591e+00 1.906538340349139826e-01 2.943605480016360243e-01 2.235809869358663104e-01 2.326859737543230944e-01 1.385305993363980803e-01 2.766169903848491041e-01 2.040855880775717945e-01 -1.912018305346127045e+00 4.826384789421090282e+00 4.258841752496222988e+00 3.844154104791840609e+00 1.241055424747546654e-01 1.967144485485715077e-01 4.120339606209493244e-01 1.783262200126257135e-01 1.470162036521476256e-01 4.151999883339553277e-01 1.690771669932401022e-01 -1.622555059939309263e+00 4.259424503524278371e+00 5.254508400818880709e+00 3.691455772161598148e+00 1.941907035261702108e-01 4.513123777406697901e-01 1.918497362399570472e-01 2.184086725933819806e-01 1.314303342552874954e-01 7.269869652106504265e-01 1.549989198435751392e-01 -2.808043703543193104e+00 5.979530357123532980e+00 4.350774297876799146e+00 4.129815727079940046e+00 1.151134436389455590e-01 8.245711111482990630e-01 5.984184238671803602e-01 1.866602560468972327e-01 1.445373192986885991e-01 2.034902188130525702e-01 3.843363927186034257e-01 -2.578453882190356872e+00 5.933992044623238371e+00 2.849544119805309528e+00 4.060371428860358733e+00 1.327728924534715693e-01 6.993273093548678654e-01 5.907237826763042099e-01 1.747213946429286846e-01 1.201978296482189151e-01 3.250163842784827839e-01 3.322684278483277742e-01 -2.127040221653010654e+00 4.740101196181990773e+00 4.993259865043150114e+00 4.268112413674380434e+00 1.139836766664454881e-01 4.990552207542876539e-01 7.881185003491377739e-01 2.806939259648707496e-01 1.333927211341462693e-01 8.163563329591980722e-01 3.117287623754658177e-01 -1.252259503664353790e+00 5.104625580244641192e+00 2.096914825642155478e+00 4.438225765746609319e+00 1.684120179855442823e-01 4.188832986795040236e-01 3.690001674618215155e-01 1.948456616967072230e-01 1.396862896376929453e-01 3.413302510964528746e-01 2.573535519337823430e-01 -2.868793576997008543e+00 5.585152320675187632e+00 2.656643523074332158e+00 4.322027859722481047e+00 1.782749994810512717e-01 7.498678184696687676e-01 6.109910066876982349e-01 2.784875135994810957e-01 1.201475403193550257e-01 1.516538518035779881e-01 2.302660428509868684e-01 -1.652216166896761207e+00 5.757201535695324779e+00 2.071509783066468380e+00 4.240369073596484739e+00 1.454546507247021225e-01 2.165992565181912299e-01 7.260552001301641134e-01 2.658928655400462082e-01 1.280401382272778610e-01 2.923930636826338469e-01 2.753618819592584810e-01 -1.266990013827720585e+00 3.526851433676232439e+00 2.545871722811847704e+00 3.995313619681898132e+00 1.354068088432301420e-01 8.381217951485578910e-01 3.262442753653912453e-01 1.400963622320212099e-01 1.158247647723164575e-01 6.717369339010461626e-01 3.957161612411816964e-01 -1.280128394630107191e+00 4.656448541688024356e+00 3.112988386691551312e+00 4.035069018306291611e+00 1.704372392685235271e-01 4.560855130559002824e-01 1.009709520596453886e-01 2.267943439095317093e-01 1.340276031637727128e-01 1.418184768348983438e-01 1.247285144781627997e-01 -1.343245953860858100e+00 3.987539849187122343e+00 2.450684573701888969e+00 3.751359469687727266e+00 1.967660400040096569e-01 2.055812992539740591e-01 3.379611586117555744e-01 1.938910265779574815e-01 1.225661672144122277e-01 2.255075372628817520e-01 2.157220738569640972e-01 -1.277156685705275851e+00 5.110950914289739799e+00 4.251073957665243874e+00 3.667981007893750256e+00 1.213177663639354725e-01 8.013570322509918631e-01 5.283540013514065325e-01 2.299069411283859166e-01 1.342859368723152702e-01 1.138472560303247921e-01 3.798570879483312845e-01 -1.468152921508008024e+00 4.936430876487358788e+00 2.417307286295901747e+00 4.473345928956073969e+00 1.929625074161048504e-01 3.445487462543612711e-01 1.512708591575167294e-01 2.186871280232461912e-01 1.423982472358439055e-01 8.228607049663929640e-01 1.748671781214737042e-01 -1.782908719342708448e+00 4.434907749309028091e+00 3.018718155355098354e+00 3.601917085836625620e+00 1.247902195784223317e-01 8.163725044975904677e-01 9.680912935649083062e-01 2.914359843397896777e-01 1.279282943946834783e-01 4.043109347836038037e-01 2.592270723105430941e-01 -1.679117716681075567e+00 4.302047500076298547e+00 3.737126141246960742e+00 3.633667078876652301e+00 1.703129246177060852e-01 2.798260696875025655e-01 5.020897138727821174e-01 1.624650708769022067e-01 1.243384497781822584e-01 9.636887219235699131e-01 2.078308427305828876e-01 -8.054693882319425846e-01 3.731531603435703115e+00 2.149811579574235409e+00 4.143938803447632324e+00 1.280243177259996479e-01 3.043717976774044653e-01 9.372585966837762017e-01 1.626726022634599200e-01 1.198014327307832388e-01 6.805719476187979122e-01 2.939875277008104915e-01 -1.199460670993790945e+00 5.582748320270383147e+00 4.761563764670774468e+00 4.337695809673055791e+00 1.283097397386384897e-01 8.916788632168232143e-01 8.951593204612008359e-01 2.316728224160774230e-01 1.429430867886405387e-01 1.364077837239678903e-01 3.393244429404655982e-01 -2.640037207029934052e+00 5.657362806620320761e+00 1.637504471090568625e+00 4.242188828106395526e+00 1.380742929237157857e-01 1.082587510252875501e-01 5.597253139505395936e-01 1.209692413300778313e-01 1.039795922797059069e-01 8.929892374767780527e-01 3.614135920458021456e-01 -1.633216110397653464e+00 5.865171589670501895e+00 8.964164896987262265e-01 4.244192560284903770e+00 1.088051793347473012e-01 4.047066350677948066e-01 9.841811158849764762e-01 1.596877424182077121e-01 1.415255855477942359e-01 9.678383879372708387e-01 1.896078738059884805e-01 -8.806342291696265256e-01 4.065241864641208736e+00 4.943789030148813879e+00 3.823062030437329728e+00 1.342331404141389739e-01 1.585996865818103951e-01 7.696168167233869983e-01 1.212508153489613022e-01 1.207463358211710858e-01 4.096571181581152299e-01 3.237360367166698394e-01 -3.104440774982940354e+00 4.073404278143835988e+00 1.139551480245943660e+00 4.361933079404243685e+00 1.150246933394833415e-01 8.285412148023200141e-01 8.843802947276497850e-01 2.945836620143788553e-01 1.107208766174534731e-01 1.503301111013685132e-01 1.587220924126214461e-01 -2.429747826871326843e+00 3.918607966123735853e+00 2.692121824174339650e+00 4.198808498205266027e+00 1.596403873604771984e-01 5.734962837277245429e-01 9.847409510190330284e-01 1.810810685895881955e-01 1.172245148443233492e-01 2.671859099680063965e-01 2.154005475703856254e-01 -1.643880201599739799e+00 4.939534445872610036e+00 1.685828545161503822e+00 4.112125068186698762e+00 1.484771542064957373e-01 7.053134535714392639e-01 5.899617311142207887e-01 2.511603482213639049e-01 1.402737191825699226e-01 6.749746965258585085e-01 2.657748878780368251e-01 -1.867079376289994874e+00 5.081883898707884484e+00 3.003074366507076043e+00 4.432634700076632406e+00 1.024566480027943871e-01 6.351066197681546344e-01 8.616427896174823076e-01 1.653833895327440906e-01 1.203409704046755485e-01 3.602118583316377132e-01 1.971968594866418401e-01 -2.870565335834662335e+00 5.937735194301438924e+00 4.592476737344100890e+00 3.733627975199440119e+00 1.939212943413259060e-01 7.081108346068571979e-01 5.335787244540607377e-01 1.388756632378011502e-01 1.423437855969257315e-01 3.171364434935852739e-01 2.791806759134075611e-01 -1.144630748938628484e+00 4.861385214285784073e+00 4.991061910711519722e+00 3.582215256088275623e+00 1.149148474199387371e-01 9.630054240373503438e-01 8.561468023888317846e-01 2.169976519267446391e-01 1.169756877711585624e-01 3.890772985542981788e-01 2.685301030030045055e-01 -1.077645608228412932e+00 3.673875330302645903e+00 3.320849356570182209e+00 4.118178160529136100e+00 1.406058821314648266e-01 6.135187071732145503e-01 2.327260925380273404e-01 2.645950739708845534e-01 1.281018576333033121e-01 6.698264718365832815e-01 3.131936718149527232e-01 -1.755186681245385572e+00 5.222824241000003198e+00 2.277360870088031675e+00 4.281461351152132444e+00 1.573108958791110679e-01 6.721210054868376194e-01 7.433525836939877118e-01 1.207797989167733593e-01 1.235565151960701380e-01 8.655713370883678648e-01 2.844291794481670355e-01 -2.928028271892208600e+00 3.660565238704132529e+00 4.153146515337264866e+00 4.486705848074826086e+00 1.277121720807195548e-01 1.041521041672158060e-01 6.130785924814012855e-01 2.053796751288097799e-01 1.081128002129883720e-01 1.792768166779277750e-01 2.696040732474502821e-01 -1.150175767425966722e+00 4.694157192286823488e+00 4.701768052001179754e+00 4.493531248620575624e+00 1.195629653564257433e-01 5.094887150324837188e-01 4.970003498039672341e-01 1.103043042303113591e-01 1.353727305797669533e-01 1.880078094696830959e-01 3.708027237318317626e-01 -1.218875307614684766e+00 3.647394188877643550e+00 3.527347823405383664e+00 4.350495366984361567e+00 1.652224674099100343e-01 2.225438835169440410e-01 5.582137175879194890e-01 2.802216029505957273e-01 1.185884505031399028e-01 2.984836632089134523e-01 1.381904914301018972e-01 -2.703422469093856861e+00 5.277126855386232940e+00 1.828834574405737712e+00 3.745699671367718864e+00 1.096472566013431960e-01 6.212323050738707275e-01 2.863424934936258381e-01 1.457997454134812298e-01 1.439857651055337362e-01 6.798169295110880750e-01 3.960106024366060185e-01 -1.440586973186217312e+00 5.490455307823078890e+00 5.362693692372025644e+00 3.734263198181130061e+00 1.390855225529123163e-01 8.611303483789954916e-01 9.428776160021633546e-01 2.972232220780195444e-01 1.259249402260712580e-01 6.934264637676946785e-01 1.251037307686254929e-01 -2.851852633373471058e+00 3.883472240754373139e+00 1.945601490727935756e+00 4.466296027605951124e+00 1.900023691925327995e-01 9.688290868741109563e-01 5.616968263157882113e-01 2.237595530492975660e-01 1.163779474680487758e-01 6.707630570288023453e-01 3.918279974063564319e-01 -1.595867430486844762e+00 5.955473431220816849e+00 1.717845286526617610e+00 4.426151441573735745e+00 1.105399688558539040e-01 1.843106351937128518e-01 1.559294229132851539e-01 2.008581126792960692e-01 1.466719329497923607e-01 9.491951648795939889e-01 1.190943937251814772e-01 -2.950236492033351254e+00 5.696611520232417902e+00 4.339470530363516154e+00 4.134017770120914648e+00 1.505780317149584824e-01 6.538549605757645322e-01 4.359486281100812821e-01 2.608748336707785720e-01 1.063951131994848032e-01 1.352702265738572607e-01 3.149787407781069470e-01 -1.764473248431011054e+00 4.494556112188099029e+00 8.035220779589683504e-01 4.232892005499875765e+00 1.623054684365284051e-01 9.918462403104061353e-01 3.718743853763119001e-01 2.497668609700829656e-01 1.036638035841050548e-01 3.113382505178960979e-01 1.673021931546090635e-01 -1.336222956537171047e+00 3.536555343113588989e+00 4.466725739228472492e+00 3.894463837452907029e+00 1.953809080000585008e-01 8.441640241503682862e-01 9.796540938668282239e-01 1.683740186993017418e-01 1.046407479755543657e-01 9.919477790875873557e-01 2.595110496900223662e-01 -2.296037378634754766e+00 5.288436159364273692e+00 2.551560668363539008e+00 3.682178983314980059e+00 1.116942121462645710e-01 6.924919418293016271e-01 6.413199206271843478e-01 2.501838706054511086e-01 1.074811050890413511e-01 4.740062358205353599e-01 3.897452925424127468e-01 -2.621702977896601894e+00 4.886328833263204885e+00 1.465091373019316023e+00 4.318269687891181263e+00 1.173029915557514541e-01 9.856258703968087120e-01 5.517079087233945911e-01 2.118379709353023777e-01 1.328193296717477545e-01 4.902655726924421975e-01 2.800577569581464976e-01 -2.680607504059395296e+00 5.415358825977554247e+00 3.606630550558319825e+00 3.855526809398930776e+00 1.829596457760461203e-01 9.021898205343880095e-01 6.813044514417011532e-01 1.915674804609582005e-01 1.361178707647794084e-01 1.823660495861614828e-01 2.764605832210429437e-01 -2.545578010369052180e+00 4.970320346840716219e+00 3.402243502752010151e+00 3.681960993645113867e+00 1.671162712426924046e-01 8.476045806928893533e-01 7.188236000193374275e-01 1.430571075361705691e-01 1.035539929245503921e-01 5.015945413989462143e-01 3.829841982747190787e-01 -2.285859865962993176e+00 5.889891597061167161e+00 4.604491066842842706e+00 3.991319643797682559e+00 1.259096389559953011e-01 6.724672108848476215e-01 5.440861363825645336e-01 1.872236174140776144e-01 1.388494596166060802e-01 8.980021949478081966e-01 2.479204982597779106e-01 -1.555619770593817730e+00 5.030271413082104459e+00 4.400662100228575291e+00 4.333429972337285996e+00 1.712694963432964679e-01 1.583697578509269399e-01 1.417867250000090229e-01 2.517776116967591071e-01 1.411756410709582021e-01 9.901967069791115517e-01 2.543769543064428040e-01 -1.226236006250033483e+00 4.502607192097941358e+00 4.568517200839339765e+00 4.078520244955859297e+00 1.780124005850022562e-01 1.098917558265997407e-01 1.210753438825381972e-01 1.411342227593138654e-01 1.304765704750498467e-01 6.419456170872258616e-01 3.498280540764852620e-01 -1.164780569434903157e+00 3.571960678068873296e+00 3.090072937222127614e+00 3.668383944229898219e+00 1.954748191283922076e-01 3.885743997439323749e-01 2.854445210926087606e-01 2.587921743274494424e-01 1.106293384776319694e-01 2.714706880988844162e-01 2.998754969782732038e-01 -1.091937050984341351e+00 5.199314583615652019e+00 2.982209436144477088e+00 3.942914628636180918e+00 1.884185631709800468e-01 8.642067102076178564e-01 9.090258271933794321e-01 2.998677853030705664e-01 1.041868498650823788e-01 4.647223844365228063e-01 3.868740362315793435e-01 -1.712241555438112073e+00 4.831555720772403362e+00 2.907551957045311219e+00 4.385454590168502698e+00 1.074868366980310380e-01 9.753808944931423586e-01 1.867177082029978230e-01 1.298139692166585812e-01 1.321525040111677374e-01 6.883943758330421936e-01 2.345164629968910508e-01 -9.644412040396251884e-01 5.741490077565172712e+00 3.695584780624165511e+00 3.579392862489339855e+00 1.438810140284817740e-01 9.514454473427533809e-01 2.173144404822640041e-01 2.015665588354550175e-01 1.166091213576890273e-01 8.374857053481877811e-01 1.482237019698473268e-01 -1.352451968874909927e+00 4.675440211454906070e+00 5.186778042324923454e+00 3.724126182384735362e+00 1.203601503418676305e-01 2.556463501113991343e-01 7.078777727836058631e-01 1.771500070987953590e-01 1.489739784246504883e-01 6.289478817516035436e-01 2.962792812653012864e-01 -2.943104905594842613e+00 5.847640492557429681e+00 1.753177167318007434e+00 4.317291252899832621e+00 1.600452160167052384e-01 1.706955606960350036e-01 1.198439186248350663e-01 1.789277960181833160e-01 1.399857965999350973e-01 5.758400344871276166e-01 2.027882889370413166e-01 -2.146931582318173604e+00 4.844891746063836102e+00 9.387388096099490431e-01 4.210602884166073423e+00 1.272248970045889438e-01 8.735980366365917460e-01 9.024165182232699589e-01 2.139179219220062600e-01 1.418481545120283127e-01 5.162132795492310189e-01 2.926048615461293578e-01 -2.988800635437685926e+00 5.842930772095357383e+00 3.522413116718738912e+00 3.982257831088950262e+00 1.709651498317521501e-01 8.823549891210369367e-01 1.712362715511695499e-01 2.783238334597438191e-01 1.253110306458681822e-01 9.603539840670212158e-01 2.747887155486061772e-01 -1.458335671870097050e+00 5.954465330944275436e+00 5.205349285878418719e+00 4.295844014619897067e+00 1.959893745525262132e-01 9.481995857792565596e-01 2.014467547512884260e-01 1.548218033249163239e-01 1.323748578676363918e-01 6.863300848750557570e-01 3.592146293298477122e-01 -1.581699939695176083e+00 4.809561221933830844e+00 3.332082695226380231e+00 4.178310430482969018e+00 1.538282958033220793e-01 8.640411576760680390e-01 3.473544392857145224e-01 1.352978124228823020e-01 1.141763526838289328e-01 1.124467973084563588e-01 1.827896745403576606e-01 -2.379917159995157405e+00 5.799531112773712138e+00 4.546042285741108913e+00 3.609848862408908232e+00 1.707134892005863214e-01 4.388462325539266295e-01 7.502955095019828713e-01 1.134266753428138930e-01 1.426693558006841001e-01 9.562648116927853215e-01 1.465798551788759785e-01 -1.282457114812356691e+00 4.705683618997107409e+00 4.380033140725559271e+00 3.637402596982743042e+00 1.312369434444302652e-01 5.290273892267236544e-01 4.628517035285742987e-01 1.658135735078444251e-01 1.039245230908151796e-01 6.398765837402805579e-01 2.061177971645992146e-01 -1.450248303327694721e+00 5.679038942769403242e+00 3.536214520626205449e+00 3.965149724792671915e+00 1.576301888582772037e-01 3.479194658507105409e-01 3.579633065817959814e-01 2.693717795632653011e-01 1.153629892054912065e-01 3.926001814005672941e-01 1.102503517248942522e-01 -2.965986453970789860e+00 3.993760376341979779e+00 4.583464948425818974e+00 3.807412132964265616e+00 1.448472223232016853e-01 9.815713487848497509e-01 4.100398836905720934e-01 1.083072510576572056e-01 1.385617195504792454e-01 4.506880031306325085e-01 3.946016922741769628e-01 -2.748432661631305507e+00 5.129711908192163605e+00 2.182339986774103568e+00 4.421529485405963911e+00 1.984171635684848778e-01 6.294112255820035751e-01 6.974822621085136065e-01 1.795092489477623510e-01 1.459571364669071947e-01 9.707076614178710150e-01 1.809193053864625034e-01 -1.452581910326407266e+00 5.101433896862854311e+00 2.273931285774513533e+00 4.149769390400344093e+00 1.178835999044481608e-01 8.070669125603346927e-01 1.045387617677841080e-01 2.960518694937880335e-01 1.269898262121697263e-01 7.183325296470023380e-01 3.134554206939064169e-01 -2.711534416727476859e+00 4.759660132194004412e+00 2.013434188858307827e+00 3.585432718902913152e+00 1.026299619747722963e-01 5.938728856917100396e-01 1.472857687800678828e-01 1.900888327237631459e-01 1.453235376835633752e-01 6.258890807586792171e-01 2.579456597673003837e-01 -2.879068610545178153e+00 4.326274025070087959e+00 5.182406796369980917e+00 4.059772999047398301e+00 1.220479581615649539e-01 7.665150356415633137e-01 8.011492830577743307e-01 2.099371392080021659e-01 1.317808020148041326e-01 3.917166213143078446e-01 2.870777071776229317e-01 -1.750720998901385439e+00 4.127642607918941664e+00 2.512024043700502141e+00 3.716546925314991867e+00 1.976969839258516659e-01 8.763756555817081573e-01 8.349369597948276267e-01 2.661392795680895818e-01 1.157624179127812042e-01 9.010664755511434976e-01 2.369374882573396512e-01 -2.371494917174242989e+00 3.709469709704867668e+00 1.012951482002619308e+00 4.452877108416006813e+00 1.575518261200136438e-01 9.114545477720867872e-01 6.841103475752878804e-01 1.096829763468902680e-01 1.100665375770960019e-01 7.094695252168914390e-01 2.317739244838738222e-01 -1.213043796916140948e+00 4.252668720675930381e+00 2.458735131603564383e+00 4.411196132841443962e+00 1.249929880524704578e-01 3.114649318931877464e-01 2.777299808442066920e-01 1.146831304652824457e-01 1.317301525618721214e-01 3.784270783658353343e-01 2.678588349241239897e-01 -1.073285752944867610e+00 5.434602859098347949e+00 4.672059586472443904e+00 4.480323730882035171e+00 1.005548860262572286e-01 1.269906356874056508e-01 3.292558229710947915e-01 1.987340074076465180e-01 1.083932763559851270e-01 1.030325653372500955e-01 3.048875885450716972e-01 -3.195539190404355523e+00 5.054592226462145454e+00 9.096165986836879380e-01 3.679139216001866330e+00 1.980638313773867565e-01 1.100390073039946015e-01 4.662966159592780713e-01 1.708185850466836797e-01 1.126849758179258171e-01 4.023292728957261755e-01 1.907312116289351933e-01 -1.681748505928454041e+00 5.406643521764433302e+00 1.161322366140233875e+00 4.292736930700244535e+00 1.858230033940819759e-01 9.805665310126460144e-01 7.277281276440674684e-01 2.664560174752751420e-01 1.033004444219880191e-01 8.273738429781410941e-01 3.163492498416345944e-01 -2.201286425958508541e+00 4.716522704040265523e+00 3.832954001090707941e+00 4.130755870339493541e+00 1.446761805653999644e-01 8.887707669204624183e-01 3.435518394719916380e-01 2.361855558025352519e-01 1.255069307781861432e-01 1.081774262381860752e-01 2.219827523388053780e-01 -1.097750444033080530e+00 4.587315968272815070e+00 1.617173222282082268e+00 3.779991172295716684e+00 1.035736918950975471e-01 2.094552421214906091e-01 7.853621749072254854e-01 1.110748289607315226e-01 1.028889937493980833e-01 8.341260779276632453e-01 3.852105202664410921e-01 -2.905905116555143941e+00 5.142430940551681928e+00 1.469721269673886388e+00 4.274836821012204524e+00 1.014067158058938461e-01 2.444810767461664258e-01 7.467227453837866902e-01 1.529662837138541509e-01 1.349035758562530662e-01 5.787243153439628474e-01 2.565323777076662370e-01 -3.189107741972981636e+00 5.717739997573842103e+00 1.909194822491178556e+00 3.517251699104829488e+00 1.240932909461727185e-01 9.726265495295227659e-01 4.875010801635555335e-01 2.416311797417944052e-01 1.291361271145495260e-01 9.670822028869676679e-01 2.401567760728980649e-01 -2.506376214297489469e+00 3.982390305529238894e+00 3.414713323532556188e+00 3.625920912321261014e+00 1.701992812038651826e-01 1.402955267791846372e-01 8.396376474817865976e-01 1.584969906515268645e-01 1.170612405016188129e-01 4.432713190035992845e-01 2.918811867986638720e-01 -1.455505341809236963e+00 3.940453076887141304e+00 1.195916178724298451e+00 4.394105623544373174e+00 1.072593708832723092e-01 6.243400552572405671e-01 5.600772834918916754e-01 1.193102610879835657e-01 1.322559068926596748e-01 1.805693297619969939e-01 2.328738129653635247e-01 -2.739917817046361392e+00 4.515063379226551099e+00 3.499373190859630611e+00 4.458105613143331425e+00 1.122765810420841004e-01 7.367196040738892560e-01 2.310964869072364980e-01 1.333702563624306336e-01 1.391844572731714691e-01 1.962909501334266227e-01 2.774892290408683126e-01 -2.907678881184071251e+00 4.023371334568443203e+00 1.075021639347178759e+00 4.116131704283960246e+00 1.085866170480722509e-01 7.829244553900751580e-01 7.973213318515819381e-01 2.196652087878135928e-01 1.390499245524058070e-01 1.387187513301462727e-01 2.179326368940214531e-01 -2.896216346614313153e+00 4.780868810713980288e+00 4.933374622625816386e+00 4.019852162008384688e+00 1.270039751472325784e-01 1.685209028970471867e-01 5.464920269739184100e-01 2.215228903890334999e-01 1.313865354143010644e-01 6.340709472260810387e-01 1.676144591341787171e-01 -2.631967420396315482e+00 5.338476131972109684e+00 2.352201730358645992e+00 4.191350350960782123e+00 1.292162651884378455e-01 8.590716258698400942e-01 6.064713161864793145e-01 1.295794190083193742e-01 1.485317378312869807e-01 1.698470777662379194e-01 3.945079490298876168e-01 -1.902676409414322700e+00 3.973307582231067503e+00 3.895171356587217915e+00 3.555758546578791979e+00 1.421597593639096213e-01 6.650797179253459257e-01 1.375780079491166208e-01 2.641144105820203425e-01 1.388842601627504891e-01 5.803215950265971923e-01 3.699509027331814304e-01 -2.260449864932796871e+00 5.895248547835172381e+00 1.421040270149843021e+00 4.159047636020903660e+00 1.880065880103697074e-01 3.727650783320273220e-01 8.170422781378523513e-01 2.682379679412074669e-01 1.463459816595706620e-01 8.475555167782459209e-01 1.014553427608574920e-01 -1.862003121001985395e+00 5.569532806969734295e+00 1.843665044548002063e+00 4.271542594642310675e+00 1.060054657474659018e-01 4.198721536213615435e-01 2.319961398829659127e-01 2.436395773090529737e-01 1.137495149300345593e-01 4.959613213565167156e-01 3.108499496222857927e-01 -2.067053581353968106e+00 5.893722107812512156e+00 5.387560632252295534e+00 3.571367915079212807e+00 1.840270681980852308e-01 6.081582280659750817e-01 7.728924986934107011e-01 1.704146961351118983e-01 1.228582053306893074e-01 6.169817354287636668e-01 1.144374734362701151e-01 -8.745609595448533558e-01 3.829904219702482404e+00 3.204169788424718668e+00 4.439878039612656480e+00 1.387385212992558736e-01 1.143614541391441003e-01 1.078888910598348183e-01 1.356754486921139258e-01 1.433990730010286097e-01 3.187283613141707050e-01 1.232278967168873446e-01 -1.508751134842694297e+00 5.078342971760041458e+00 3.822236091681795678e+00 3.917822178823077817e+00 1.357892358063979843e-01 9.999290879736647542e-01 9.337700291173332001e-01 2.844903111646820415e-01 1.090233640195154563e-01 6.592703044185008743e-01 2.272981265536992701e-01 -2.939029633074650150e+00 3.648793463725004571e+00 1.850328269372150780e+00 4.006273978908082789e+00 1.536875556292631451e-01 6.524057360500773450e-01 3.631250443292045604e-01 1.149284936267995494e-01 1.223737626540874202e-01 7.702072682433137585e-01 2.176345051319455159e-01 -3.125258246951070795e+00 5.459190905790167747e+00 1.581266536220411023e+00 3.860574308866483229e+00 1.225138269798609902e-01 3.170089062632680532e-01 5.004227921422897962e-01 1.395310776183245893e-01 1.097953196611898968e-01 2.620783359861195150e-01 1.663134068387758513e-01 -1.417915694683296035e+00 4.546934322470121970e+00 5.279579811554142132e+00 3.688725443903740686e+00 1.004391728183837013e-01 5.053503081151080600e-01 8.471466023839727688e-01 2.023927707562830358e-01 1.178814934280950077e-01 6.444802078237416021e-01 1.817411182164558880e-01 -1.243168646521211729e+00 5.504653827390311172e+00 2.198960901441076032e+00 3.551931837911227241e+00 1.348143727135946712e-01 4.974501203652551551e-01 4.481178193745107841e-01 1.262018679324741210e-01 1.369823364888207162e-01 3.354611851349958984e-01 2.772375089199012876e-01 -2.058212822674563292e+00 3.686916962463353098e+00 4.708491864161269191e+00 3.573517720235141137e+00 1.462095724135840658e-01 9.847135706330176763e-01 3.699333731684575355e-01 1.918783336999123623e-01 1.489293313308759914e-01 2.057825258722166262e-01 3.436196680106435863e-01 -1.871177478682765072e+00 3.675662514235907619e+00 3.073361461236915559e+00 4.362908405647889509e+00 1.772738964194460198e-01 6.412789131259190034e-01 8.969988355806914893e-01 2.011834511116988300e-01 1.192551975353704219e-01 2.281274770431660215e-01 2.190945978301229169e-01 -1.015603303470943741e+00 4.986248900866568690e+00 2.772088524003136101e+00 3.786751104393953238e+00 1.551126995309052292e-01 9.287996265507038052e-01 3.650320538358433620e-01 2.590468445238451878e-01 1.012901503634836969e-01 6.739256626314410470e-01 2.161708000971915289e-01 -2.742021627087097180e+00 3.827010365046791485e+00 2.859710125448295948e+00 4.128225569751156065e+00 1.248555727479427890e-01 3.403319248795402818e-01 9.125499767891048775e-01 1.993711700304084955e-01 1.403364861107608275e-01 2.360278723229705389e-01 1.336690887017873974e-01 -1.969731724738289946e+00 5.045445258259725563e+00 3.676405502608671938e+00 4.230858157222630922e+00 1.070323637782400195e-01 2.770016075633745523e-01 3.428924531871099246e-01 2.371329510807197727e-01 1.227520393065494736e-01 1.106979032297815690e-01 2.438905975978320484e-01 -1.409704313792035979e+00 4.476569993606710263e+00 4.718920967672683098e+00 3.946397821102584302e+00 1.557539688694293545e-01 9.717132646143269437e-01 2.089361872930061148e-01 2.769620436915870565e-01 1.339303639099248544e-01 9.151115396409095215e-01 2.034090933828072711e-01 -2.311735243470077084e+00 5.353625268192800490e+00 4.000517754963733630e+00 3.808306400230738298e+00 1.763160487928447651e-01 8.447616181639403532e-01 7.148692226894550750e-01 2.345147240088015506e-01 1.103930811421615088e-01 2.232322315690524750e-01 3.213392268000515029e-01 -2.382589351261977129e+00 4.956852435702591819e+00 4.389484872290504214e+00 4.251590689228295972e+00 1.192272126201960880e-01 8.086207167481752611e-01 4.269307533467986415e-01 2.280760116428127149e-01 1.001749935795382407e-01 4.845622148477353175e-01 2.827562814555724668e-01 -1.565517501911014353e+00 4.727058865141549049e+00 1.619456905330393326e+00 4.324976214957583664e+00 1.009557983972314832e-01 7.284012500014743763e-01 6.089122350487796709e-01 2.275814486681872195e-01 1.202044644420401653e-01 7.173261232932761633e-01 3.446724161746828052e-01 -8.441454118786040350e-01 4.581506437479703209e+00 4.554073408739500728e+00 4.412338169904552743e+00 1.420543436067806531e-01 7.160515431719862711e-01 6.596142001078453276e-01 1.029678592133688869e-01 1.205895115023822017e-01 3.856970882915619070e-01 2.236447553682220646e-01 -2.470621884156120274e+00 4.135240869990211010e+00 2.022625602269189748e+00 4.467386931066375411e+00 1.115234298408227520e-01 6.642071420324392461e-01 6.744237043729919279e-01 2.199616503441517712e-01 1.477154108203159733e-01 5.407611033905778131e-01 3.794829980724716556e-01 -2.559464997185639135e+00 4.307684131915336501e+00 1.272044900822711710e+00 3.896971471338845916e+00 1.052534238931823046e-01 8.849550869764992722e-01 9.868948086040627565e-01 2.490193299987487618e-01 1.213011596081765286e-01 1.984226514351940251e-01 1.824886856891867748e-01 -2.304451968474833912e+00 4.594278360160981123e+00 5.155816923768238524e+00 3.568682193940835745e+00 1.509839976230381853e-01 2.287270362362589515e-01 2.354019577498971949e-01 2.716569713776720851e-01 1.355474827878701549e-01 9.387009243363961808e-01 3.285556340945868792e-01 -2.567623200730049682e+00 5.518486341269883688e+00 4.773367567516844545e+00 4.043775996539251238e+00 1.459728290017579255e-01 2.268463922365918373e-01 2.952507575882019619e-01 2.145278045086312924e-01 1.324749225515304829e-01 8.450566855410273082e-01 2.247201769944919547e-01 -2.167868426529208747e+00 5.263257832187392182e+00 4.629164088884868633e+00 3.623989240615166363e+00 1.911953879572765580e-01 3.334886343269936049e-01 2.657133929789082805e-01 2.611606718304799735e-01 1.161844606586458772e-01 7.727784439911968839e-01 2.701732836610910571e-01 -1.158294336097902999e+00 4.776244100686874994e+00 3.469076500795955198e+00 4.037198772283925763e+00 1.528192402057498844e-01 4.873462161106626445e-01 4.302408580842574937e-01 2.822407362391067265e-01 1.302610573336508148e-01 6.014204856353725370e-01 2.465429478967231247e-01 -1.515307037055881212e+00 3.613260759531595756e+00 2.090126546528296103e+00 4.442433410176152897e+00 1.016960482866857973e-01 8.078222731066764251e-01 4.763469080560690516e-01 2.035577288262848117e-01 1.480034156838376802e-01 7.061834407695886107e-01 3.637789463316979388e-01 -2.394110481062653673e+00 5.423716016969740039e+00 3.271259930544849759e+00 3.578897331119856418e+00 1.818835004214378603e-01 6.760863482008656611e-01 4.819863305628647732e-01 2.666805256412310698e-01 1.079256262732725680e-01 1.396511298777030619e-01 1.711728235461216219e-01 -2.050195688104350378e+00 5.773634789385591048e+00 4.720412771389828954e+00 4.166420494801256424e+00 1.313310418370995380e-01 1.743110864348055289e-01 5.864342353973843736e-01 2.105996951090034486e-01 1.033616662121256274e-01 1.283796660060448902e-01 3.821998537003906682e-01 -1.875822388058244750e+00 5.474894525052766525e+00 1.230246769645217952e+00 4.356338886137534061e+00 1.799193285504795958e-01 7.188129530098639197e-01 7.235278577525496857e-01 2.727210158191761824e-01 1.358679760379035151e-01 8.503697662483298281e-01 3.723118662925432032e-01 -3.167965106897819183e+00 4.147354230271936615e+00 1.661335575137629750e+00 4.304923852330915679e+00 1.883971609326804131e-01 5.140385655814018184e-01 4.147991380714575183e-01 2.561307767973661775e-01 1.200572705863127559e-01 7.214470837240050116e-01 1.705790299045698011e-01 -2.556640029248582469e+00 4.570616472119152895e+00 2.390495602894022742e+00 4.301005424143960809e+00 1.037712790658748691e-01 3.537289575454755086e-01 6.273391346527770196e-01 2.764618404506740124e-01 1.131685234411359403e-01 2.677089032337738317e-01 2.799438737401857558e-01 -3.142224228854290757e+00 5.926047592228028904e+00 3.158116741935280025e+00 3.607770171918899482e+00 1.273644193213938069e-01 5.554132646120625294e-01 8.024813625470633704e-01 2.991284447657966972e-01 1.002500794214914448e-01 5.534616551903339676e-01 3.378110851371443624e-01 -1.771736565293690724e+00 5.603052984895884769e+00 1.008341449129491529e+00 4.057416532828647782e+00 1.211402774983271063e-01 3.452078869277658280e-01 9.749411312098277271e-01 1.654004266347512964e-01 1.010494363421137465e-01 1.252663132441807770e-01 3.197616189385502072e-01 -2.919470957085325225e+00 4.615120679578262219e+00 4.968876200931629405e+00 4.296316595109876069e+00 1.777420991162424468e-01 7.839520432698444674e-01 1.002868939453403635e-01 2.541864578750626658e-01 1.263291556105723135e-01 5.935539202564328320e-01 1.917918440639783673e-01 -2.194352954179922932e+00 5.532356536058232521e+00 4.538793081705088994e+00 3.756882070792631811e+00 1.129424353294460753e-01 7.558810463482150688e-01 8.651278887962223774e-01 1.166714302387295982e-01 1.189066382611969203e-01 1.676717728434214405e-01 3.519630409316808484e-01 -1.110986967962754424e+00 5.058206150493329112e+00 3.287737833458548309e+00 3.721875438771192091e+00 1.163080607350196055e-01 9.269168133850915758e-01 9.464147922946335445e-01 1.362515856981412754e-01 1.129282102628013512e-01 6.759312746740524513e-01 1.261779468752164957e-01 -2.581230560873620572e+00 4.745871031986989230e+00 3.744788753777132051e+00 3.809380513877854924e+00 1.152955680109450237e-01 5.723339128397431086e-01 1.730675587140362293e-01 1.223209785543661887e-01 1.327469822607417749e-01 2.757206391188387062e-01 2.884615380397479445e-01 -2.162790935805373849e+00 5.988888451524005063e+00 1.100481459150959296e+00 3.727732861696497757e+00 1.718261129510106899e-01 6.194823277894335734e-01 2.529585010231381048e-01 1.006324657862692207e-01 1.257823705172486373e-01 6.658698152474160636e-01 3.729221228161168078e-01 -2.073120239926368846e+00 3.587749540975710083e+00 2.517376585045125736e+00 4.125877255795648679e+00 1.730293718951573800e-01 5.225868149563318577e-01 1.173356373580563411e-01 1.741633402245223450e-01 1.460244620636567403e-01 5.650226018394935990e-01 2.668702007479728522e-01 -3.143396946943997960e+00 4.912180065651170935e+00 2.249876108512027351e+00 3.747796430256787215e+00 1.765648705748119607e-01 1.630485972621207036e-01 4.979138900962161163e-01 2.498307395571235656e-01 1.215113404821544230e-01 5.816345279105361588e-01 2.301720744423440823e-01 -2.099009125617252280e+00 5.549300901237744554e+00 4.728926636594881217e+00 3.833512472407384131e+00 1.376945009893557614e-01 7.350577587773615695e-01 4.417057252002704049e-01 2.888714773385892554e-01 1.067484782137168853e-01 4.661510427891802921e-01 1.603537163876583294e-01 -1.486183459312550914e+00 4.824746010849121802e+00 3.963238028522871659e+00 4.209288272323436608e+00 1.804298283607410902e-01 5.311261673853092669e-01 3.030713785904530777e-01 1.136569157145832232e-01 1.375251740743534679e-01 2.200577356902054249e-01 1.171943091291085814e-01 -3.130800564414807141e+00 5.388989067871102101e+00 4.185149923481136014e+00 3.615559912688991240e+00 1.193475628885581896e-01 5.596573497124865959e-01 8.224926189319027303e-01 2.612934589155844756e-01 1.170402046790380013e-01 7.939595733989394111e-01 1.962314644814046050e-01 -2.823253009953970327e+00 4.484894509404785623e+00 4.946539333254037274e+00 4.001677953751025640e+00 1.487775096278831088e-01 6.792421575942663159e-01 8.854873376944858432e-01 1.235114829126317815e-01 1.287852571255551082e-01 1.570395595713270642e-01 3.273935808323979457e-01 -2.134947210549444030e+00 3.757527045237040841e+00 3.016325783680913197e+00 4.063660018376696215e+00 1.556497208965146595e-01 2.911592908578969352e-01 5.799856150030687774e-01 2.574926998310698156e-01 1.420191672153660878e-01 1.182785470977831266e-01 2.383920112555032444e-01 -1.244669887182229484e+00 3.949411800044268173e+00 4.677351463917331920e+00 3.985825587210140242e+00 1.766372786054789812e-01 2.659065381485585799e-01 6.962091166109691809e-01 2.313955322940569326e-01 1.247307587416985608e-01 3.644736127773017254e-01 1.740292904181713896e-01 -2.659923433383416302e+00 5.981908633650863116e+00 2.247210738738670166e+00 3.576657753690451802e+00 1.251151311880487615e-01 7.899353254957617310e-01 5.073767035635160516e-01 1.220072474566513410e-01 1.095479363848889387e-01 5.207469919783568324e-01 1.782491977614519829e-01 -2.541951807873792824e+00 4.518913373823195911e+00 3.006591152294807223e+00 3.566309462511951800e+00 1.708521583335214644e-01 9.905092816144133172e-01 2.169316509795519710e-01 1.512516843494693675e-01 1.272747056032643986e-01 4.749274206991728198e-01 3.172926765241932401e-01 -9.845825643423389284e-01 5.961098110789004423e+00 2.434270949889553393e+00 4.174011087749144977e+00 1.529626933204773498e-01 5.700803468984493305e-01 1.285685277798858106e-01 1.781286685331076036e-01 1.326144619985637207e-01 4.834044923399067883e-01 2.536123338282355588e-01 -1.306660825696554395e+00 5.285398913854301384e+00 3.449778897963943436e+00 4.311685901304494806e+00 1.359725199093689829e-01 1.384291640091263320e-01 5.732595560335503881e-01 2.172499429594138554e-01 1.014239196289763445e-01 4.178066158825879395e-01 2.225139355904691418e-01 -2.958320058677782249e+00 5.272248328930603023e+00 2.595572112235875473e+00 3.696253981084403062e+00 1.141743280269432725e-01 2.884045143261933508e-01 7.806932279086230553e-01 2.387423505557063896e-01 1.108308267385443024e-01 2.068249761180329938e-01 3.663731741724920443e-01 -1.543072895757575225e+00 5.859873015715843181e+00 4.978488318897356102e+00 3.785819990621288600e+00 1.358399792929394778e-01 3.558693836973959579e-01 6.784775952916015651e-01 2.322720624313253934e-01 1.471012133358859941e-01 2.467812479693015648e-01 3.501135453477065562e-01 -1.716521101151362583e+00 5.241905848034593696e+00 3.077170024499768175e+00 4.265808172004085463e+00 1.787091641507649875e-01 5.887217643992096461e-01 5.237632099662046237e-01 2.621975755536168906e-01 1.211758934812418587e-01 9.571966082016407640e-01 3.907986322519575451e-01 -2.985924049622588505e+00 4.523586526537340724e+00 5.459854271252864599e+00 3.929116685697637390e+00 1.414991509897120525e-01 4.666137116451055666e-01 8.310728181334479103e-01 1.937373622028673026e-01 1.097473591898899398e-01 3.818592714996215109e-01 3.784079596862135464e-01 -1.441875196048809649e+00 4.086056582925695402e+00 1.855671606957625785e+00 3.694288357485111973e+00 1.476573303117041935e-01 4.220537772717742886e-01 9.057230625833985194e-01 2.884256439219495816e-01 1.091403576155295374e-01 6.650309931948368281e-01 2.185561994000528863e-01 -2.346426965398071829e+00 3.967868823476163875e+00 9.323552556529368651e-01 3.684985211988308418e+00 1.541978706461826221e-01 6.602761101275279598e-01 8.377699997016913036e-01 1.822515187850570206e-01 1.135161083738263771e-01 8.245378123110235213e-01 1.296872065105551808e-01 -3.190566673153487187e+00 4.583514585335636937e+00 3.776137407944718305e+00 3.835600313811649453e+00 1.893602046561154717e-01 5.854003894876919079e-01 3.902911164034680302e-01 2.108258808320068733e-01 1.336595443681578843e-01 6.785698508339004231e-01 3.931522610965523246e-01 -1.768251945416695614e+00 4.750652074508936451e+00 4.600138373392685054e+00 4.409264573232919204e+00 1.235473427664036256e-01 3.329550950191660919e-01 3.639578482362810785e-01 1.765743289696365126e-01 1.125009093313595471e-01 5.679336320048798958e-01 1.234199579607895975e-01 -2.838600645404903311e+00 4.163610116202893785e+00 8.519167799457300072e-01 3.952489699058201023e+00 1.337844184933905389e-01 1.056019850182543102e-01 7.337250223403501970e-01 2.851077703080236447e-01 1.123598767727970044e-01 8.507331881901901705e-01 3.217807630468106916e-01 -1.561815702110790571e+00 5.005487908543162945e+00 2.640045711733287170e+00 4.228786947219498771e+00 1.887518214955032358e-01 1.885046494175211529e-01 2.275473535197212460e-01 2.318354597477442491e-01 1.252577098582430826e-01 6.875307661642026114e-01 3.097539894708283836e-01 -2.817153381877700369e+00 5.284444485188830143e+00 1.755361173327331770e+00 3.803048699444650182e+00 1.233435936887025408e-01 8.219975448941049256e-01 8.324316397115490984e-01 1.830274072973789024e-01 1.435661948861967629e-01 9.004411653616479772e-01 1.646928342598669714e-01 -3.103101810202273825e+00 5.095261045938993760e+00 2.996319917221442530e+00 4.025727468440300605e+00 1.101247888200373448e-01 3.539898040359638065e-01 9.106254459115171729e-01 2.896120007515785577e-01 1.056059222653543406e-01 4.535435585890947863e-01 1.860253712396272296e-01 -1.339686800903689523e+00 4.849079555341114123e+00 2.632926625972433321e+00 3.685254697826001458e+00 1.977082846431298113e-01 2.011927255924364222e-01 3.984067777116173659e-01 1.895775603701493339e-01 1.007516997016153909e-01 7.317437146496005296e-01 1.165442468024812106e-01 -2.123942962262161949e+00 4.804738800935965948e+00 2.300572894310506378e+00 4.363236555711636377e+00 1.006857198612358673e-01 7.622361897063849590e-01 7.300074293780596246e-01 1.805795316277722939e-01 1.008350078148457091e-01 4.980620916966755907e-01 2.093683326459781502e-01 -2.340711835291228837e+00 3.516418628927382439e+00 3.105943906448456637e+00 4.132528217769825041e+00 1.868386569849214418e-01 3.805997975151829138e-01 2.690315773223054263e-01 2.684806832339589056e-01 1.078923300354126119e-01 6.994175928135746290e-01 3.326611591231719567e-01 -2.234740316799117998e+00 5.390516025011674373e+00 5.217993935153916851e+00 3.613537293834132580e+00 1.827601674079846195e-01 8.622016088310446857e-01 8.137744963070226989e-01 2.364971775797554965e-01 1.006271083276667616e-01 6.963855662323640283e-01 1.565233008891807054e-01 -2.970389851994225339e+00 3.653184880611724861e+00 1.935032005832878932e+00 4.297781729567316411e+00 1.176655812398339218e-01 5.896196417444554694e-01 1.133224116084911443e-01 1.641720935055657749e-01 1.356121550259061226e-01 9.129459864747522246e-01 2.087582853996538257e-01 -2.220017308706188519e+00 4.277055179123661510e+00 2.946610448470177168e+00 4.140628258305603104e+00 1.457763472543867900e-01 7.702031074565489632e-01 8.501444652703253890e-01 1.330294513257342381e-01 1.345932381904378361e-01 9.070233255812026885e-01 2.529459709345026064e-01 -1.827473163612729490e+00 3.719457325505248768e+00 2.425668046888195040e+00 3.798462531570721445e+00 1.685980037140851207e-01 8.748479165705966842e-01 6.614109089932108665e-01 2.006671295966760971e-01 1.498766715189544518e-01 8.046988426958755491e-01 2.068325513922883996e-01 -2.011861256688730393e+00 4.459341306722208742e+00 1.747384208530927241e+00 4.305602052530805857e+00 1.369640420572348916e-01 6.940341670784724304e-01 4.913421287558967787e-01 2.548892989619958582e-01 1.155829078809572363e-01 6.061685061921660012e-01 3.304332648906928016e-01 -2.112795661611664322e+00 4.868808426572774906e+00 3.279714910800005434e+00 3.650451280508356877e+00 1.419598863925918553e-01 5.983590152458125866e-01 1.355220237441457920e-01 1.486793430084203116e-01 1.110359104668134506e-01 2.271811701099062386e-01 3.845229230977398327e-01 -2.702741493159502184e+00 5.127426167505330312e+00 4.645833117385335775e+00 3.565272320529887295e+00 1.982074544889757817e-01 9.875773116862327505e-01 7.797951758142528389e-01 1.419412098235247610e-01 1.085975936559029215e-01 3.388956666580011934e-01 3.385345615310740852e-01 -2.604954039423065915e+00 3.860006253575483992e+00 5.455949135486381607e+00 4.397749569930805791e+00 1.732109142142037872e-01 3.488218881388924775e-01 4.503056803441201073e-01 2.414250307774775950e-01 1.034315871735530801e-01 4.146754566310458801e-01 1.219496251863880776e-01 -2.284610497275676444e+00 4.091573383469462755e+00 8.766620926121814206e-01 3.805238984195478569e+00 1.824000209692578645e-01 8.679538818230382313e-01 6.306137365998104594e-01 1.797862197425728337e-01 1.127843588656193830e-01 7.693019137951413455e-01 2.182273348850288230e-01 -1.778642981124608946e+00 5.281250490406591780e+00 4.816562243775912577e+00 3.606779420392547841e+00 1.944827936503820687e-01 3.146924216875743863e-01 4.827093454625668301e-01 2.790318943848777988e-01 1.238359075261075415e-01 4.730705465313526092e-01 2.165439279875850387e-01 -2.205660119573626066e+00 3.906018623057314620e+00 3.098808438950821476e+00 3.962469524714903102e+00 1.278764122922472213e-01 8.139131673538335665e-01 6.447299633276130093e-01 2.766404708262772960e-01 1.104132543828842128e-01 1.780470476220779308e-01 1.575767286302599268e-01 -9.187792251636422991e-01 4.520635360541104042e+00 3.913003999633497543e+00 4.386107699916387936e+00 1.467104811141191900e-01 9.601735927987815611e-01 8.329687254664747131e-01 2.563097372100177074e-01 1.470873238467706456e-01 8.355663625764154778e-01 2.865089692404136912e-01 -1.620418679386593563e+00 4.455151734993399337e+00 2.652643455368647096e+00 3.709833706799916975e+00 1.726219927185174696e-01 4.066066497360006915e-01 4.742468337144032375e-01 1.601190260502742824e-01 1.225090469188452463e-01 2.559330642982912130e-01 3.935451288713124329e-01 -2.634703451143497688e+00 3.599626402302272599e+00 2.935598571569440374e+00 4.479426581379604144e+00 1.399304855268080072e-01 3.791615252947021508e-01 3.102965098373671737e-01 1.924104442717721186e-01 1.096632708753821350e-01 9.189879392812323466e-01 2.809589612440335227e-01 -1.041183331466688067e+00 5.845356738555910425e+00 3.396265185078986448e+00 3.858985641659212984e+00 1.606312803803088829e-01 9.074650120820573207e-01 4.850568000340470531e-01 2.200587937312311060e-01 1.038070773628793492e-01 7.286280179492417020e-01 3.622740516448220705e-01 -1.536995463136581641e+00 4.298208071650781115e+00 4.398034416603753272e+00 4.332828364653794395e+00 1.828361250722421172e-01 4.842415341624463077e-01 8.102344006074465588e-01 2.656320729226876454e-01 1.424454516815653049e-01 7.444805016013452681e-01 2.096891165203474960e-01 -1.726762710591861261e+00 5.710279151514066953e+00 1.775166194881599324e+00 4.188890844094458110e+00 1.379081396732404208e-01 4.268651678486793388e-01 7.718831108770185523e-01 1.565588527650610962e-01 1.439293533227449517e-01 3.555218150690944157e-01 1.223305949525808067e-01 -1.355982776742737261e+00 5.688184822454894984e+00 4.678560581063475610e+00 3.620998347929214045e+00 1.611944234797274833e-01 8.022523573398104846e-01 4.439146732129630735e-01 2.206987797891057645e-01 1.020485005754796781e-01 6.969234403986208637e-01 1.837898125578291686e-01 -1.113169941216570979e+00 4.335454408573486518e+00 1.784834361968751448e+00 3.761102602707468545e+00 1.191694686637761597e-01 7.127481269416700016e-01 2.248251450699672582e-01 1.347955485247042118e-01 1.277467145102355872e-01 6.990218304820912110e-01 1.679436751852968479e-01 -2.960168482835105586e+00 4.707721355596483193e+00 1.382590712025698609e+00 4.038407960720208578e+00 1.125555168194737610e-01 2.357559413586292618e-01 5.770994906989351803e-01 1.879350386234053261e-01 1.094898334098682036e-01 4.248258816999865850e-01 1.140213336385579035e-01 -1.118864937376101709e+00 4.573182873612311461e+00 4.308475753341526548e+00 4.213900520914161341e+00 1.227433918011955755e-01 3.753192073261495398e-01 8.186172901414572323e-01 1.449294863007989931e-01 1.025931979378873066e-01 9.966555797341769551e-01 3.339244435828276902e-01 -1.855594238779148863e+00 5.437816832087623453e+00 3.662665510621047282e+00 4.123872834421302258e+00 1.130807858652690817e-01 4.372973868338366765e-01 6.982846561646827155e-01 1.165699882704503559e-01 1.468355853386839049e-01 5.059838883026078760e-01 1.581735673034850020e-01 -3.135260115456945051e+00 4.599035569870046913e+00 5.115236945342947372e+00 3.593894660243203809e+00 1.514104673577201521e-01 9.763554219866369399e-01 4.074090867337517574e-01 1.368595145000004731e-01 1.495748270341901165e-01 8.259829131143232583e-01 1.141432638693803403e-01 -2.968945176028559452e+00 4.929467932909386008e+00 4.114230982326872343e+00 3.869008207424481149e+00 1.905170326052954277e-01 4.983498555794747542e-01 1.153638316666954072e-01 2.633566426703427554e-01 1.389944174266165011e-01 4.349472015173927453e-01 3.001024827140351681e-01 -3.031227276802436421e+00 3.692931028421414297e+00 1.213708806227654424e+00 3.898935681620811611e+00 1.087646036332075850e-01 2.591387425040083681e-01 8.756640786262117615e-01 1.521063399805029082e-01 1.038743576741993080e-01 9.400888456869089804e-01 2.848956650304386162e-01 -3.071455745285047279e+00 3.698824736680838665e+00 5.059118108809749437e+00 3.580707595275034016e+00 1.456721884760886487e-01 7.279961406579750216e-01 9.778425407686269777e-01 1.424988718812723043e-01 1.053955061037001595e-01 6.947082206585891706e-01 2.729759199749831611e-01 -3.032478578885265286e+00 5.008512935482928974e+00 4.796215663654627370e+00 4.263037358582866254e+00 1.200086346800280229e-01 3.289316184755843864e-01 7.866394368486426814e-01 2.142474936099085514e-01 1.384615337458702244e-01 9.048766691122693828e-01 2.577516485013068293e-01 -3.009762218433991166e+00 4.895839306964552051e+00 1.819359810830452506e+00 4.098296499971651130e+00 1.488160332238032957e-01 6.223101629721529138e-01 8.194065919445074897e-01 2.725983292656451451e-01 1.070185033924963974e-01 5.199635931706251268e-01 1.636240366057186146e-01 -2.289456465675118402e+00 3.932246519834243337e+00 3.559485425489611998e+00 3.832901805114750982e+00 1.945295704307516416e-01 5.829487307708723920e-01 8.429351165754059849e-01 1.112790131112105368e-01 1.064000998629182348e-01 6.332422383187109594e-01 3.494667405704362517e-01 -2.730964808579245506e+00 4.352744932838104930e+00 1.148578613054268782e+00 3.770579079542152989e+00 1.304683186723943067e-01 5.387336227450368886e-01 2.620318881564678293e-01 1.820926055781160180e-01 1.346367382534467139e-01 5.975715045236871248e-01 2.535697386212262261e-01 -2.537250378862445643e+00 4.000368890614870665e+00 2.304845389465830507e+00 3.622805927787705826e+00 1.171414336445756876e-01 9.936117802649172548e-01 9.637871135465386763e-01 2.943855936988987176e-01 1.140318491467141593e-01 2.353799168134481090e-01 3.742340156952155272e-01 -3.057627219698996868e+00 4.427257818905847131e+00 4.463912848902327646e+00 3.602028017295580309e+00 1.236314506709401267e-01 4.383763500269639568e-01 7.888439353713320168e-01 1.630765332626651631e-01 1.312686251286019623e-01 1.689796040320210024e-01 2.142022304869299343e-01 -3.081328353995833602e+00 5.543855979536344236e+00 2.477966857004989976e+00 4.303139377250516873e+00 1.210755957319678000e-01 6.840105961327035411e-01 2.895001147952656062e-01 1.407679377293869771e-01 1.254115493042714802e-01 7.383526971102867265e-01 2.902544235153573515e-01 -3.118135599766270971e+00 4.102369372339440545e+00 3.906915901207091757e+00 4.058077899133902378e+00 1.602780914828270398e-01 1.510137496635106658e-01 7.369393518895798190e-01 2.209595580411441440e-01 1.425137707088624250e-01 2.852092882946498098e-01 3.067556596716801698e-01 -2.239551799334403626e+00 4.116641773634519552e+00 2.140706296359249805e+00 3.529395664256766096e+00 1.620590551667094592e-01 2.218772762375178786e-01 4.034601764464382789e-01 1.211038971014095633e-01 1.207868691196941763e-01 8.809630476429158863e-01 2.066940021924182358e-01 -2.247235895183601340e+00 4.225416428529547019e+00 2.344119912488667801e+00 3.841659468392194743e+00 1.455021818329994554e-01 6.965792553945245880e-01 7.113900206197102394e-01 2.650072932528692027e-01 1.058211595955199230e-01 5.751212919124917278e-01 1.362495826749285377e-01 -1.699184060855756240e+00 5.640009972408980943e+00 3.644472535276558567e+00 3.977445056484346431e+00 1.107392983841448547e-01 8.794812909245554033e-01 2.180540256804475441e-01 2.305819638013341388e-01 1.390686902576478701e-01 5.448488620675110417e-01 1.768728669065161296e-01 -1.702023456127395695e+00 5.582069274087861466e+00 5.006890916478297093e+00 4.015972896425324734e+00 1.838375091071612344e-01 2.249846181240963416e-01 7.286809089253727389e-01 2.583719044254438879e-01 1.087243259185412952e-01 8.610287831385317059e-01 1.848211253009738320e-01 -1.142373139162560669e+00 4.601322219723116724e+00 2.439675726041149240e+00 4.360968725201479046e+00 1.190737272955591231e-01 9.401537231910768178e-01 4.055787778216641826e-01 2.495531267019300836e-01 1.240695533650892496e-01 7.629335594041481983e-01 1.584236707616314688e-01 -1.604796171058555210e+00 5.396212438304020864e+00 2.781796008196575798e+00 3.547523934068206319e+00 1.097695327542687199e-01 5.653693533850249198e-01 8.160488331894496516e-01 1.474695325214195885e-01 1.257192571935958625e-01 2.872896095117953852e-01 1.030451068584805896e-01 -1.390157786371327031e+00 4.429742239994612696e+00 2.847451440751459728e+00 3.829521092103513435e+00 1.942848907439937989e-01 6.954712772863085313e-01 7.867406169932800175e-01 2.739692059114268163e-01 1.456294432126519767e-01 2.208910604426359003e-01 1.226900660338218069e-01 -3.138422106573344195e+00 5.448526163985221160e+00 1.924814163461342265e+00 3.958288173677467547e+00 1.411833036241487427e-01 3.040594891932503763e-01 8.305912822093973746e-01 1.433905155806738663e-01 1.074110127892415334e-01 2.153133635548575286e-01 3.346699103360712968e-01 -2.708062477772331889e+00 3.683299482083374432e+00 1.056423492438328005e+00 3.666780990603489609e+00 1.490952690628338795e-01 8.667489475202504456e-01 6.887527125386696536e-01 1.534120831589808054e-01 1.040694477374303623e-01 2.452865090647471658e-01 1.386740988495697713e-01 -8.282516011050340410e-01 5.477064384645262685e+00 1.698883703797558375e+00 4.012451413633741026e+00 1.119564384168103832e-01 7.818620749617550825e-01 7.746987580628875714e-01 1.287824110513464682e-01 1.093217538122802368e-01 3.700776424303415801e-01 2.255917888021699291e-01 -1.895191799294525525e+00 4.343525833139310954e+00 5.176798202274389915e+00 3.981183114167027526e+00 1.092096454198739075e-01 2.902672405745567730e-01 8.708683215405502720e-01 2.320889177032100792e-01 1.191401437579935191e-01 7.361167051360700819e-01 2.169848789657065624e-01 -1.136566412464995679e+00 5.643839845525578269e+00 1.608784218599065063e+00 3.806836067138547719e+00 1.483512595801968481e-01 9.250228946841401179e-01 6.993814531709522386e-01 2.505246611961389203e-01 1.310081194642964686e-01 8.469011519715667902e-01 1.450718545847566043e-01 -2.900045941805958982e+00 3.585319954415842503e+00 2.129791395109237762e+00 3.937471665919381358e+00 1.319612825754607477e-01 1.444726159501562579e-01 4.497250000740331544e-01 2.871414319746337096e-01 1.056719205014992752e-01 8.779921645108753614e-01 2.400453762941494040e-01 -1.424393520198339091e+00 4.856720774070142355e+00 2.932401791838997518e+00 3.675226953135532160e+00 1.064934361970210769e-01 4.936417531957059124e-01 8.935273156897698410e-01 1.638763810127791820e-01 1.230115913666245120e-01 7.024980475471275243e-01 2.416805043250001284e-01 -8.238450532636893975e-01 4.393439447019065192e+00 1.500015402703980039e+00 3.963244619722257944e+00 1.635469479001571136e-01 5.996116376553608518e-01 4.943566638438514627e-01 2.459746566892968556e-01 1.364696604495606036e-01 3.196624747480001361e-01 2.541992137150608233e-01 -1.921153040881896645e+00 3.514598251827190101e+00 3.422355566107009750e+00 4.217652682629947414e+00 1.691638972022511123e-01 2.304367239337853368e-01 6.153272312976408864e-01 2.462818846338659662e-01 1.082613623418448440e-01 2.050663417523376775e-01 3.680312389662278028e-01 -1.834905624075987340e+00 3.739106177549017307e+00 3.682719952104243077e+00 3.590523338147031840e+00 1.646011244835515197e-01 8.127747896162788033e-01 2.742934386803018709e-01 1.479574814134864968e-01 1.178041329374460155e-01 7.503979551730823871e-01 2.823307463020579555e-01 -1.119709410476529943e+00 4.514577534205591824e+00 2.959109715566271781e+00 3.967162788705809184e+00 1.034980885066460604e-01 7.606871286124695652e-01 4.257138989444332333e-01 1.911117493159096292e-01 1.244346980607538983e-01 4.821892935075431375e-01 3.813881946457230443e-01 -2.668234731097541168e+00 4.931393764629355303e+00 5.191845044055642511e+00 4.498281444883581059e+00 1.123072042158666517e-01 5.358483454368975218e-01 8.354850362282917331e-01 2.616049731761295183e-01 1.253606198470895161e-01 6.599710340712227064e-01 2.516226817131310134e-01 -3.127303408863062906e+00 5.602467136426200867e+00 3.214059411941307509e+00 3.749213539703482923e+00 1.422409241995508389e-01 8.493448899220479298e-01 6.163240971725681971e-01 2.774417284657971772e-01 1.426150417638243906e-01 5.086736545566482581e-01 2.410827991138004278e-01 -1.530202438401145670e+00 5.737481935764255248e+00 2.886737422773544282e+00 4.004443303397713372e+00 1.059843774472421785e-01 2.382137638151524961e-01 5.349568184512867308e-01 1.361005786621438951e-01 1.434277960719724798e-01 6.465431133366147387e-01 3.302244950204492602e-01 -1.222196681168273624e+00 4.664841128220832189e+00 4.987121882656890826e+00 4.419450263465765971e+00 1.997729633801950122e-01 2.177662712560390346e-01 7.205450655865509590e-01 2.003456452095701001e-01 1.229774437735497161e-01 2.013947283243489039e-01 1.375797095422515159e-01 -8.968294420074751638e-01 4.161197306230848270e+00 4.149501343708553946e+00 3.791906401634778767e+00 1.041951552422349242e-01 2.862495447534936233e-01 9.946487194397001241e-01 1.859855759361112582e-01 1.397675557097233234e-01 2.809323606141878038e-01 3.552369416894455290e-01 -1.896954894814043779e+00 5.606830876625060966e+00 8.719240016797772386e-01 3.699639675715550080e+00 1.986129937169841264e-01 2.934170185352782401e-01 2.645677118715001885e-01 2.810837471340462135e-01 1.384099278321102300e-01 6.221307803826751082e-01 2.615801315760455381e-01 -2.644971570384802462e+00 4.350568514586578672e+00 2.225562873442048950e+00 3.710472933942349449e+00 1.717819304008261772e-01 9.292715298490905607e-01 9.155246576105517953e-01 2.452482142111472863e-01 1.098843587223767154e-01 9.236370141365903841e-01 2.414191106303196499e-01 -2.182528523503488138e+00 5.664264416463012708e+00 2.502223032211370324e+00 3.880785684712133143e+00 1.665373266612802938e-01 1.822752742283034744e-01 2.046111046999026239e-01 2.535086835307567843e-01 1.248156085048409414e-01 8.191712169419991252e-01 1.811139921559262733e-01 -2.721642673220640241e+00 4.785936044905149345e+00 5.100446136972835554e+00 3.900217814317857190e+00 1.298973902265024849e-01 2.754896509096149693e-01 3.562018561310722475e-01 1.560191302886205778e-01 1.417956493234898419e-01 4.867784801877358403e-01 1.612745757688119064e-01 -1.668016469485193998e+00 5.393981503467951910e+00 2.062583025097211031e+00 4.101465822170149877e+00 1.405409226985916693e-01 7.111368265163716673e-01 4.619061779180184679e-01 2.315363671358040831e-01 1.135783162612948038e-01 4.063904795274815296e-01 1.371435976659307054e-01 -1.704998074473295988e+00 3.836226484554256633e+00 2.954852484013247071e+00 3.548737674491003524e+00 1.263228472336746511e-01 5.345540763641658533e-01 8.666320329529673128e-01 1.072728081295986069e-01 1.219928962141625245e-01 9.344343425569459072e-01 3.694326066080567683e-01 -2.840144501910090824e+00 5.496705201750681447e+00 4.616433391441552736e+00 3.662959140272029401e+00 1.908702331533468632e-01 8.210445524853218213e-01 3.282613372815016417e-01 1.105602538571810456e-01 1.473862220389466349e-01 6.311834542592440478e-01 1.568040507342066403e-01 -2.653228694384121233e+00 3.611368677852486719e+00 2.219695176641185874e+00 4.003568560758391293e+00 1.217540701840065520e-01 7.879078200596693060e-01 4.060189669041879279e-01 1.398084657287687604e-01 1.360471096468938434e-01 3.128653572344159972e-01 1.358140261387641434e-01 -1.334864361095584595e+00 4.874138847870792546e+00 1.349046194817591138e+00 4.404911381861515984e+00 1.147815033878181040e-01 6.399085428009568810e-01 9.937032748503890067e-01 1.270727614577700226e-01 1.264479929117307833e-01 3.322716643662857461e-01 3.427866051824957072e-01 -1.983234833454628587e+00 5.722019365254650936e+00 4.975985416811076867e+00 3.772287967217335947e+00 1.473742998797452353e-01 8.554058101108544809e-01 2.681396236094922836e-01 1.881376219358761315e-01 1.436925794177544291e-01 1.938797963363849131e-01 3.508897285631630281e-01 -1.573085565583347112e+00 5.318474953219764600e+00 2.281574411576766437e+00 4.402571470717313140e+00 1.396941032384116099e-01 7.074381951932802171e-01 4.447162546475091904e-01 1.550843343010761266e-01 1.210353560602029088e-01 6.850128533137379572e-01 1.666743930373513205e-01 -3.174210289712379840e+00 4.054607051056374090e+00 8.369718112552418932e-01 4.389394366074154341e+00 1.991530791281235779e-01 6.022100665263886432e-01 8.295068707819820419e-01 2.332814731985251300e-01 1.142682831416058364e-01 7.552403742484745663e-01 2.076114421303089375e-01 -2.611428941001492809e+00 4.060025812485888785e+00 2.334296851004259654e+00 3.648206113380090265e+00 1.234856106851531521e-01 7.875206928672031648e-01 6.008851404522215223e-01 2.828347119009982924e-01 1.189786641954364010e-01 9.661669101084340294e-01 1.484092502949312387e-01 -2.871330749324381593e+00 3.781436474456280283e+00 5.150500930926586562e+00 4.373441691127017528e+00 1.789564439412645314e-01 1.750752219740061011e-01 6.328677713540279415e-01 2.537291199900995609e-01 1.448582615949150221e-01 9.628005946358523248e-01 1.503849307353114784e-01 -1.806962134755791372e+00 5.776513686972838180e+00 2.539334900522590033e+00 3.857009631732365662e+00 1.076573530294676617e-01 6.310569030078775343e-01 7.265466545671791510e-01 2.193800963820271566e-01 1.023420580713732403e-01 8.097442232650758909e-01 3.758779644149756738e-01 -1.850180040501132606e+00 5.247878318822658095e+00 5.225212079757501016e+00 4.036846863382136164e+00 1.870646371147394182e-01 1.531881017390457900e-01 8.284213941196454378e-01 1.839005822827548542e-01 1.018032868956026127e-01 6.254845477726087566e-01 1.392654297801684260e-01 -3.055169191175204801e+00 5.671169218888850949e+00 9.465030526440754155e-01 4.482713375000169975e+00 1.038442206703848181e-01 3.195559882145448949e-01 8.690777705780602380e-01 1.354962739717194276e-01 1.363182422494405854e-01 3.963944487630641778e-01 1.156433682356328291e-01 -1.539362651300204332e+00 3.747210935777977259e+00 4.395254110493795885e+00 4.250966351770996354e+00 1.774292914418208467e-01 6.453880523296532390e-01 3.449249993474002851e-01 2.913266898421762452e-01 1.238877217897198096e-01 9.643399453733025872e-01 2.743989756785835676e-01 -1.638680345770806346e+00 3.896143106382917942e+00 4.847348146239999878e+00 4.414550166263051523e+00 1.805181438054698773e-01 5.105430577821370441e-01 5.250448360791478697e-01 2.749007745819035398e-01 1.062300801641173215e-01 8.892992584211782958e-01 2.846715254149024821e-01 -1.951366601272118917e+00 5.450816910011707428e+00 4.563377808927815416e+00 3.904114094221306619e+00 1.008805067706344677e-01 2.122901903125991308e-01 3.001772943605240385e-01 2.988784884480936710e-01 1.438199021303912528e-01 1.934242853813266105e-01 1.542412309365789602e-01 -2.212802529488219427e+00 5.023223047255203078e+00 1.714995163200808914e+00 3.611556646183095687e+00 1.859447277942987975e-01 4.961688425490418108e-01 5.847846382017859446e-01 1.955057829011418447e-01 1.251714585873798802e-01 4.703939360995014196e-01 2.694859628488353032e-01 -1.263505155242729217e+00 3.618532283005624350e+00 1.136809134497670293e+00 4.396778468627276837e+00 1.430934895524666739e-01 5.353268485736918381e-01 5.141544497494381361e-01 1.341279951531004766e-01 1.241810419353235884e-01 2.190121261297087729e-01 2.749054824395055219e-01 -1.596873810395192272e+00 5.094723942823611296e+00 1.520546871957768387e+00 4.417793334892603951e+00 1.639304291375624223e-01 5.328389812156891781e-01 2.543327350729075453e-01 1.508287264374617576e-01 1.377857718215771410e-01 6.904770701785182263e-01 1.319727711809709769e-01 -3.017292182762923325e+00 5.174904606403501361e+00 2.031950947717740430e+00 4.153822852527767395e+00 1.441603221861672002e-01 5.952282557927753848e-01 2.031009657156453985e-01 1.975420573245292299e-01 1.367152642919271521e-01 9.210934175270790725e-01 3.973584464951050998e-01 -2.916543377141622706e+00 5.076507100999897659e+00 4.845360776801480363e+00 3.538848447487473514e+00 1.723956434363652646e-01 9.631502736198607195e-01 6.356912737886205589e-01 2.175004047973914667e-01 1.192249270377605530e-01 3.092963837423582385e-01 1.057700882048113328e-01 -3.051494944134807596e+00 5.573090994294898515e+00 5.482706690097900903e+00 4.171684644606594716e+00 1.497961188017154499e-01 3.317642952285989599e-01 3.702700284390630925e-01 2.229808342070374039e-01 1.289250421785680112e-01 8.721805934226373180e-01 1.730716540012242621e-01 -2.843654620758416129e+00 3.544717340580785248e+00 1.288553896810363586e+00 4.381099956780105664e+00 1.056356410353368191e-01 4.810214831547749981e-01 7.794081584377470229e-01 1.011886226879339795e-01 1.032205875647977111e-01 1.579968943555913052e-01 3.881509774091378429e-01 -1.126350457658849002e+00 5.428892007407510434e+00 3.780537904191171528e+00 3.632511433259947964e+00 1.267580251684418124e-01 2.360052016576082989e-01 9.000830092423132145e-01 1.264788305242665611e-01 1.374334225684373245e-01 6.278946887753641404e-01 3.873617169029226481e-01 -1.407083382022838114e+00 4.770520946645236293e+00 1.327603864549471879e+00 4.441993908606410635e+00 1.814968258906807796e-01 1.720594711660563547e-01 3.843625404233561582e-01 2.443468634793415917e-01 1.342028483683575246e-01 1.041942871985671870e-01 1.343694982389370129e-01 -2.055135103011035191e+00 4.900719695191266823e+00 3.173693355053994303e+00 3.783444863549481507e+00 1.393220046988969951e-01 2.104526403684752744e-01 7.392541442415230257e-01 2.603359649901315631e-01 1.003049990485403720e-01 9.713275350271607378e-01 1.426758854964513545e-01 -9.135366045716374339e-01 4.436077046781786493e+00 3.412845835143337503e+00 4.477710471067579689e+00 1.183265310880459997e-01 7.980106950223826434e-01 4.087474775280715011e-01 1.169502692838176733e-01 1.242311555585892402e-01 6.084054081857710461e-01 2.494393383913036666e-01 -2.601768625937925350e+00 4.472570844604611295e+00 1.975932210943541767e+00 3.767340762281789157e+00 1.958335009750173106e-01 8.630805372289380717e-01 4.377852611864540000e-01 2.399196078763598250e-01 1.331688009088966562e-01 2.216442939553521785e-01 1.003228780551069649e-01 -2.275385155278728977e+00 4.194192842708453384e+00 3.902935760991145919e+00 3.780947434372729177e+00 1.126991382921987417e-01 1.990146677610988291e-01 2.035799679463718426e-01 1.350176057143822606e-01 1.443497750752296693e-01 1.703036835414594719e-01 2.212753183762542208e-01 -2.603994599075837080e+00 4.564609946398391571e+00 5.087896769124067298e+00 4.075841080049235288e+00 1.282599249341298264e-01 8.840130764289533261e-01 8.029937435493695874e-01 2.376779459422898588e-01 1.400326578711223180e-01 4.327551990540089433e-01 2.013678336477432995e-01 -1.544335295290380605e+00 5.213991055916414652e+00 4.811112718959831724e+00 4.093858647827856245e+00 1.325231950526250535e-01 2.237077315606159078e-01 7.105923677569869756e-01 1.612753857317676676e-01 1.084126291778192003e-01 7.220993739866482519e-01 1.802055810411311576e-01 -1.637291150552933283e+00 4.554505328795908525e+00 1.186896927840457305e+00 3.506630642764943406e+00 1.326795387716754038e-01 3.962195512386118557e-01 9.560766144992118853e-01 2.805166354127170969e-01 1.436381806494369251e-01 9.291920274930332013e-01 2.922698071962171462e-01 -1.925586954364105319e+00 3.817697873991378721e+00 1.767290601718575882e+00 4.343906675338612189e+00 1.544770630895890839e-01 3.870880512030051568e-01 7.085660113383691616e-01 1.370144629644335643e-01 1.183389656864911460e-01 7.672498301782001429e-01 1.169825538605510085e-01 -3.169553794252507828e+00 4.202567398119679609e+00 5.018053704032675810e+00 4.384495335357316392e+00 1.681582820092792918e-01 1.802742306662362681e-01 8.590781890882507321e-01 1.865208652853750371e-01 1.078183892265186239e-01 4.499875973699910547e-01 2.360942893946611776e-01 -1.689008525242047920e+00 5.440263306391236675e+00 1.586519643212525921e+00 4.269219424972683363e+00 1.155404482920104892e-01 8.966005896368841599e-01 1.970322632639864291e-01 1.224135696945628932e-01 1.338402072071055993e-01 1.871599144451648877e-01 2.072614867838258879e-01 -2.683066881674989190e+00 5.769566644579134262e+00 5.409158467902233980e+00 3.744832173518909180e+00 1.855531980540614245e-01 5.519209479963734788e-01 5.823123882209562119e-01 2.310280035549830135e-01 1.030981179321385360e-01 6.486647582373682441e-01 1.671611477983095395e-01 -1.003865735874823084e+00 5.523208828884488497e+00 1.569530990154903272e+00 4.137945013966309205e+00 1.628773519024850902e-01 8.818440633399091677e-01 9.535323142262366325e-01 1.125051503235204586e-01 1.334824762257501019e-01 9.274989602756439355e-01 3.887216019431335434e-01 -1.414450937304148948e+00 4.009774709627832223e+00 3.049902572157858316e+00 3.654450630658403476e+00 1.244349723776441291e-01 4.264845029376093111e-01 3.157672368008053176e-01 1.715844827887032242e-01 1.151207438471212458e-01 8.794690041026086424e-01 1.752951184914083860e-01 -1.929189180159900374e+00 4.220520460733235169e+00 2.666163108574800766e+00 4.248351936882290403e+00 1.585812989565395514e-01 3.262161099993716729e-01 1.790352570006639721e-01 1.622516691111169918e-01 1.045208205228786713e-01 9.465815148388790901e-01 3.684739215938998003e-01 -1.216612772883403970e+00 4.182162830276221044e+00 4.419072499109022445e+00 3.508211094701790600e+00 1.066804656964402409e-01 2.189632370587987764e-01 4.929011665843748835e-01 2.251847956819257035e-01 1.195435995299873322e-01 1.772175454821448837e-01 2.315743139154620156e-01 -1.269821303932044287e+00 4.578310938144421804e+00 1.300916175187645241e+00 4.200478768001591590e+00 1.607830447564471132e-01 2.763937949862566579e-01 6.557133938462882394e-01 2.300443194869669639e-01 1.359603809209221359e-01 2.869225542286443220e-01 2.128690341919875495e-01 -2.590315824533125699e+00 4.372525246135611887e+00 5.100916036591867986e+00 3.974658180805566765e+00 1.725563017972202573e-01 4.749896443980837768e-01 4.857673413158433151e-01 1.024027540905871891e-01 1.309294961943058277e-01 5.189399691546534577e-01 3.238174223123501672e-01 -2.376157796924244003e+00 4.236187694495689549e+00 4.622223897244571056e+00 3.802941093179683207e+00 1.133303790857945609e-01 1.620678479743792866e-01 9.876575486688007333e-01 1.760177006887825857e-01 1.001464842016488305e-01 5.267764164590484910e-01 1.311383670855210959e-01 -1.960969048350038380e+00 4.992852418446163121e+00 3.444226441478445366e+00 4.348057776453171819e+00 1.187142142248229643e-01 6.097202372502162904e-01 4.771335241615468625e-01 1.018395510523984054e-01 1.124813714174370538e-01 5.550603131388496259e-01 3.251795275749299607e-01 -2.661088399037525143e+00 4.311405698746884951e+00 1.601858163577105199e+00 4.215328450262822102e+00 1.071752510568684813e-01 2.488524886645904211e-01 5.049056694622596764e-01 1.493192590958077326e-01 1.382687953041812357e-01 5.154402349862942101e-01 2.780377827260737678e-01 -1.383897382266646048e+00 5.261355587917741161e+00 4.633845677077979452e+00 4.454334479303704519e+00 1.137357928384414851e-01 7.765794979770163087e-01 1.856100314017218589e-01 2.121315386508654810e-01 1.240457518010847082e-01 4.579935888926069953e-01 2.724227341816600756e-01 -2.299346512088972005e+00 5.514098411759697171e+00 3.802450130020694097e+00 3.750368787268909543e+00 1.778778195660877526e-01 1.513525910487917570e-01 8.435604766256753484e-01 1.504344965655659005e-01 1.068719846540210489e-01 6.549419776149908445e-01 2.282301171897897218e-01 -8.772851983872610449e-01 5.554223054463897746e+00 3.131010716735087129e+00 3.669797323856275995e+00 1.458668260583053933e-01 3.280710772970810707e-01 7.060494767668797911e-01 2.051029794781210058e-01 1.009175306036098757e-01 5.259975984548619365e-01 1.211546189673292501e-01 -1.939021723910521189e+00 4.922616425776305427e+00 9.793890219747181103e-01 4.374925195374464337e+00 1.721495988572939173e-01 7.377044013580488224e-01 9.283704511389480052e-01 2.595480129709549777e-01 1.428768092635706588e-01 6.003139382391109447e-01 1.431465771587422942e-01 -8.629617634239006296e-01 5.612038081175980686e+00 1.858368470894325331e+00 4.193863719138571255e+00 1.328978430292439561e-01 3.994268579639956851e-01 9.662268559510817090e-01 2.525301231321692152e-01 1.490388389994168061e-01 2.326942231029916763e-01 1.649882695584523329e-01 -2.056951287291185260e+00 5.325030944840245972e+00 2.927321660942624248e+00 4.088752024695422094e+00 1.246974363707993583e-01 1.423958326502536009e-01 3.741691424933996091e-01 1.095519824330848935e-01 1.204065956062085885e-01 3.070193201445801101e-01 1.339691800392738830e-01 -1.612321427432107379e+00 4.247145614565200233e+00 2.942279432042850473e+00 3.583451656985448874e+00 1.754163094589845928e-01 5.444736188715794123e-01 3.495909689612249349e-01 1.409738896763025884e-01 1.222641878501242313e-01 4.054178243772773582e-01 3.209465548077768404e-01 -1.140120174040175627e+00 4.644233565502707606e+00 4.780502109889516404e+00 3.562420738556514088e+00 1.073944708464764641e-01 3.461936154977363067e-01 9.293675613979951455e-01 1.415736447509414186e-01 1.484010142947779498e-01 9.540701506136708421e-01 3.026179575523598175e-01 -2.917907367737258895e+00 4.597031672922160972e+00 3.083681387649982675e+00 3.595946037542931517e+00 1.837008224092083197e-01 4.408742081775489652e-01 9.037740971167685933e-01 2.722615841164770512e-01 1.453981583309786607e-01 9.073696923818477256e-01 3.006069200968452537e-01 -2.486694520520821072e+00 4.178021679118225862e+00 1.357803288110864148e+00 3.945327032016470170e+00 1.527029297164314292e-01 8.949124359120874672e-01 9.031982079847244993e-01 1.246429061647531950e-01 1.004674501488484611e-01 4.538566053616202023e-01 2.211815835838431554e-01 -3.148216465420031085e+00 3.984869666033600488e+00 5.263530311465624223e+00 4.094365733223911619e+00 1.850135078164262814e-01 6.285756661678391088e-01 4.933440092235746866e-01 2.704508707674275758e-01 1.364337239910732857e-01 4.797730687646178938e-01 1.683618536354500872e-01 -1.908493051164440235e+00 4.415707712401010454e+00 1.441883413977763428e+00 4.424869683634001127e+00 1.239274627000929441e-01 8.319589902934176884e-01 6.122672334638479263e-01 2.568953597816722167e-01 1.446727625700759967e-01 9.320360768059345880e-01 3.605922964879032522e-01 -8.509111289815812773e-01 3.597066378507721485e+00 3.353398698027170610e+00 3.864313328339622711e+00 1.616422128811189907e-01 5.696438101589709202e-01 5.062500549920693205e-01 1.969251718680600782e-01 1.122940002196787107e-01 5.667353753930512994e-01 2.935873561464689696e-01 -1.832797997705674531e+00 4.018082823161177153e+00 4.439214057370904243e+00 3.653800751945568859e+00 1.427146011965486905e-01 1.477487433659895877e-01 2.064545708509507305e-01 2.776208015803846574e-01 1.303190480922338801e-01 1.483281260628676324e-01 1.209062535346406841e-01 -2.586064070588879105e+00 3.712475702747248363e+00 2.496889049620595991e+00 4.456421321170111582e+00 1.512043704693359081e-01 1.879821825740452812e-01 1.449867512821113869e-01 2.162206492583297890e-01 1.091547359343516266e-01 2.038256388425318533e-01 1.607416487503230962e-01 -2.268850299968212525e+00 4.430211077061304792e+00 1.306017525581979921e+00 3.845074486952313908e+00 1.058529260362894298e-01 8.309660380748653541e-01 5.664018753130548589e-01 2.126013990012304289e-01 1.306427507671713562e-01 7.860367092566495906e-01 1.662884779413334457e-01 -8.919153466680580511e-01 5.746198874555858538e+00 1.366840278475000670e+00 4.181330231430240296e+00 1.916882914227582280e-01 1.357231852623217716e-01 4.123786414959764723e-01 2.188973171679073348e-01 1.320108765398515793e-01 3.877189638110616343e-01 1.091525888462350491e-01 -2.427685136358132656e+00 5.342209023593925465e+00 3.590912486160952710e+00 3.742273479453348983e+00 1.825964528753858951e-01 3.473453973750073032e-01 7.738312781334707458e-01 1.511823471189938095e-01 1.320881216015308834e-01 4.160163490671040520e-01 3.215308010689265084e-01 -2.031511648684456883e+00 5.169468530387552718e+00 3.836415381315333661e+00 3.544383126568928954e+00 1.961457476251338983e-01 5.843005218873066342e-01 3.444789997758009870e-01 1.906731308222092691e-01 1.352490110811718493e-01 5.480837466876259390e-01 1.192820486877769204e-01 -1.420982830001170427e+00 5.841574050305798238e+00 3.312518403621657725e+00 3.605982701712390881e+00 1.539236108822201465e-01 6.681744983408359762e-01 2.105408368831498400e-01 1.563804975599950298e-01 1.375963833897248523e-01 3.830584966729759788e-01 3.411465872563266277e-01 -1.297660650843852181e+00 3.939677020464851687e+00 4.864547641587738447e+00 4.346343996119893305e+00 1.168832901409886521e-01 4.140680210466848310e-01 1.523353390040855238e-01 1.338981954796327756e-01 1.455325858609649581e-01 1.458690325781974440e-01 1.445795351127240058e-01 -1.654884666235411750e+00 5.273123767223383496e+00 3.657804808087259829e+00 3.536851093933892631e+00 1.833204115341119655e-01 2.347663238156871002e-01 3.832240617108663150e-01 1.806164494387691444e-01 1.378197057693487382e-01 3.732778781052660255e-01 3.502872394716506355e-01 -1.122524331185460911e+00 4.609692860815927773e+00 5.072077548643498801e+00 4.147037744828457662e+00 1.743603796843902487e-01 4.004176236846802572e-01 9.194507476862466833e-01 1.698705531178382744e-01 1.344698919726217690e-01 1.889640698626948168e-01 1.155071367403098515e-01 -2.957566304015187164e+00 4.465408750946695093e+00 9.420472698853246118e-01 3.660325736477508141e+00 1.297416925221591133e-01 3.515920205153910683e-01 4.918126515751682915e-01 2.881541986593466609e-01 1.337978304037754640e-01 8.370472708289591335e-01 3.818471663750366840e-01 -2.592270339599461071e+00 3.790432427343735533e+00 4.014274340970045429e+00 3.501775551058009306e+00 1.966235871617928177e-01 3.673405136111107527e-01 9.390818085846304175e-01 1.729474421929728667e-01 1.494029540846522619e-01 6.677370985259156733e-01 3.390697524852716027e-01 -2.384362605695802717e+00 5.874191763127317500e+00 2.490751942640867966e+00 3.914232066460117565e+00 1.696374377618878326e-01 1.977611443941511005e-01 2.561174635565347524e-01 1.198490186662396484e-01 1.270198230780671955e-01 2.830343232180335122e-01 1.494198659942258811e-01 -1.687624364987446501e+00 4.291017651519208442e+00 4.920408155238007453e+00 4.327578396846976538e+00 1.301247883595486043e-01 9.128197309241193880e-01 8.126686713768556114e-01 2.102808399996164146e-01 1.404623665870531335e-01 1.292547620272137265e-01 1.435949248545137780e-01 -2.705648370821786663e+00 4.158938672199586684e+00 2.707169780021534855e+00 4.152107422712021823e+00 1.919152264705441813e-01 3.766880767428645305e-01 3.590595263639977386e-01 1.145471506909640919e-01 1.026747156584205262e-01 4.801480850608513817e-01 1.556418042791708756e-01 -2.493367957930346712e+00 4.288784847789890442e+00 3.385041225099651108e+00 3.659554499016112850e+00 1.221369732010534753e-01 8.577838573908151965e-01 2.255779335430783683e-01 1.619866869208702598e-01 1.408470014676043436e-01 7.833818108406366276e-01 3.470197678405112507e-01 -1.085347275219761709e+00 5.825636192753218090e+00 2.465925974789262121e+00 4.017872977710591265e+00 1.960618944740530056e-01 3.002018020249915264e-01 3.347473979560522395e-01 1.101199274625700025e-01 1.104890991719294502e-01 4.228855284840116191e-01 1.710788061083027278e-01 -2.245616463815518493e+00 5.235270076834009245e+00 2.038335295532901714e+00 3.663479442029260902e+00 1.924723326468204265e-01 6.110430646742016636e-01 9.323917353609637582e-01 1.076335882600324284e-01 1.199574811769300309e-01 7.046879905921530352e-01 2.676349251623961756e-01 -1.187713131410757628e+00 5.904215156804084152e+00 5.113927180688226493e+00 3.842735957162315863e+00 1.443624594222707724e-01 2.802107668386609740e-01 8.532129298312761678e-01 1.216350027099679099e-01 1.011210215902022397e-01 6.119113884923330637e-01 3.146426257430119389e-01 -2.679183248818823415e+00 4.697459573715338621e+00 2.046270125985118593e+00 3.683586347085584300e+00 1.972699301513614611e-01 8.771260532432691992e-01 2.923507806140626664e-01 1.543933797340898972e-01 1.136444370517628311e-01 4.919325266281128206e-01 1.910209032126307105e-01 -2.923714735276861099e+00 4.633463524166646863e+00 2.968789451125690704e+00 3.725741805572780230e+00 1.687981136537332338e-01 6.805890845100832642e-01 2.146974201658128911e-01 2.468090569819784974e-01 1.291943793935687035e-01 2.892532683351206613e-01 1.136910816776536548e-01 -3.082794174977911972e+00 3.952812682164869251e+00 1.477396760544337884e+00 4.403759634864504058e+00 1.403348853791937523e-01 5.078580830723613548e-01 4.487848227130596390e-01 2.284027801703097105e-01 1.222069459222602239e-01 1.381692168199326332e-01 3.227168409699927576e-01 -1.373996968395343909e+00 4.230624372417408630e+00 1.311440373680365923e+00 3.592088057255293787e+00 1.522629902570684091e-01 7.911164920497196773e-01 3.766451057295540084e-01 2.159872756380785686e-01 1.414322265159546621e-01 5.734538783079521362e-01 2.710564984267826993e-01 -2.358184688553004449e+00 4.408569457860338048e+00 1.485186694221334314e+00 3.969721836219872735e+00 1.261393961073478398e-01 4.916291304376565474e-01 3.462201578335439844e-01 1.997608871712098777e-01 1.299103740709630639e-01 5.375863542893305480e-01 3.927298818692884774e-01 -1.380920723327671240e+00 3.824963205766434893e+00 3.986911600935417965e+00 4.336933856095282813e+00 1.917241840849116530e-01 4.623801040092221371e-01 1.738885635380451322e-01 1.162097494416718668e-01 1.082359951830086514e-01 8.150679656259992578e-01 3.424138551513661866e-01 -1.372124416101038857e+00 5.578858752953397726e+00 1.210970872904191697e+00 3.861428495345109013e+00 1.857808704953707313e-01 7.777986722469938385e-01 5.757566454882441231e-01 1.725190633427375331e-01 1.158709514947416641e-01 1.751924917520952252e-01 3.938450282417373938e-01 -9.607779605980060200e-01 4.792868250131889774e+00 1.628696293369252590e+00 3.923542681643064522e+00 1.705061693536557843e-01 5.498044063989567798e-01 7.408237248321135615e-01 1.358398083712633875e-01 1.171979550173280343e-01 3.816420286130238759e-01 3.924910997871099427e-01 -1.300225469492415131e+00 5.132581106322120945e+00 3.341759245575248727e+00 3.556572087490757372e+00 1.559419235827401717e-01 9.611926170283379145e-01 7.380328378000683420e-01 2.787247159998629265e-01 1.083367686025813736e-01 5.127479244275099379e-01 2.631030188790096647e-01 -2.642687897303795275e+00 5.347273783100251698e+00 4.445960353531180687e+00 3.792652758426113824e+00 1.644470859814840813e-01 2.678395416021124298e-01 7.016642864771381882e-01 1.928710935993732667e-01 1.146220845806062844e-01 4.469266508404826643e-01 2.278167657643854482e-01 -2.228104672221277394e+00 5.908223845368254956e+00 4.690273896590271718e+00 3.907008918262218966e+00 1.564008354060530126e-01 5.038123030258742086e-01 4.579216846908069627e-01 1.983609222094385172e-01 1.215877956707707708e-01 7.435029306968251595e-01 3.761704290981484622e-01 -1.962226892297763259e+00 3.724658702173644809e+00 1.067141847033799884e+00 3.784010214981639475e+00 1.491100936136982025e-01 4.678280997515238404e-01 9.273669095696412956e-01 1.629497452450901496e-01 1.297142012642331643e-01 2.916446310857795376e-01 1.184169040931159905e-01 -2.480635660476306903e+00 3.986285722992087610e+00 4.914744560629526582e+00 4.186483398552899082e+00 1.468767835855045445e-01 2.535937767826456080e-01 2.074526855404961456e-01 1.140384689409763008e-01 1.163349577767843757e-01 5.563644371573542857e-01 3.274250973895371786e-01 -1.608662315146668575e+00 4.150874473047019286e+00 1.597948427656368020e+00 3.686683995449574702e+00 1.433294887478910040e-01 5.840867932893503145e-01 5.108042720519538893e-01 2.391929107065341731e-01 1.421640199607546173e-01 6.307992938452875453e-01 1.439145552240905235e-01 -2.462765710469202673e+00 4.454261154463854844e+00 2.208560922026191697e+00 3.755224509466144056e+00 1.601540585832732233e-01 3.088212875919804090e-01 3.528552744271015174e-01 1.669665191366305201e-01 1.000843475051870907e-01 9.233691103943046929e-01 2.337341036058188659e-01 -1.973384608041702792e+00 3.506763898591045869e+00 1.001276460047534345e+00 3.678207378175916364e+00 1.339352901962170272e-01 1.258364638034727145e-01 7.400852422123845864e-01 1.440132884211027531e-01 1.218632796403446572e-01 6.508024353590003974e-01 1.882401167655388119e-01 -1.044288471735259849e+00 4.536394105919066888e+00 5.420847883035417425e+00 3.862177348582033432e+00 1.686316997133867623e-01 5.991715030414570542e-01 1.635889573787216722e-01 2.483515278736260212e-01 1.113366186324397100e-01 6.239043206148505716e-01 3.898577408342434047e-01 -1.050413576773155722e+00 3.572645285431169881e+00 3.550282205274380765e+00 3.552779724283396057e+00 1.537438450777158794e-01 1.281142569797547592e-01 1.846385699061754426e-01 1.524364886404800390e-01 1.477828821812710580e-01 3.767759044828485893e-01 1.334984660748106400e-01 -2.195243283330640338e+00 4.114066006763007266e+00 4.958695134406752025e+00 4.338615923514982597e+00 1.700773557017336568e-01 4.888146858474449186e-01 6.543888195419828024e-01 2.402728446017201591e-01 1.393606644029213859e-01 5.388568724849942537e-01 3.366856952794784474e-01 -2.788757966873076644e+00 5.508839972745942504e+00 2.155373704156081871e+00 3.964353359286270972e+00 1.365806468122935102e-01 4.924582512124031641e-01 1.110868981423687868e-01 2.350183074319707466e-01 1.486857255385079513e-01 2.344394364594441504e-01 1.572151919137744214e-01 -1.905371645659677426e+00 4.149032347495362316e+00 3.686991882492757888e+00 4.110326997808886773e+00 1.061035631925389827e-01 7.589835309687665843e-01 7.553748046914723346e-01 2.868235769060566431e-01 1.061615294158689687e-01 4.029802919350014001e-01 2.351253767956444640e-01 -1.891949358843914908e+00 4.689296140557959625e+00 2.880470853251194008e+00 4.258735707237063295e+00 1.920712634922316919e-01 6.466464077779112696e-01 4.709147002701260520e-01 1.315347269557476106e-01 1.340654366331732739e-01 7.193998547741855543e-01 2.991776991044298173e-01 -2.027802867382059837e+00 5.334419671157284881e+00 2.663901432201761565e+00 4.288307712014017170e+00 1.181509886878822496e-01 1.163915329594668036e-01 6.949461990280270118e-01 1.844473479330449028e-01 1.394816368607941226e-01 2.444594337140553741e-01 2.727592502462174995e-01 -3.157272912850869417e+00 4.497605920385223222e+00 4.526853591887686434e+00 4.182389592920170429e+00 1.120382347278445767e-01 6.428873689554613913e-01 3.255108286362118353e-01 1.583535070119732879e-01 1.316046400023548058e-01 5.146933201439115591e-01 2.560105296076186643e-01 -2.888075078692069475e+00 3.715197677079602023e+00 4.204153936145094583e+00 3.738074438320589721e+00 1.896031065985702702e-01 6.254999339179647677e-01 9.912842605074437818e-01 2.932186161360491594e-01 1.234736433340253847e-01 4.070899831011002279e-01 3.120431636986960022e-01 -2.768850765423764848e+00 3.886581412257161361e+00 3.862719861660638188e+00 4.089514057717060780e+00 1.425978457762854257e-01 6.822965003108397708e-01 3.044701067735926525e-01 1.893990024221323121e-01 1.256236234205271862e-01 8.496018118071794190e-01 3.462809726422732548e-01 -1.526223185273533733e+00 5.629240114510086102e+00 5.394877059771499006e+00 4.204980893622325411e+00 1.260490505260879190e-01 8.931571995165350497e-01 1.136763182844392900e-01 2.336531380281035297e-01 1.057046081277899785e-01 5.072195887694322947e-01 3.825897374387245975e-01 -2.444765508845119673e+00 5.757527193256677833e+00 1.235535659573416156e+00 4.133628952244533750e+00 1.768165276002410524e-01 8.175217863090110670e-01 5.183713389451840570e-01 1.817443607109216208e-01 1.479369992454436233e-01 7.709470428991899160e-01 2.016609630177106927e-01 -1.735397709715543968e+00 5.195586768893440066e+00 2.161463447752418610e+00 4.170129184776209641e+00 1.285618631253548638e-01 3.590849667356277308e-01 5.576123577852472035e-01 1.463267425333451277e-01 1.176916900793487375e-01 6.266113080754710518e-01 3.070742833879176459e-01 -2.750739560339245493e+00 5.789524601368511547e+00 4.858410309318326625e+00 3.953600289618416141e+00 1.415315175690935456e-01 5.970047333640702281e-01 6.323320057069395927e-01 1.908747184602287983e-01 1.252260662576810124e-01 2.956764609882785999e-01 3.355701756840042682e-01 -1.650761113472061226e+00 4.345295216522039539e+00 1.434317700485517655e+00 3.976152177549207689e+00 1.994815084850687370e-01 3.577443077700465102e-01 9.826648995687489174e-01 1.501870501668518265e-01 1.343824285015386977e-01 2.303245042990375857e-01 3.042813344359278638e-01 -2.858725887327948634e+00 4.049161720560860545e+00 2.561735175668458098e+00 3.541735760513426978e+00 1.363583763770714330e-01 9.338662530147839869e-01 3.010210753878919121e-01 1.990480048819170955e-01 1.044349169331039856e-01 7.049479439814734238e-01 2.091069674677590862e-01 -1.007521055449049907e+00 4.646666316875322167e+00 3.300706905113706568e+00 4.207994267724558313e+00 1.599403166737725090e-01 1.546071057019655359e-01 5.892818588393391455e-01 2.427160046216144118e-01 1.415856778406091587e-01 5.882085405218877572e-01 2.235300748161636875e-01 -1.925704760702558138e+00 4.947997764423917033e+00 2.240806799687995898e+00 4.474696761549750157e+00 1.890432794819423001e-01 9.277345410463627706e-01 3.536254834243494072e-01 1.898254834322705420e-01 1.251235966318542669e-01 6.637404350917438522e-01 1.595214088310131784e-01 -1.080936762449163036e+00 5.230467785872565223e+00 3.497165318686188407e+00 3.834949378623957017e+00 1.664733212662177497e-01 9.372477718765700461e-01 3.756421837094684468e-01 2.095893996026299555e-01 1.031424961279264751e-01 5.304115967803236797e-01 1.753309122445897428e-01 -2.646330641988432042e+00 4.386068734478634212e+00 1.820811829412367855e+00 3.695266182550327461e+00 1.276751227308683956e-01 4.693467405130067327e-01 7.218198063909925244e-01 2.485903367035238731e-01 1.241279656218088057e-01 5.111879796018662381e-01 2.378196383019121340e-01 -1.740124731856244944e+00 5.716347969009698993e+00 1.993150435524073005e+00 3.908359983024612294e+00 1.172806582440868162e-01 3.845803375578252803e-01 1.886708277920448595e-01 2.431445602953532514e-01 1.271619694504960429e-01 6.350376580580189279e-01 3.073419721473186206e-01 -1.345043607540644448e+00 5.997568667940392118e+00 3.508323245223857967e+00 3.735853569940514873e+00 1.388546767405229865e-01 1.917655765441205751e-01 4.392017698403697379e-01 2.854205682240612552e-01 1.274576150306004352e-01 2.184588456300748660e-01 3.455056791466318833e-01 -1.095555423786533922e+00 5.541048102227678740e+00 1.458356669446738252e+00 4.308698608481188685e+00 1.861868037037630041e-01 8.861901447162885415e-01 7.564789155258609954e-01 2.955327747828993545e-01 1.245034643956388909e-01 3.589804734160882971e-01 1.067023105925475196e-01 -2.243288969690071077e+00 5.808643759994050804e+00 4.033159715394577738e+00 4.150168214263199928e+00 1.452428106602645652e-01 1.698163732611740473e-01 3.243482022766576711e-01 1.684232869297994650e-01 1.134155138916253386e-01 4.423954284210867005e-01 3.049041737422104603e-01 -9.968192782059814849e-01 4.348711007920461391e+00 1.254560979509783625e+00 3.676397915036339725e+00 1.666626052112548106e-01 8.500726179810909056e-01 6.285915992746636816e-01 1.884202534484960001e-01 1.366501861226794290e-01 8.301753790447521375e-01 3.468411546658098366e-01 -8.213751261940602788e-01 3.804110817037187342e+00 4.665896012383663027e+00 3.554986536421240295e+00 1.695270619707792137e-01 7.428564722836492606e-01 1.245217140791066296e-01 2.203120029944141689e-01 1.195562726272084153e-01 9.374752960663639278e-01 2.956406312197988884e-01 -1.066943772311876204e+00 4.380823726686609021e+00 4.064111553229266427e+00 4.497377504841879592e+00 1.892168998433453320e-01 4.501457708544814862e-01 8.921117173232703257e-01 1.467947050283709975e-01 1.127072259006865890e-01 5.008912062151249511e-01 3.457381907366724461e-01 -9.920137172752385712e-01 5.790473305057727060e+00 3.545666151067854877e+00 4.145807901740785617e+00 1.878519254546765771e-01 8.057666588042089462e-01 7.663571951200872645e-01 1.743478447523361119e-01 1.294767385207507004e-01 5.703187475444131405e-01 1.505988977699405096e-01 -1.551885695078503602e+00 4.629090338345069000e+00 1.006358650501455898e+00 3.608096186345610246e+00 1.791784868390651209e-01 7.549866751912855944e-01 7.834463877171647939e-01 1.952972344005398098e-01 1.179453048957983113e-01 6.618596847854931742e-01 3.094547883370091235e-01 -1.615075377402959145e+00 5.702036230101477088e+00 1.729710913971794106e+00 4.399160499487868137e+00 1.127703147356209495e-01 5.628203220694723008e-01 3.481388694797863392e-01 2.020321857878574767e-01 1.425820048798697171e-01 2.173610591770199774e-01 3.478149247806286981e-01 -1.499274523418169469e+00 4.744391371146660319e+00 5.199271329148369425e+00 4.069281577557236851e+00 1.922174060300579079e-01 9.389514696468354016e-01 8.154997779960655446e-01 1.815772338510485140e-01 1.018565306045072089e-01 4.365055366264455339e-01 2.104710926492499301e-01 -3.041993924029972263e+00 4.399473633069814760e+00 3.933319927718955000e+00 3.758020744235729627e+00 1.318417790239927445e-01 5.811159079177237174e-01 9.347888946770054330e-01 2.353092353963801564e-01 1.007000338544456752e-01 8.590118709360572424e-01 2.660436302131645725e-01 -8.108403109736342929e-01 5.176806374539980382e+00 4.096557540903131844e+00 3.906365639794170619e+00 1.079169091184295076e-01 2.387619395191209470e-01 6.546362327439851914e-01 2.446054323021038535e-01 1.044962978292218320e-01 3.622571924325551640e-01 1.561466919593390568e-01 -2.489912254928180246e+00 4.264373994293896075e+00 4.338119712099826941e+00 3.737323066012628203e+00 1.162607990928110208e-01 3.987534028079280368e-01 5.998906476762403406e-01 1.016735388002403401e-01 1.110667367625755714e-01 9.140072797458477227e-01 3.350609313101060582e-01 -1.676674822909588691e+00 3.837760325615293233e+00 2.401188070367638261e+00 4.306097357491190714e+00 1.821558930042260771e-01 9.576352967487091750e-01 9.641686791499129994e-01 1.835507410214019530e-01 1.372070229704994704e-01 4.084308023047329428e-01 2.275078775670268394e-01 -1.792706999409797941e+00 5.159071813588240296e+00 3.194305627109685908e+00 4.278471122859421882e+00 1.605013679269410021e-01 1.316760592546686315e-01 6.824400556058444201e-01 1.573774546874328051e-01 1.368523262924852268e-01 9.690736813781503090e-01 1.278708842547615909e-01 -2.324753422902929412e+00 5.098127293908395252e+00 2.449376475238173256e+00 4.285728375984734662e+00 1.951829194037916215e-01 7.177074823202599374e-01 4.165471033016490132e-01 2.592252145494015059e-01 1.062885250542099647e-01 3.334776772790508659e-01 3.572863033827273771e-01 -2.039909348415578805e+00 4.266881664909813132e+00 2.592778465323409165e+00 4.282150870092164219e+00 1.329423104505312314e-01 3.310995821481830248e-01 8.002142406814675146e-01 2.041376032943841845e-01 1.499224727283419156e-01 4.268942731167878479e-01 1.851478485868652268e-01 -3.023162995770857897e+00 3.956625417345107643e+00 1.412089155351299308e+00 4.010341128694085100e+00 1.435259571196815243e-01 3.426603506876283456e-01 5.150716102734147483e-01 1.757934531621475893e-01 1.409520315679335667e-01 5.680422597977577981e-01 3.269975418142224144e-01 -2.188761307095002273e+00 3.875812316243134603e+00 1.761782415260112256e+00 4.189041793128807534e+00 1.463787978732155881e-01 3.722326331682574985e-01 6.201733052744442531e-01 2.306607258863760390e-01 1.398331685839422356e-01 3.146599409279178250e-01 3.770476331303662665e-01 -1.610385152301697431e+00 4.241852070620849346e+00 9.531297008793863101e-01 4.316498601605815111e+00 1.392675702686571038e-01 4.540597414355183048e-01 8.730766860523174744e-01 1.427643282879900166e-01 1.112800561655606646e-01 3.401430592199067293e-01 2.051832630569576932e-01 -1.498147780175709709e+00 4.234853727414566116e+00 2.618888576628143561e+00 4.165911844418195287e+00 1.648901134786846523e-01 4.742497535067078385e-01 6.634499077151594371e-01 2.258937706352991404e-01 1.226907807544662110e-01 1.851214012439502676e-01 1.273183894888341716e-01 -2.460719905493346182e+00 5.122903625664335436e+00 4.762828859348431365e+00 4.468105433286654105e+00 1.563696852335332010e-01 2.127760173536391575e-01 2.462448393677847402e-01 1.578423026361541193e-01 1.438899761429214830e-01 9.114399671219575172e-01 1.477010551315472153e-01 -2.539724485659585973e+00 3.809147321847442313e+00 3.305703379486904403e+00 4.393347088050714611e+00 1.466313767520829869e-01 2.148589959155441376e-01 3.270280079866157985e-01 2.030323844366548336e-01 1.042575826498347014e-01 3.628580847393829689e-01 2.098362270172308142e-01 -1.838529081138798871e+00 4.422410802391896212e+00 4.936167146749340873e+00 3.715685448321263351e+00 1.891089198581879516e-01 5.635066284367322709e-01 6.882050548621936326e-01 2.550725214019405884e-01 1.029624462074539282e-01 3.271555114430703126e-01 2.567657796962461436e-01 -8.877634273582455382e-01 5.558692610712514970e+00 3.097522620722854114e+00 3.765556197183258735e+00 1.720037178309031800e-01 2.423942141640738068e-01 3.945306115769274813e-01 1.856366197949199659e-01 1.298690301837634731e-01 7.952965822748174762e-01 2.518147348561332044e-01 -2.151061496173672261e+00 3.935801141745402187e+00 5.219251929998210748e+00 4.216813273879683521e+00 1.936744831380953491e-01 7.669854112316029093e-01 8.082874660787175980e-01 2.746527828932646687e-01 1.471753355205200897e-01 5.717389413072614390e-01 1.270766721371945351e-01 -2.547402468538945808e+00 3.617447995527396376e+00 2.193219302865123232e+00 4.100565531975276734e+00 1.289040721348453378e-01 1.836515159106417161e-01 4.613115973490272692e-01 1.266204907222830411e-01 1.399247316277194009e-01 1.170477669371585427e-01 2.135423340569878592e-01 -1.035700059549500507e+00 4.617573821917984489e+00 3.851365380855703791e+00 3.762055419683267399e+00 1.682628679127827209e-01 9.954902989199155838e-01 1.099940212310341475e-01 1.439308066655005658e-01 1.306780545014107897e-01 8.873939281945577573e-01 1.893713761811569030e-01 -9.759513113864199951e-01 3.811094311218031994e+00 4.244685955951697842e+00 4.341609277412623591e+00 1.015683976795418719e-01 4.329955684232158486e-01 1.038447879930574497e-01 1.575570042081095301e-01 1.108714718641472530e-01 1.901199739855974347e-01 3.408628806757095786e-01 -2.214349123778481143e+00 4.883526919371778519e+00 4.495678820027047884e+00 3.827468424675877667e+00 1.591886644569248388e-01 5.600643909215328176e-01 5.394537471176362731e-01 2.814588841833072230e-01 1.099487771381034984e-01 5.654148359526447454e-01 1.767065492635087609e-01 -2.834324353672957209e+00 4.046419492567842724e+00 3.841757749113547504e+00 4.007990846582069722e+00 1.928984939112233232e-01 8.230692252596184533e-01 9.725697862783835301e-01 2.292655698467734038e-01 1.365900751173612648e-01 1.918163835674523976e-01 1.658286515580383869e-01 -1.669998201014048611e+00 3.539066114280109865e+00 3.941276967878711623e+00 4.225246278085718288e+00 1.391070027137947251e-01 1.017035001232533958e-01 3.403156703292514740e-01 1.191238469661481947e-01 1.156401547324445722e-01 6.163667375595300868e-01 2.118163825002100653e-01 -2.292264843973084609e+00 4.540066498175256982e+00 4.570799300052262204e+00 3.589459365198528928e+00 1.807652805908951943e-01 8.980148327617650805e-01 6.905651539581041387e-01 2.827696636563303834e-01 1.258501810726735948e-01 6.479702073776795190e-01 2.257839250899801586e-01 -2.510058668377735724e+00 4.534786517867388511e+00 4.293566520530665898e+00 4.091807448596422425e+00 1.493972090977847278e-01 4.237951247673390487e-01 1.411043870055589677e-01 1.555945470703772593e-01 1.469475522472801776e-01 7.402306551506172561e-01 3.110302711851551383e-01 -2.456946384200080047e+00 5.698258035719059755e+00 1.516196516444501041e+00 3.859902231389998661e+00 1.039620112038781852e-01 8.350725813946134890e-01 5.361360908405259362e-01 2.691139996898256337e-01 1.235433396411254603e-01 2.742201383536855275e-01 2.733132946256062734e-01 -1.744527897137426287e+00 4.788449190452893411e+00 3.037663235652696692e+00 3.934464094018891522e+00 1.243600441016359803e-01 1.451215844606833505e-01 2.088670359533323362e-01 1.702833340337745749e-01 1.030192691599220584e-01 2.822708864016508779e-01 2.901304458940014430e-01 -2.773455472812583977e+00 3.569984983806723911e+00 5.258306276022190140e+00 4.257609739866827780e+00 1.711838217036601439e-01 1.206390119813067346e-01 1.520847800722100740e-01 1.826223881927523107e-01 1.377439553379160020e-01 4.282072219571887439e-01 3.506609876947428539e-01 -2.892153040537585262e+00 5.806294714602522333e+00 2.724008821099563882e+00 4.111300564999154972e+00 1.885078527475355092e-01 6.572035306407201238e-01 9.834092537716345728e-01 2.226008217674889100e-01 1.014760345425967658e-01 7.549943471812610163e-01 3.611927853443878123e-01 -1.408781998105796074e+00 4.022400512153024188e+00 1.037672463769236719e+00 4.138782805394170872e+00 1.864264468772110495e-01 6.613774927518404345e-01 3.076418118344934616e-01 1.720015340343208354e-01 1.293902902463965332e-01 2.725615858263437663e-01 2.208342009909965431e-01 -1.857672222204148849e+00 5.499310041301086471e+00 5.466143537650299145e+00 4.334248555966803806e+00 1.996376625039252284e-01 2.573557214411962835e-01 7.896961603082549574e-01 1.635458792133568651e-01 1.112205398721973493e-01 1.913075641577951513e-01 1.490958846404307203e-01 -2.755616054118558367e+00 4.200850829530508257e+00 5.231537711253379186e+00 3.975497179851204432e+00 1.872317300316314048e-01 7.401893020493907072e-01 8.114287847608600002e-01 2.638422915737385077e-01 1.043001181604684829e-01 4.619780246849450878e-01 3.677850932964334962e-01 -3.149751106920635202e+00 4.892672656407194509e+00 3.710922259623542274e+00 4.142741967619494758e+00 1.416461045911422412e-01 1.984835885994888915e-01 6.248584838603581382e-01 1.577848701937872022e-01 1.452755116960812998e-01 7.330756019566807558e-01 2.653056600855339120e-01 -9.215068318008103887e-01 5.510471411147198850e+00 2.338914361599478298e+00 3.600811514209509845e+00 1.548577143712510651e-01 5.711812466594270443e-01 6.225693693087839264e-01 2.959297480915080159e-01 1.237935192136912638e-01 7.492522351263087854e-01 1.077573933836903086e-01 -2.599431638187104099e+00 4.686158491064190912e+00 3.166368370704423008e+00 4.398662281078141056e+00 1.530429921495775614e-01 7.575483396935162039e-01 1.256122605243472912e-01 2.519315531955372833e-01 1.013380069780993736e-01 2.530099447631266596e-01 2.554213974423615863e-01 -3.018542351072406760e+00 5.897928246503861160e+00 2.764188576806379860e+00 4.219547552359705911e+00 1.169999100751674681e-01 8.260307597057414686e-01 3.324784513276313191e-01 2.147813150896759060e-01 1.488107820122900604e-01 5.223360461816080047e-01 1.980339791278225015e-01 -1.506820261459862920e+00 5.066485856526323772e+00 2.317269478694145235e+00 4.387429696114844901e+00 1.451094551873945426e-01 3.642772030861276544e-01 3.088143813324203402e-01 2.221772997104384251e-01 1.193485733112565617e-01 8.382559944672052232e-01 1.406270534499010905e-01 -2.390201557415664091e+00 3.805120135603681675e+00 5.297702366657730089e+00 3.511903634023921139e+00 1.998186000334885304e-01 2.159133398692163475e-01 9.556482157931599497e-01 1.412561446154519396e-01 1.148586745743001569e-01 8.827439479861846072e-01 3.254393674679986193e-01 -1.569774697339703540e+00 5.200085757747550552e+00 3.145780480519992928e+00 4.476680272340947120e+00 1.761544802176599755e-01 8.454672418368261999e-01 6.343844165603269580e-01 1.935205717911723244e-01 1.341802771927453064e-01 6.921556231841693441e-01 2.513021565204715535e-01 -3.182476705213453272e+00 4.846403480307089673e+00 3.363013734722306580e+00 4.315413167221179513e+00 1.690320223569726221e-01 8.052084668131196388e-01 1.498403505972654703e-01 2.486473710372929802e-01 1.405850565915829908e-01 6.828919444594283572e-01 2.489423901935370609e-01 -1.694517499883703149e+00 5.621006923051323767e+00 3.357119873325646431e+00 4.030993113655513049e+00 1.597995654474640148e-01 2.494540409757318999e-01 6.312985079092110485e-01 1.161019495691141962e-01 1.305110119486846409e-01 5.574365136337016136e-01 2.855867726615682334e-01 -1.328938049414763789e+00 5.323252571356940521e+00 5.471665286618333290e+00 4.070865339468213051e+00 1.699528882037390498e-01 4.444402292452508396e-01 2.795233134262118391e-01 1.274430505423892468e-01 1.048812133874749836e-01 9.432342735114389587e-01 1.695588258615214616e-01 -2.374038971043088253e+00 5.872206474899440920e+00 3.788296008715775542e+00 4.352485766828363190e+00 1.592044500617228742e-01 1.641189500424130032e-01 4.867909773237835136e-01 1.499209025864453315e-01 1.307971054827250790e-01 8.118255007867762885e-01 2.244536761587091478e-01 -2.955018700346309757e+00 5.645667600502067174e+00 1.984397214672081633e+00 4.109196480583607425e+00 1.948176648155427459e-01 4.725874012253908907e-01 3.202283092672629783e-01 2.461997862116953872e-01 1.087866246796575231e-01 4.287198239708148728e-01 2.308653042453047977e-01 -2.648454202251462775e+00 5.361016037205981632e+00 4.883822137108593253e+00 4.205125478858771082e+00 1.030249597188152566e-01 4.552851533418240670e-01 1.833738545602687231e-01 2.907543231772473091e-01 1.348421022283615156e-01 5.057552890164189741e-01 3.524240752857575876e-01 -1.616462368829546747e+00 4.295445599029323880e+00 1.866960988781593445e+00 3.993038305507222496e+00 1.653598048244485086e-01 4.205866034480227889e-01 7.297609961590821870e-01 2.967125738586090522e-01 1.190109089728061398e-01 7.175503935340197259e-01 2.907910009277311358e-01 -3.077282193232153240e+00 4.338375846238463396e+00 2.765733013845850685e+00 3.957409294615728435e+00 1.021925801999660488e-01 2.652825226162087158e-01 1.238029422785329597e-01 2.711578216629834115e-01 1.035039172486238446e-01 4.826003512423492348e-01 1.774024317262056505e-01 -2.317043889621626995e+00 4.792271121768481912e+00 5.001412265852061445e+00 3.853197506893895063e+00 1.075496626876386169e-01 9.777938657099005670e-01 3.163043945060873274e-01 1.058441408858024624e-01 1.216398149711291066e-01 7.806865761962300532e-01 2.504279153425061910e-01 -1.640168739257181318e+00 3.887717915492770793e+00 1.161999900647734396e+00 3.867777109250428502e+00 1.731216447409461012e-01 1.270706074110136141e-01 3.061248826846749149e-01 1.033623648026022052e-01 1.037718109890077844e-01 3.806725525440338709e-01 3.587967579808387653e-01 -1.710694537385275993e+00 5.166507440700112141e+00 3.995452404499518551e+00 3.550759150398631547e+00 1.949274048819525096e-01 8.708638631235773309e-01 5.788749068896512640e-01 2.148672310957808751e-01 1.454482931607108398e-01 5.955393698729042340e-01 3.656056031475364287e-01 -9.878448612249713934e-01 4.778009135987902667e+00 1.405958888053480793e+00 4.253704249983157659e+00 1.229607871637319327e-01 9.213675041914156649e-01 7.578740703391800837e-01 1.078805274727520080e-01 1.437913953042457560e-01 1.562260340069877296e-01 3.800894937632521842e-01 -2.934118389253587367e+00 5.453598331083177264e+00 4.819015702741448415e+00 3.705077753431146093e+00 1.068529249273228177e-01 2.722576926504411965e-01 9.896177075889924790e-01 2.713887630484170810e-01 1.458504748668238427e-01 6.206650169709732046e-01 1.508778321770384567e-01 -2.069639821650507194e+00 5.064512639034303376e+00 1.386137466959100673e+00 3.990379889421806769e+00 1.503191814516902092e-01 5.725417773596140902e-01 4.079167117118802643e-01 2.795386109490749504e-01 1.259952992884777467e-01 8.574374667589858001e-01 2.271365601031163362e-01 -2.452242517603801630e+00 4.070328360824966296e+00 2.115221174257266412e+00 4.233633559953118741e+00 1.222675807946493332e-01 6.058590527876670517e-01 4.723537793975656207e-01 1.931208727036308748e-01 1.197895531355506193e-01 9.437250752757007088e-01 2.286609820400874460e-01 -1.718028759037715014e+00 3.500726690794183860e+00 4.367695417428733684e+00 4.160685064725976545e+00 1.170574908169586398e-01 7.213663787868459520e-01 3.787144983142914922e-01 1.481070412245197032e-01 1.387692461658030785e-01 5.920201059944769639e-01 2.585989236852453965e-01 -2.090279463266099924e+00 4.973407614520238162e+00 3.720919015219675607e+00 3.881185233919386857e+00 1.374056405358620725e-01 7.992176354916672443e-01 2.516064434012030837e-01 1.693381740018853054e-01 1.443646253800651424e-01 9.284064474817594892e-01 2.353832849668498484e-01 -2.392369082747618059e+00 5.142932313200130778e+00 4.138490198389854768e+00 4.044531830604997324e+00 1.051549356764718557e-01 4.495353643290328494e-01 6.796388984887445917e-01 2.882266214588763975e-01 1.071155295607625624e-01 8.076800782302832049e-01 1.829002696084334190e-01 -3.112866666904470669e+00 4.132353661658823896e+00 2.635669871141415044e+00 4.002030139273943909e+00 1.572768639159079218e-01 5.677996648662959611e-01 1.594994370522636595e-01 2.528211884650801711e-01 1.045761536583738743e-01 4.491943982750919995e-01 2.651724717964445421e-01 -2.258134213769158904e+00 5.293648835686406429e+00 3.024859107982805995e+00 4.185106177949981188e+00 1.366266121740347395e-01 4.173141089888529054e-01 4.469553104261899668e-01 2.635921464558111937e-01 1.416479596845687250e-01 1.833062327544069392e-01 1.347105502164605006e-01 -1.645978091615861061e+00 4.698971376824896851e+00 8.133909490702503353e-01 3.801144713270473652e+00 1.361587501918498089e-01 3.228348042728672040e-01 2.880211548511847353e-01 1.091098727064708646e-01 1.289758720525233104e-01 3.545858751500715611e-01 2.777249341646967906e-01 -2.005629493924533158e+00 4.753237036298401108e+00 2.897751446487611737e+00 3.631365600345405120e+00 1.308700409506360074e-01 6.475638855338934352e-01 7.627047001259211756e-01 1.886374065702929315e-01 1.351248900614403503e-01 4.442651994001589610e-01 2.979223361129962888e-01 -2.078197100211407911e+00 4.188335142762037222e+00 3.639476060609466046e+00 4.045577160065771949e+00 1.560683498967682381e-01 8.204462628772819510e-01 8.463027899507731266e-01 1.547059883696053073e-01 1.445953047367110889e-01 8.106703074065089165e-01 1.085625978502452044e-01 -2.014165082172435284e+00 5.592193606751576951e+00 2.583007406403992068e+00 3.781614928852719881e+00 1.810766372389838452e-01 6.355744465440994473e-01 8.547909741611317003e-01 2.464501064871607305e-01 1.474344555534149726e-01 4.527773027718450249e-01 3.142039472896547281e-01 -2.396850735846530078e+00 3.681450195799853553e+00 2.170673323847602809e+00 4.435394771434034489e+00 1.848711195083416747e-01 2.030856245468767862e-01 7.178435937628755426e-01 2.346012808382244019e-01 1.274164264207413855e-01 1.208146487929788182e-01 2.200297241945387006e-01 -3.048275633506504434e+00 5.692789048715720668e+00 4.296927351471222956e+00 3.939221758923359573e+00 1.404580420212760972e-01 9.161635426693627293e-01 9.509327375671741134e-01 2.473605229518597570e-01 1.066369160254472676e-01 2.340702135613167423e-01 3.891704627094294544e-01 -2.977903389230449172e+00 5.136820125652604041e+00 8.065028850694220264e-01 4.104643733921187199e+00 1.500349641906549847e-01 8.533045774440159992e-01 4.991809431157492316e-01 1.231581643050001229e-01 1.191903259739909848e-01 6.447284980205896243e-01 3.282944520591861148e-01 -3.106587450355697833e+00 4.005998919192236052e+00 3.429129432397924226e+00 3.507569701914234894e+00 1.621859432482072316e-01 7.358382989649654427e-01 1.673936918413082564e-01 1.321364707475864431e-01 1.327578787802196347e-01 4.767893613202879299e-01 2.758099984922671166e-01 -1.431267383084195322e+00 4.738904016647170536e+00 3.488848156948646917e+00 3.584375470955801557e+00 1.460762373873094044e-01 9.734582460420867500e-01 3.304003773556704049e-01 1.632930813418611848e-01 1.096031305890333846e-01 3.492217749977315489e-01 2.915208714625855957e-01 -1.314154815985895119e+00 3.721359986366411299e+00 1.886109511175007469e+00 4.176091319601182406e+00 1.161921203000481628e-01 6.126722353888630623e-01 7.141131469605868087e-01 1.005526431907518559e-01 1.152662578403865212e-01 8.413452543397088590e-01 3.804210111039798559e-01 -9.961483035231439853e-01 4.621838178214293436e+00 4.375402075032319260e+00 4.202850653906059719e+00 1.027525241316897264e-01 9.032288407498529903e-01 7.582055978668684748e-01 1.035503107573753356e-01 1.029423078186090385e-01 5.393057234301437131e-01 1.790727770595230139e-01 -1.222727290771869590e+00 5.180092308073389162e+00 3.975248579406099658e+00 3.599730065830088144e+00 1.643632090845960070e-01 9.126724457087280751e-01 3.845962997327686539e-01 1.507209697514510505e-01 1.219305512609779180e-01 6.373665977391267390e-01 2.553684685377280994e-01 -2.744646384930653937e+00 5.675522696544386569e+00 1.973865833627805211e+00 4.275882411551935824e+00 1.680713151452381537e-01 3.789399381610060180e-01 6.279663584744678007e-01 2.970408823777765939e-01 1.494964552296069726e-01 2.963988471155837301e-01 1.719093803227359496e-01 -2.352816969545891812e+00 4.355060027805576439e+00 9.196447740241369129e-01 3.504259230145390092e+00 1.819392301477733564e-01 4.599463376590465780e-01 3.019948082327787997e-01 1.036892544266989624e-01 1.499731147350871763e-01 1.893404994076217096e-01 3.520777214748592732e-01 -1.809020868936713988e+00 5.040568477566235828e+00 3.650611372373201213e+00 3.717199244360862131e+00 1.580982768323795917e-01 7.726022916134397400e-01 2.364919265776220247e-01 2.876503949325973641e-01 1.200098324217063195e-01 2.148151349026524715e-01 2.311282492316725778e-01 -2.342797811939759889e+00 4.917284542311466389e+00 1.987485208345623588e+00 3.523328502986293298e+00 1.913358219679048289e-01 6.932132448565286875e-01 7.249631655874115843e-01 1.009484211222557992e-01 1.250479938990232964e-01 2.098947923121338155e-01 3.607758752648124734e-01 -1.395609392998403475e+00 4.918190952375152136e+00 8.312683162407951132e-01 4.173459881017363315e+00 1.237354128041846663e-01 5.214177440503936500e-01 5.121625953033491774e-01 2.112810065737779630e-01 1.324120561563708609e-01 9.168784066645152553e-01 3.739519811472120647e-01 -1.074048253311326029e+00 5.638062722246237612e+00 3.060892021841327804e+00 3.889832436852761255e+00 1.866410739503631677e-01 5.516827110357941377e-01 6.777027539118802846e-01 1.818648132900554382e-01 1.288382639264100404e-01 3.937232359629996292e-01 3.420288252153471098e-01 -2.466120943349818795e+00 4.905839406253721613e+00 1.448427529996116458e+00 3.863800083987085188e+00 1.738603113430554070e-01 3.030971418534823547e-01 1.366461456698532528e-01 1.202601431058503145e-01 1.462977226669328057e-01 9.264048054011444489e-01 1.656578147030192127e-01 -1.932907621970024525e+00 4.034233116566133148e+00 9.857907911258600997e-01 3.933663458698446025e+00 1.177366528203441648e-01 1.020386080089849407e-01 2.439654167004710328e-01 1.773986399747451426e-01 1.075627486644632064e-01 6.190189329723220224e-01 3.709266906235354488e-01 -2.512250641451450051e+00 5.589954715165029953e+00 3.471891524590647649e+00 4.448616986610694823e+00 1.471502763407071535e-01 5.778358504504627069e-01 6.669549829217160664e-01 2.852642841237696958e-01 1.199311893759582581e-01 2.312362714961513077e-01 1.378891701790298518e-01 -2.398715125671608828e+00 5.878311515457289360e+00 2.698423487277501032e+00 3.768468183245643921e+00 1.099975075698112342e-01 7.093005403978945855e-01 8.448347173588626191e-01 2.636551919458530180e-01 1.451570827238046757e-01 4.960259531958156609e-01 2.767029664640883180e-01 -1.757636373956724007e+00 5.739822599669402337e+00 8.386654298787014072e-01 4.024424188976586159e+00 1.464558361745507964e-01 6.562125971494990884e-01 8.242571279143071639e-01 2.996079620389865417e-01 1.290493381599075173e-01 6.607611577155408922e-01 2.741720662638051920e-01 -1.477433363930804155e+00 3.857540912420892809e+00 4.747178406968702191e+00 4.124003513196146997e+00 1.888774559024715971e-01 2.038773821901145589e-01 5.476311390079583452e-01 2.433504522680887128e-01 1.279766404942968838e-01 7.789985706595217163e-01 1.890052727574051405e-01 -1.812294445260945963e+00 3.671804856341168488e+00 3.638100204796833381e+00 4.264820808102094851e+00 1.188390754952518558e-01 7.085887901012736245e-01 3.960738570750453880e-01 2.363172615550786226e-01 1.016503841950585352e-01 9.023646334000031688e-01 1.840839288178973965e-01 -2.997280636726356029e+00 5.501774290030443382e+00 2.827993291584252056e+00 3.932073798155572675e+00 1.603969257563166440e-01 1.177631397889642717e-01 7.842855682408474971e-01 1.774460761866943903e-01 1.183900810609947590e-01 9.751404699062354853e-01 3.748382084040741136e-01 -1.665540671184547517e+00 5.528479737550787476e+00 4.969323165169588385e+00 4.061870872236402086e+00 1.310260776574268538e-01 3.528267776601293759e-01 1.167631564267018474e-01 1.116420533294778805e-01 1.386969546396094044e-01 4.562521991421031320e-01 3.308272921842833059e-01 -2.363561071900408095e+00 4.833350603391535216e+00 1.778559783318058418e+00 4.079977198421955720e+00 1.355856338610720579e-01 5.500233829323755153e-01 6.183292025856748086e-01 2.412635639829380507e-01 1.406646392039059279e-01 7.668153554636747415e-01 1.843963020992276380e-01 -2.093243559536953846e+00 5.709214019783225069e+00 2.084478409381929520e+00 3.522814308514322867e+00 1.296925048675130754e-01 4.120882462209881636e-01 4.139123861376493574e-01 1.779041970076233325e-01 1.326648477579070451e-01 6.036550328106770058e-01 3.704190033432565032e-01 -2.180445078669075887e+00 5.781471667661449487e+00 5.046699723945775595e+00 3.757488389180172472e+00 1.608230352412425013e-01 9.045086881117757605e-01 7.767700739727128045e-01 1.405318620692638243e-01 1.419665839724919276e-01 6.685250964111054683e-01 1.366140126142180999e-01 -1.272744439549099882e+00 4.892090325041341892e+00 2.293763216333727151e+00 3.810860730311284250e+00 1.515186791615989181e-01 9.315535759145571193e-01 3.937882755167088078e-01 1.732334879277036277e-01 1.016073816683793068e-01 9.823043212379808375e-01 2.713597548901477419e-01 -2.143603432856819424e+00 5.991085349280114158e+00 3.886221127838846989e+00 3.987968607618877392e+00 1.382431045270614278e-01 7.533184438597692045e-01 4.458902578858106036e-01 1.959985449148631820e-01 1.465871421814581854e-01 8.174741571268751006e-01 3.526834100230840097e-01 -2.109957840279427899e+00 3.561624435450203130e+00 1.899738277176942658e+00 4.492591535089909272e+00 1.324299889288262644e-01 1.046050853694179272e-01 4.404991516549832120e-01 1.686820624585200767e-01 1.248695044921923902e-01 5.414648098170838919e-01 3.231681519647210399e-01 -3.098868475798729705e+00 5.813870522207852609e+00 1.102709915475366564e+00 4.211538058906739934e+00 1.118649265697416184e-01 8.154585357042896110e-01 9.496250354113663361e-01 2.283956349423005017e-01 1.356970153000771895e-01 1.549347059744511090e-01 3.631206677271435757e-01 -2.064035976035518694e+00 4.857887622835915131e+00 3.514120693011414609e+00 3.671566100948099542e+00 1.753854061805795728e-01 7.254509712033131441e-01 7.942429419343284280e-01 1.824839798776689559e-01 1.486189549038554047e-01 2.934053110367079720e-01 1.804882176936480620e-01 -2.424901506722962896e+00 5.290548777861169505e+00 5.160070407425098260e+00 3.997338362537357526e+00 1.940863665287431428e-01 8.527779600404203908e-01 5.717861949344553718e-01 1.057403626497618737e-01 1.118598105270300486e-01 6.056199446151226962e-01 1.684450147393871666e-01 -1.000863314359145217e+00 4.444336800305948465e+00 4.197020083997317741e+00 4.009748704707565281e+00 1.767638250539680933e-01 5.280029748889770724e-01 5.203828706108358793e-01 1.322971680379045056e-01 1.498145490987190520e-01 7.843230704355201865e-01 2.291970343724071268e-01 -2.440569569410335760e+00 5.161207719313551934e+00 1.538496995118438626e+00 3.598385213455541187e+00 1.769211699491295420e-01 7.789162655001271585e-01 2.986949393141162812e-01 1.003166146573682138e-01 1.344069140132091444e-01 7.279373214862170371e-01 1.151074185154175866e-01 -9.413266884936570822e-01 3.651445923322766962e+00 2.791924603499676749e+00 3.836046550860826354e+00 1.523510263536015097e-01 8.791103901483204863e-01 7.904592009325088764e-01 2.552744633812056296e-01 1.249796567643839118e-01 7.930803172004589063e-01 1.097175110374620927e-01 -2.518553869338630236e+00 4.878403085575611087e+00 3.795686285053712972e+00 3.817079645323111947e+00 1.760213162131535891e-01 9.508284013770047505e-01 9.933765835736575456e-01 1.106260342744477126e-01 1.130399729525891905e-01 2.241086305111447130e-01 2.434626928064187179e-01 -1.237237959225504502e+00 4.212109171773711580e+00 1.912987779877160399e+00 3.848395054311880337e+00 1.987850865299248260e-01 2.184526814272417794e-01 6.191399224988898276e-01 1.727277095460590939e-01 1.151807960348382454e-01 9.338493129412768212e-01 2.617080012523160804e-01 -2.529732087769329674e+00 5.681475123606102073e+00 3.748887537343398968e+00 4.249294934257291878e+00 1.501833416474036842e-01 2.464434991624449567e-01 9.803596682582167432e-01 2.125133209008380764e-01 1.370808086567543160e-01 5.930561730164897183e-01 2.762006265360525958e-01 -3.093756537945753671e+00 3.521922906123864383e+00 2.577547030908145409e+00 4.395181566460853340e+00 1.989180650324904875e-01 3.812040345428037158e-01 1.605554774199907941e-01 1.537469950843857180e-01 1.478891036507567480e-01 4.213920891307347816e-01 2.109258137902169095e-01 -2.913781624064407438e+00 5.493767167882884550e+00 3.704313944862278163e+00 4.290616156840522777e+00 1.757650301415070171e-01 4.149432035846090105e-01 1.336489937875679490e-01 1.719616945729264545e-01 1.139859305569368014e-01 7.887618298618108703e-01 1.199472959735980448e-01 -2.832514640774521197e+00 4.944688514862452422e+00 1.391324801248410070e+00 3.665104941692333362e+00 1.478708054109293679e-01 9.066801523767828996e-01 1.183113168709547386e-01 1.300764427652429667e-01 1.102403212042574049e-01 7.650267938191924744e-01 3.314806551288280723e-01 -1.672811022475824805e+00 4.270057196903890961e+00 3.985150341262026608e+00 4.294586291615509310e+00 1.566814239102474471e-01 9.940153442866084266e-01 3.912019055506213983e-01 1.608819220739321487e-01 1.372836827914955815e-01 9.586425813519753314e-01 2.470121426125454767e-01 -1.413619921629384768e+00 5.730481737161395195e+00 2.719192782136440556e+00 3.741649067209336543e+00 1.867750640500750459e-01 3.375329489859729692e-01 6.507157379512004125e-01 2.598517126822676993e-01 1.188747990283211264e-01 5.962976730637041811e-01 3.910987550681880309e-01 -2.237023088679163330e+00 4.190214000878108358e+00 5.171586704691598868e+00 4.314312785502125713e+00 1.534731205217275685e-01 5.408706631778195106e-01 6.653434063464475079e-01 1.851928471522987230e-01 1.162593126999225818e-01 9.299664116720974816e-01 1.434250412237724759e-01 -1.518174003469947575e+00 5.335972029557373375e+00 4.790130696962954460e+00 4.287478003150205552e+00 1.409603407724779323e-01 4.470787674578184934e-01 6.525062084650301575e-01 2.721974087528782338e-01 1.318164425865775979e-01 9.524187223005823322e-01 3.591963839680014647e-01 -9.855412023694419821e-01 3.509037722094083378e+00 3.578986831784629175e+00 4.293383795432077932e+00 1.779660635528087509e-01 2.891370649081119737e-01 7.827607342434702575e-01 2.297402789154325553e-01 1.165555426141247353e-01 6.576197185896774933e-01 1.880413442587176853e-01 -1.035002840415705005e+00 3.914740980471920651e+00 1.525903590093621087e+00 4.144667706216053737e+00 1.506141132237474034e-01 9.648317474121482773e-01 5.495034987014889571e-01 2.001140602985791439e-01 1.022958140754998690e-01 3.440648645725763455e-01 2.867218311491239735e-01 -2.719664424965452909e+00 5.374540656300758279e+00 3.763731408417431368e+00 4.325092323227759827e+00 1.198518119924718017e-01 3.386403653346324871e-01 7.694725039530040389e-01 1.749131371471981944e-01 1.118240425983341307e-01 5.907197313425529561e-01 3.009413401298747237e-01 -3.050349332240630318e+00 5.667841376350534865e+00 2.443249209152028811e+00 3.542102987832958405e+00 1.897370142817531580e-01 7.850702292840660013e-01 2.289084700023348851e-01 1.713429611871767066e-01 1.092469344427446643e-01 9.870945729942801616e-01 2.601321404450829267e-01 -1.171076393867717780e+00 5.247017135454949965e+00 4.596453542187629360e+00 4.375290679273587280e+00 1.368289897286654733e-01 4.330854070480141260e-01 7.350457854590627393e-01 2.032678573234597275e-01 1.203989150957045229e-01 5.544503763914624406e-01 1.355259284757934224e-01 -8.485151164413778924e-01 5.037511763358653027e+00 1.969932971907494945e+00 3.546277899604795891e+00 1.598681067261685795e-01 5.096740564443654753e-01 9.909889605385324707e-01 2.039918324868370270e-01 1.164768301875393486e-01 4.935109942837866415e-01 1.941615011931732693e-01 -2.909897258491537464e+00 4.330588673191996918e+00 5.417255474992073161e+00 4.354521181133401697e+00 1.660725364734878529e-01 6.075980990113083458e-01 7.323289855334670362e-01 1.637835372026880676e-01 1.288788294599766127e-01 3.383356067120641963e-01 3.783208347369985125e-01 -2.864682814226878982e+00 4.814031352964217803e+00 1.865866022712707295e+00 4.359663985053471080e+00 1.201509441208782891e-01 2.715952610166266767e-01 1.776064026535368323e-01 1.588657937208153847e-01 1.154325587073262716e-01 1.264485545074606754e-01 2.524605344806572504e-01 -2.847931823564059606e+00 4.614862985531225981e+00 2.611689703670533103e+00 3.846276326956002301e+00 1.645668176329452281e-01 9.705826850766103853e-01 4.248389628400736084e-01 1.927695181236853683e-01 1.476298472122629657e-01 4.643391940307100008e-01 3.018824721163734237e-01 -2.015192342332106978e+00 5.851626330166738832e+00 5.489535291291396391e+00 3.851069452499648715e+00 1.570045889539911088e-01 8.341565079335763189e-01 8.251653859077819897e-01 1.944748161796053809e-01 1.278680364456432350e-01 9.260571218902396984e-01 3.136370337832465882e-01 -2.118835556033909384e+00 4.838940475229371430e+00 4.459875388646572958e+00 4.489966338915571065e+00 1.854091952634281115e-01 1.624264476431135917e-01 4.966771391576969563e-01 1.386111430620928786e-01 1.392098381932127538e-01 7.295493461967594850e-01 1.924627225261948682e-01 -2.074733124821780628e+00 5.328434291972727443e+00 1.604961989020126101e+00 3.961864019426440287e+00 1.636559838534984990e-01 3.610286405825793299e-01 1.932174537457749808e-01 1.345978693720537300e-01 1.032986332013309388e-01 2.517533062599657812e-01 2.473651476205581123e-01 -8.582899205832172917e-01 5.347714594112604303e+00 5.240997079253442159e+00 3.816402196825301019e+00 1.755020986051838983e-01 4.651202411990131846e-01 7.623934816614218457e-01 2.065098061004698726e-01 1.404158591996660377e-01 7.827716741560856173e-01 1.831831156008563721e-01 -3.004856618965543902e+00 5.364794345610222948e+00 9.624303230484141380e-01 4.158262205541620737e+00 1.020648476802607507e-01 8.485353986270244286e-01 9.326372692670026332e-01 1.000652777191447795e-01 1.258175536947294948e-01 2.423865017335863348e-01 3.037187776657773175e-01 -2.202288833744471042e+00 5.929820550355005437e+00 1.549827750916344282e+00 4.371295561862153178e+00 1.140258557104667503e-01 4.397926345020286565e-01 9.421374532610217178e-01 1.680629539791095306e-01 1.254950201366383800e-01 7.563663883126195975e-01 3.430581509161969023e-01 -2.651442484190214444e+00 5.596372010573317013e+00 2.104372877752691107e+00 4.020987488611448057e+00 1.428320846282747636e-01 2.578728699247829770e-01 7.604681970392123125e-01 2.217947167910621076e-01 1.036324800681957536e-01 9.917744236168253291e-01 2.637818078204178240e-01 diff --git a/earth_system/lhs_preparator/latin_prob_PF.pdf b/earth_system/lhs_preparator/latin_prob_PF.pdf deleted file mode 100644 index cc14ca3..0000000 Binary files a/earth_system/lhs_preparator/latin_prob_PF.pdf and /dev/null differ diff --git a/earth_system/lhs_preparator/latin_prob_PF.png b/earth_system/lhs_preparator/latin_prob_PF.png deleted file mode 100644 index 1605e84..0000000 Binary files a/earth_system/lhs_preparator/latin_prob_PF.png and /dev/null differ diff --git a/earth_system/lhs_preparator/latin_prob_TR.pdf b/earth_system/lhs_preparator/latin_prob_TR.pdf deleted file mode 100644 index 9b56f6f..0000000 Binary files a/earth_system/lhs_preparator/latin_prob_TR.pdf and /dev/null differ diff --git a/earth_system/lhs_preparator/latin_prob_TR.png b/earth_system/lhs_preparator/latin_prob_TR.png deleted file mode 100644 index 7499764..0000000 Binary files a/earth_system/lhs_preparator/latin_prob_TR.png and /dev/null differ diff --git a/earth_system/lhs_preparator/latin_probability_distribution.py b/earth_system/lhs_preparator/latin_probability_distribution.py deleted file mode 100644 index bbf5a5f..0000000 --- a/earth_system/lhs_preparator/latin_probability_distribution.py +++ /dev/null @@ -1,138 +0,0 @@ -from scipy.integrate import odeint -import numpy as np -import matplotlib.pyplot as plt -import seaborn as sns -sns.set(font_scale=1.25) -from pyDOE import * #function name >>> lhs - - -#Tipping limits, see Schellnhuber, et al., 2016: -limits_gis = [0.8, 3.2] -limits_thc = [3.5, 6.0] -limits_wais = [0.8, 5.5] -limits_amaz = [3.5, 4.5] - -################################################### -#TO GIS -pf_wais_to_gis = [0.1, 0.2] -pf_thc_to_gis = [0.1, 1.] -# TO THC -pf_gis_to_thc = [0.1, 1.] -pf_wais_to_thc = [0.1, 0.3] -# TO WAIS -pf_thc_to_wais = [0.1, 0.15] -pf_gis_to_wais = [0.1, 1.0] -#TO AMAZ -pf_thc_to_amaz = [0.1, 0.4] - - -""" -Latin hypercube sampling -""" -points = np.array(lhs(11, samples=1000)) #give dimensions and sample size, here shown for a Latin hypercube - -#rescaling function from latin hypercube -def latin_function(limits, rand): - resc_rand = limits[0] + (limits[1] - limits[0]) * rand - return resc_rand - -#MAIN -array_limits = [] -sh_file = [] -for i in range(0, len(points)): - print(i) - - #TIPPING RANGES - rand_gis = latin_function(limits_gis, points[i][0]) - rand_thc = latin_function(limits_thc, points[i][1]) - rand_wais = latin_function(limits_wais, points[i][2]) - rand_amaz = latin_function(limits_amaz, points[i][3]) - - # PROBABILITY FRACTIONS - rand_wais_to_gis = latin_function(pf_wais_to_gis, points[i][4]) - rand_thc_to_gis = latin_function(pf_thc_to_gis, points[i][5]) - rand_gis_to_thc = latin_function(pf_gis_to_thc, points[i][6]) - rand_wais_to_thc = latin_function(pf_wais_to_thc, points[i][7]) - rand_thc_to_wais = latin_function(pf_thc_to_wais, points[i][8]) - rand_gis_to_wais = latin_function(pf_gis_to_wais, points[i][9]) - rand_thc_to_amaz = latin_function(pf_thc_to_amaz, points[i][10]) - - - array_limits.append([rand_gis, rand_thc, rand_wais, rand_amaz, - rand_wais_to_gis, rand_thc_to_gis, rand_gis_to_thc, - rand_wais_to_thc, rand_thc_to_wais, rand_gis_to_wais, rand_thc_to_amaz]) - - - sh_file.append(["python ../Main_earth_system.py $SLURM_NTASKS {} {} {} {} {} {} {} {} {} {} {} {}".format( - rand_gis, rand_thc, rand_wais, rand_amaz, - rand_wais_to_gis, rand_thc_to_gis, rand_gis_to_thc, - rand_wais_to_thc, rand_thc_to_wais, rand_gis_to_wais, rand_thc_to_amaz, - str(i).zfill(4) )]) #zfill necessary to construct enough folders for monte carlo runs - - -array_limits = np.array(array_limits) -np.savetxt("latin_prob.txt", array_limits, delimiter=" ") - - -#Create .sh file to run on the cluster -sh_file = np.array(sh_file) -np.savetxt("latin_sh_file.txt", sh_file, delimiter=" ", fmt="%s") - - - - -#tipping ranges and plots -gis = array_limits.T[0] -thc = array_limits.T[1] -wais = array_limits.T[2] -amaz = array_limits.T[3] - - -plt.grid(True) -plt.hist(gis, 24, facecolor='c', alpha=0.5, label="GIS") -plt.hist(thc, 25, facecolor='b', alpha=0.5, label="THC") -plt.hist(wais, 47, facecolor='k', alpha=0.5, label="WAIS") -plt.hist(amaz, 10, facecolor='g', alpha=0.5, label="AMAZ") -plt.legend(loc='best') -plt.xlabel("Tipping range [°C]") -plt.ylabel("N [#]") -plt.tight_layout() -plt.savefig("latin_prob_TR.png") -plt.savefig("latin_prob_TR.pdf") -#plt.show() -plt.clf() -plt.close() - - -#coupling strength -wais_to_gis = array_limits.T[4] -thc_to_gis = array_limits.T[5] -gis_to_thc = array_limits.T[6] -wais_to_thc = array_limits.T[7] -thc_to_wais = array_limits.T[8] -gis_to_wais = array_limits.T[9] -thc_to_amaz_pos = array_limits.T[10] - - -plt.grid(True) -plt.hist(wais_to_gis, 10, facecolor='c', alpha=0.5, label="wais_to_gis") -plt.hist(thc_to_gis, 100, facecolor='b', alpha=0.5, label="thc_to_gis") -plt.hist(gis_to_thc, 100, facecolor='k', alpha=0.5, label="gis_to_thc") -plt.hist(wais_to_thc, 30, facecolor='r', alpha=0.5, label="wais_to_thc") -plt.hist(thc_to_wais, 5, facecolor='#2D9575', alpha=0.5, label="thc_to_wais") -plt.hist(gis_to_wais, 100, facecolor='#8E58C3', alpha=0.5, label="gis_to_wais") -plt.hist(thc_to_amaz_pos, 40, facecolor='#FF5733', alpha=0.5, label="thc_to_amaz") -plt.legend(loc='best') -plt.xlabel("Probability fraction [a.u.]") -plt.ylabel("N [#]") -plt.tight_layout() -plt.savefig("latin_prob_PF.png") -plt.savefig("latin_prob_PF.pdf") -#plt.show() -plt.clf() -plt.close() - -print("Finish") - - - diff --git a/earth_system/lhs_preparator/latin_sh_file.txt b/earth_system/lhs_preparator/latin_sh_file.txt deleted file mode 100644 index ffbd291..0000000 --- a/earth_system/lhs_preparator/latin_sh_file.txt +++ /dev/null @@ -1,1000 +0,0 @@ -python ../Main_earth_system.py $SLURM_NTASKS 2.241961283016736 4.690622821301434 1.4159411909227195 4.102480797163987 0.19309698390040142 0.5780331277664367 0.31200890950255655 0.11975402592062362 0.1316699858272922 0.27059650762351767 0.3715199043381331 0000 -python ../Main_earth_system.py $SLURM_NTASKS 2.1558506258075005 5.226118589584062 3.857259330281635 4.463155615986821 0.12306069975124836 0.4420520820628321 0.4394691642486326 0.28084529284261517 0.14333612282539868 0.17625028251684766 0.39810443821102803 0001 -python ../Main_earth_system.py $SLURM_NTASKS 2.557592367099789 5.050407687568924 3.6573285548770222 4.4339243389902165 0.10175436891595502 0.7710448504418758 0.2403435240951488 0.1832003130893285 0.12168245588890425 0.7620056616514667 0.21248702139804648 0002 -python ../Main_earth_system.py $SLURM_NTASKS 2.151372455649378 5.608738768762068 3.2959519122925602 3.658686756175488 0.14945599284227304 0.23681159406081792 0.7758401473290019 0.22180280171946376 0.1464101466910571 0.13332055445425905 0.32947567820292234 0003 -python ../Main_earth_system.py $SLURM_NTASKS 1.2936883722720194 3.9763758675647747 5.050149116775495 4.0262040253089655 0.10253215708684489 0.43479086391696964 0.885739369875221 0.10688273280433946 0.10481787492043323 0.9894735280347784 0.19125684604916451 0004 -python ../Main_earth_system.py $SLURM_NTASKS 1.1956331369323965 4.875302815816437 1.0189560964294382 3.5145706633369467 0.11961312300404812 0.8550909378222497 0.13804289031328515 0.2210031177346552 0.1106779967287986 0.22625900276358354 0.21938904002691384 0005 -python ../Main_earth_system.py $SLURM_NTASKS 1.9643771086257389 4.064666295400497 3.6251026871869447 3.8000621944483304 0.11741120146808959 0.8329894635195714 0.6354836989051446 0.26476073534652456 0.10926072160757255 0.3313849201464385 0.24250412295344964 0006 -python ../Main_earth_system.py $SLURM_NTASKS 1.8468807893736068 3.89465393701074 3.8802686064346377 4.323437580755631 0.19739575285089186 0.40956712999245837 0.503409996560821 0.206884837561473 0.1413754946473199 0.5499421032384443 0.13037421243737765 0007 -python ../Main_earth_system.py $SLURM_NTASKS 2.987211843430332 4.8021018282236705 2.3481216823717226 4.105619914222631 0.167211040282046 0.6673619633976304 0.8737612451068553 0.2374811113547012 0.13835387636099558 0.8565401025703913 0.2621236090034065 0008 -python ../Main_earth_system.py $SLURM_NTASKS 0.8416870442233543 3.74145177709342 3.731953514281143 3.71922882487237 0.18731289972812767 0.7461918160364991 0.43444944191252666 0.2926663467936653 0.13001988122217462 0.8520268291457761 0.2559363351220342 0009 -python ../Main_earth_system.py $SLURM_NTASKS 1.2536403447795201 5.83659348936224 1.8080740917654565 3.9198694323503473 0.1974972199966101 0.9197469955779446 0.5434759418232572 0.16113023579277325 0.1283594094195524 0.15095803896112006 0.3022846424317748 0010 -python ../Main_earth_system.py $SLURM_NTASKS 2.0621849874657032 4.157108577521786 0.8618029007601955 4.041181852348354 0.11796608327508544 0.46619842422342594 0.3179172300385107 0.11585557248794315 0.13764976689550693 0.9942525366727164 0.1400881360039429 0011 -python ../Main_earth_system.py $SLURM_NTASKS 2.4384390070182818 5.648785724269732 2.1072591184987197 4.484864034135395 0.16503056727498788 0.16077295576193532 0.6752399226876512 0.23555064270791015 0.12909500910834226 0.6137735432712415 0.2640151040698909 0012 -python ../Main_earth_system.py $SLURM_NTASKS 2.950614839699556 3.6648851084767835 4.322237239324378 4.136317606465854 0.13838483528482506 0.2683176079745825 0.7784481826850913 0.10265907827256716 0.10138149237594173 0.5003623411937864 0.3603678904837275 0013 -python ../Main_earth_system.py $SLURM_NTASKS 2.8520307332377826 3.8540826348757733 4.034978491085282 3.8747966654967003 0.10846677418358266 0.47151211944475435 0.2788842536034275 0.2935429130517333 0.13682297857156533 0.29509524236919715 0.13008358378830637 0014 -python ../Main_earth_system.py $SLURM_NTASKS 2.406100974019362 4.749573280170183 3.2631071770616256 4.169996588981394 0.18945886773379988 0.393390003389799 0.4528642373984493 0.28405546991932706 0.11381996831145436 0.895755963827139 0.2320237025819818 0015 -python ../Main_earth_system.py $SLURM_NTASKS 1.3234446567937002 3.7264237464751853 1.093630720825176 3.94052940696096 0.1904172957835118 0.9546276431058793 0.8412424499424355 0.16064912932952752 0.12980145853942565 0.8630643200064855 0.3465142028908696 0016 -python ../Main_earth_system.py $SLURM_NTASKS 1.99616176457786 5.355805125998257 2.626828437276184 3.6739667061248302 0.19217445009815848 0.6668775429169479 0.5507076802740033 0.1282173287157237 0.11013312496872232 0.9846193042816999 0.23896694882220834 0017 -python ../Main_earth_system.py $SLURM_NTASKS 1.819516136028436 3.5305768429626636 4.2225243581288705 4.319121347985077 0.11177942500389292 0.7017396759797756 0.5648071964530724 0.13495242166815805 0.11458113518043404 0.8243275632051396 0.32201382356949726 0018 -python ../Main_earth_system.py $SLURM_NTASKS 2.3135878231877376 4.485171065714626 4.874992687523104 3.6518199250525827 0.11599035869468963 0.5425353460037358 0.3187872019961965 0.10649586310176658 0.14060561682408823 0.38460315437598624 0.2667395203416081 0019 -python ../Main_earth_system.py $SLURM_NTASKS 2.565143203053366 4.278162717757178 4.015489405518562 4.195750718127492 0.1252485713277325 0.25282787505084303 0.26718199433631973 0.2778016549934361 0.12874953601838068 0.4040525467546886 0.18133393901019562 0020 -python ../Main_earth_system.py $SLURM_NTASKS 3.0078211355735327 5.378245104747503 3.030329105032867 3.723731012654174 0.15209845614944717 0.7147714851976801 0.6628251698216867 0.22894676673982056 0.1495405513430983 0.4589322835887467 0.2633008897260233 0021 -python ../Main_earth_system.py $SLURM_NTASKS 2.322989003092319 4.552497508671667 5.146485898131271 4.135568807027722 0.11082285540147888 0.6372914474317194 0.4540011802394994 0.1544741307345462 0.10698970359204407 0.41727340256694223 0.14411474646234373 0022 -python ../Main_earth_system.py $SLURM_NTASKS 2.3336737518913617 5.855105076323721 5.34148926716088 4.267397131674547 0.15216251238879536 0.5963833199263453 0.9669163239829468 0.14912234278374153 0.11863472746320364 0.8578866795097534 0.2115543662388981 0023 -python ../Main_earth_system.py $SLURM_NTASKS 1.279494698183027 5.357626903627736 3.6213450699690135 4.302392189534777 0.12148691860775193 0.7644188156860322 0.24099746641935335 0.2995407539809937 0.13627085785301477 0.2661017683222608 0.1447039316488838 0024 -python ../Main_earth_system.py $SLURM_NTASKS 1.1811098510832165 5.6611073160879 3.8273228316875567 4.221854188154082 0.16098552665965127 0.38736227451466143 0.6931144212299553 0.23487824661288068 0.11499671756078816 0.322061367474318 0.23253146156619325 0025 -python ../Main_earth_system.py $SLURM_NTASKS 1.43773285651082 5.062378186492705 1.835821540043837 3.897509938300686 0.14409492119327005 0.5166224018344364 0.39990022319208096 0.151643569841226 0.14912338123720062 0.7457227845844016 0.27848117691821994 0026 -python ../Main_earth_system.py $SLURM_NTASKS 1.13006824912936 5.029963684093451 1.4297058498912503 4.194275244623143 0.15870850478984064 0.7566726350565595 0.8584557858780416 0.24927499531469582 0.11449995294675151 0.6012155567152906 0.1735884636672597 0027 -python ../Main_earth_system.py $SLURM_NTASKS 2.532680144322425 4.293663864435212 3.3680649115210297 3.955244131646046 0.171659901176541 0.9566809395825885 0.12923995541447136 0.11768885518220026 0.12340890312811706 0.9155402681104073 0.21202347097762136 0028 -python ../Main_earth_system.py $SLURM_NTASKS 1.6313398400196018 5.343979328710601 2.373800432685824 4.499762489037617 0.12164560221828888 0.6049386067865192 0.9383990365958695 0.29087400573290734 0.14674663416294098 0.7142693262475328 0.13934500276248799 0029 -python ../Main_earth_system.py $SLURM_NTASKS 1.288116686331986 5.617995643696651 4.1982847303346595 3.728674532292509 0.17156656512480467 0.5298872204305441 0.19047328603582148 0.26292410117383935 0.1262629381366928 0.6400192030805709 0.21957149741702287 0030 -python ../Main_earth_system.py $SLURM_NTASKS 1.2037470845885534 5.300621605073812 3.599286439359357 3.732894750425574 0.18421584243175515 0.8268610352509851 0.6260897007037567 0.14167317822522058 0.10632521781458587 0.9962709572264101 0.26414541110229717 0031 -python ../Main_earth_system.py $SLURM_NTASKS 1.858431409013254 5.002281403806856 3.0524217063383476 3.5742166634659345 0.13778675396410509 0.5263753649405427 0.2548615794774843 0.2254614593232238 0.10245261513049435 0.5984838065285052 0.15278686847094994 0032 -python ../Main_earth_system.py $SLURM_NTASKS 2.9940785829574823 4.57700170730948 5.014764592578372 3.9248150752990716 0.1153163715274816 0.22019123376609007 0.42062027301069804 0.12336833759140398 0.11482921881384285 0.39570670665976015 0.31807257154598556 0033 -python ../Main_earth_system.py $SLURM_NTASKS 0.825275026799941 4.640306262618403 3.727670300681954 4.4445047517342 0.1389266830805037 0.2729122382994072 0.6236598720035104 0.2824992408952477 0.13806238360547163 0.43960232659699927 0.12885148222296924 0034 -python ../Main_earth_system.py $SLURM_NTASKS 2.6840631779118205 5.2048342683827356 3.3448221009543007 4.465735374701679 0.19265051594153604 0.7389645165979901 0.20572462808351435 0.19736119149904957 0.14654418865198193 0.4094986932872261 0.10111973450630699 0035 -python ../Main_earth_system.py $SLURM_NTASKS 0.9161855910596558 4.835072011650209 5.447889696346503 3.984704939517436 0.11488398302542512 0.12146015385080233 0.8554604476084237 0.2813066544296342 0.11176711977262853 0.4977753087216934 0.1373783715335324 0036 -python ../Main_earth_system.py $SLURM_NTASKS 1.1356798400998311 4.481681228381487 5.354449471317118 4.06831378632299 0.1043376715874191 0.719719566059555 0.31755720564805806 0.15030297209649432 0.10371545387874609 0.5769270143768731 0.3600425281109433 0037 -python ../Main_earth_system.py $SLURM_NTASKS 2.068349590331347 5.090660542991938 1.4346216044337492 4.053702509522381 0.1975552973983919 0.6781002792113481 0.3362937721737354 0.26999884270876867 0.14409139704042773 0.7229436050102164 0.1798716547178934 0038 -python ../Main_earth_system.py $SLURM_NTASKS 1.7976068142703205 5.371127928226123 4.475857711400168 4.0848398319154455 0.13866904564533863 0.3342229217388386 0.9211319850172218 0.1615513536824706 0.11420310747868573 0.18392411115166934 0.1094515986670034 0039 -python ../Main_earth_system.py $SLURM_NTASKS 1.4265207058441594 3.549649222169444 1.2065650791924256 3.9121081973395118 0.10336648411706392 0.22772064956615357 0.3860574121009288 0.16174664174841014 0.1457703739005517 0.11263664376142161 0.37566823739287136 0040 -python ../Main_earth_system.py $SLURM_NTASKS 1.390449024654612 3.6254597827684982 2.9510549953916367 3.8211198986316868 0.1970122790252563 0.3695917772481756 0.4892416856952003 0.23286991357628412 0.10555383136824642 0.12005331204979575 0.20209930558359251 0041 -python ../Main_earth_system.py $SLURM_NTASKS 3.0384964794626192 4.2425056442485305 1.3379248087548785 3.644566434429956 0.19655011502538494 0.395249083588465 0.5739102027650286 0.1334757266161793 0.14323799837038145 0.734882917765594 0.2716518890864092 0042 -python ../Main_earth_system.py $SLURM_NTASKS 2.0805017319878845 3.7987924353089597 0.8817336790812331 3.9609394865508847 0.19907327102960398 0.24172407486382205 0.9763001441379355 0.1763925996986118 0.13374664468709976 0.2291708500095372 0.32335155340238964 0043 -python ../Main_earth_system.py $SLURM_NTASKS 2.8291087832529715 3.5907216912647684 4.828947001046277 4.266177988829728 0.14810192896150037 0.6917192035847266 0.9477313683501025 0.29285012971076135 0.12445762092409887 0.6382072919295815 0.2794492030426329 0044 -python ../Main_earth_system.py $SLURM_NTASKS 1.513987879836118 4.817187947343964 1.8761337299578191 3.916419007400163 0.10428050745489795 0.8902422692582662 0.609641570994155 0.22498481597700679 0.13575735300346214 0.919163764803899 0.12671464207627905 0045 -python ../Main_earth_system.py $SLURM_NTASKS 1.402149203439964 5.969451997215242 1.2972405503086906 4.190902987613017 0.11821698313377216 0.9821584038236034 0.5267922042449198 0.21672021780059197 0.13157031173957032 0.7148767136159118 0.17424229435868088 0046 -python ../Main_earth_system.py $SLURM_NTASKS 1.377681023879381 5.4116779954921705 4.178450158974461 4.0651473843102 0.1474513558086011 0.7138702161827372 0.351420343801507 0.2025054294230289 0.12177171946799417 0.35703184597117577 0.3201357863081994 0047 -python ../Main_earth_system.py $SLURM_NTASKS 0.8545003842345924 4.820879445692469 5.08585187197154 3.531908475671816 0.1952959724644742 0.4285170721296866 0.5568197326473232 0.13740687376668986 0.1051984033043864 0.48541182136693295 0.34745978100781794 0048 -python ../Main_earth_system.py $SLURM_NTASKS 2.524989650319185 3.50451865274563 5.039249417178822 3.748192887707581 0.16698184293837498 0.9793164736280543 0.3223928771145499 0.2514517289066589 0.1220261697992337 0.6213670894498534 0.2110865021595873 0049 -python ../Main_earth_system.py $SLURM_NTASKS 2.179321629955422 3.556632263746593 3.459248748576403 3.7765050581087625 0.19101264538381318 0.5646128903882179 0.10650998067405401 0.2556927196409747 0.1446492193133847 0.5891451872550607 0.12151106501066379 0050 -python ../Main_earth_system.py $SLURM_NTASKS 1.0533554004645223 5.481721762445996 0.8467037237429437 3.875599838292599 0.150759294660737 0.3701481371749272 0.2701336055933764 0.1306350121303304 0.13745101760661932 0.34228293671235177 0.3267409964204733 0051 -python ../Main_earth_system.py $SLURM_NTASKS 1.0200879768341533 5.086494295258873 4.093467441228394 3.5278093421353423 0.188925526209053 0.37127661613939833 0.8136304643728518 0.2234795563436225 0.11479457078076874 0.38372062296276344 0.3827963516192767 0052 -python ../Main_earth_system.py $SLURM_NTASKS 2.146112852108697 5.760463930726196 5.004884041141892 4.413693126453198 0.18356216785780818 0.7999286205832326 0.45635040857544873 0.16469265664153623 0.11570319597694526 0.5275264255767933 0.19007707792989673 0053 -python ../Main_earth_system.py $SLURM_NTASKS 0.9434146858877505 3.7053385966732333 3.8719470369330837 3.8047011153668624 0.15258465994230605 0.856005389097089 0.3627539169144377 0.10532464421252485 0.14273451174214788 0.46810150985225984 0.19338903062088536 0054 -python ../Main_earth_system.py $SLURM_NTASKS 2.137349237247215 4.682556150102044 4.753807356040884 3.707814017695681 0.13215046267745412 0.5134718175735219 0.14036551353333931 0.24490163973443344 0.1410959174590707 0.623373861942123 0.35463893900213184 0055 -python ../Main_earth_system.py $SLURM_NTASKS 2.268649378355999 3.5598590090374307 2.3764379823455206 3.9022265864902765 0.15401950342608597 0.6118639161954296 0.10545169580937143 0.18424100791104675 0.12680616839923475 0.8545185438435904 0.11869365064296025 0056 -python ../Main_earth_system.py $SLURM_NTASKS 3.014864836024506 4.682171956722119 1.1532034341620025 3.693633989521641 0.196308944828085 0.5428263936293453 0.24699281606577692 0.10451311900169566 0.10815898380859765 0.4780675351042786 0.36429443276560136 0057 -python ../Main_earth_system.py $SLURM_NTASKS 3.028412399204923 5.987416809417034 1.4103737156006773 3.9096296476871295 0.10020305658958058 0.35920932066219524 0.2807664779167949 0.24886787650162925 0.11193850953757795 0.2732184881569114 0.3423508339845657 0058 -python ../Main_earth_system.py $SLURM_NTASKS 2.593853448734497 3.757303826239024 2.9783631957253025 4.074292993614773 0.11243361561968 0.3571579020935669 0.7130066888091663 0.13173307076147683 0.14228434127637551 0.9859105258300805 0.32414735504688863 0059 -python ../Main_earth_system.py $SLURM_NTASKS 1.7232498239747507 3.7017234729062745 5.287182033372546 3.9881817941475775 0.11023126568174318 0.24575511300611777 0.1838338858871143 0.2947548439754538 0.12558191402099744 0.4773981720499628 0.32064577016447837 0060 -python ../Main_earth_system.py $SLURM_NTASKS 2.5446695981357816 4.636464014937222 2.1802142586711275 4.092121892645907 0.12815279211401234 0.4157374575630719 0.28815530988127114 0.274599918129666 0.10041617142006377 0.4875422221083455 0.10648343732788267 0061 -python ../Main_earth_system.py $SLURM_NTASKS 3.0964035643295302 4.313781282464023 3.5418349273216796 3.7758423632906797 0.17295656843214727 0.5451887552891709 0.9768574648084949 0.2133242529424741 0.11148838583648973 0.8004299587825935 0.37787304449107983 0062 -python ../Main_earth_system.py $SLURM_NTASKS 0.938819310650755 3.902201498077925 4.283010057779748 3.5723809733319456 0.17270333636377033 0.10012923548324565 0.791223522418956 0.15180554082316614 0.1239063127124862 0.26499409314757905 0.31390533784602176 0063 -python ../Main_earth_system.py $SLURM_NTASKS 1.2851852561417563 4.565723151175495 3.210845055494989 3.63543618035706 0.1461463360986312 0.7391550795396652 0.8819979571344858 0.1042566157697091 0.13832738632692118 0.8951905149665087 0.33829088396975915 0064 -python ../Main_earth_system.py $SLURM_NTASKS 0.8026295785217389 4.624038859307741 0.8192054058729 4.157619173209066 0.15189410911944326 0.9330203820174836 0.8400590586276176 0.20812437875550913 0.11804944586252361 0.3036817717487553 0.3967294422007457 0065 -python ../Main_earth_system.py $SLURM_NTASKS 3.1533860874114756 4.174018986409162 1.2501835830461896 3.7522073170854213 0.15778214968997026 0.6713608911220847 0.9711638434700197 0.2419243151423461 0.10602434603827285 0.6900568428189385 0.3249143560324491 0066 -python ../Main_earth_system.py $SLURM_NTASKS 2.7785402349444417 5.767267563623012 2.0034392951117796 3.9201090066434023 0.1306681361278575 0.9182293773662653 0.3237852590381781 0.20049704309871508 0.1284715688149382 0.3676635044040174 0.2222033511098801 0067 -python ../Main_earth_system.py $SLURM_NTASKS 1.8926035136177937 4.361236206899321 2.9186447273515403 3.6466107257337415 0.11543295806037143 0.8192569518955013 0.3112147059965631 0.2547888006765766 0.14609972652731645 0.3003201242384774 0.13642311764354703 0068 -python ../Main_earth_system.py $SLURM_NTASKS 2.102590403373637 5.812495358309915 2.384533687295585 4.481028003210031 0.13144973773984225 0.5176753943068545 0.8781768966621948 0.2597485493374992 0.14768463309995972 0.10954171786648245 0.1760664961184361 0069 -python ../Main_earth_system.py $SLURM_NTASKS 2.7985316436960677 5.783703096713111 2.2375034197470716 4.021709898942465 0.16327341876636992 0.9615071217639704 0.24504758370495766 0.25088302682880437 0.14750214875402218 0.3023458524538528 0.32040034870447903 0070 -python ../Main_earth_system.py $SLURM_NTASKS 1.2339811255582611 5.562166198846475 5.197840976475545 3.9664328762243173 0.176284319178722 0.7722818026935048 0.2200452394514311 0.10872384828028918 0.1144089498243238 0.13765805211503007 0.254728504157253 0071 -python ../Main_earth_system.py $SLURM_NTASKS 2.131775719651343 5.417619866647641 4.070713615039645 3.7777505926530153 0.19436997533961145 0.7932783542316296 0.48010501576798326 0.11147907777898704 0.11569604223938221 0.3777185607255453 0.39493778503980315 0072 -python ../Main_earth_system.py $SLURM_NTASKS 1.7561096887563405 4.19975797934693 3.715072261017192 4.260852341665155 0.17455816424634701 0.9869503254755854 0.21564721337661852 0.2706526187443685 0.12975197066578564 0.2775283309169124 0.38482412094142826 0073 -python ../Main_earth_system.py $SLURM_NTASKS 2.6128725454992106 3.6304198295703833 1.4571705636258938 4.083926805287226 0.1413075828846888 0.14991774289457188 0.41928338752960304 0.28739764674715174 0.10051018925276374 0.5215375159600338 0.2992052696472851 0074 -python ../Main_earth_system.py $SLURM_NTASKS 2.3575007483769017 5.9753120533924395 3.283837989796136 4.4787856964434685 0.15165315350897104 0.6161673982208266 0.827818398814867 0.14223201806167213 0.11943004572826334 0.3529002714824472 0.3080058993828606 0075 -python ../Main_earth_system.py $SLURM_NTASKS 2.692817358039548 4.602979968443544 3.814302041772237 3.7994417788848347 0.12888557044608367 0.41120942460003496 0.9862251592945668 0.11191838594291229 0.1272485528053089 0.9980271725517061 0.2598560965240567 0076 -python ../Main_earth_system.py $SLURM_NTASKS 2.5629091561017754 5.8764876259943115 1.9578135570315258 3.5281537382822026 0.1311613382282955 0.9677374793100516 0.42022722013388836 0.19985762943944899 0.12662934515906232 0.853505515165572 0.3712400636217613 0077 -python ../Main_earth_system.py $SLURM_NTASKS 1.1963770131739233 4.589498009966689 3.2331216933478277 4.392656998142186 0.15325610158835512 0.8701750587412391 0.42910751751973475 0.14598284602083822 0.14686618961031883 0.7968719584915902 0.15521075172677 0078 -python ../Main_earth_system.py $SLURM_NTASKS 2.041323944553172 4.639279401491857 4.930643207362657 3.8913668227786817 0.17903117174895616 0.4257915139978684 0.2392500316029975 0.14521697828599514 0.13477650592349566 0.43929183750678424 0.32916089759715006 0079 -python ../Main_earth_system.py $SLURM_NTASKS 1.719247819454596 5.885977358575708 2.117482089913831 4.430573964392958 0.1822155196247683 0.14619037172712157 0.25329983500914854 0.2920305024719432 0.14822157647734782 0.7718794129464878 0.30917682742201363 0080 -python ../Main_earth_system.py $SLURM_NTASKS 1.7251605845949096 4.703062169644812 3.5034524859614065 4.175134905785917 0.11756430893326782 0.16673480817455122 0.7524582399147249 0.13673941141319285 0.10882139707958473 0.6298821285049576 0.3044443589775685 0081 -python ../Main_earth_system.py $SLURM_NTASKS 2.305143256361305 3.785247223795125 3.2159471814368894 3.726497043653965 0.19575054339506487 0.15562055441114192 0.23453240196007255 0.2063487702590649 0.11326046194531302 0.17459451542318155 0.1486364430291331 0082 -python ../Main_earth_system.py $SLURM_NTASKS 1.566947557655502 5.9498033630234985 1.7911510513400188 3.8825754612042864 0.1995378879446484 0.5210821261405423 0.3492288209359985 0.2903097063883904 0.12425561174932276 0.8345660981543268 0.17953579777349488 0083 -python ../Main_earth_system.py $SLURM_NTASKS 2.7578693115138795 4.227704880293484 2.919994619242317 4.3472299373683585 0.12909347381564376 0.638472639895061 0.5931569313620111 0.2256967889035224 0.10465126295857383 0.9993789369500615 0.13515120556822513 0084 -python ../Main_earth_system.py $SLURM_NTASKS 2.5746841751034326 5.266649782551701 3.96031249177378 3.9835654474603945 0.1865915737131963 0.6329899375718798 0.8259854285307359 0.14295385149942258 0.10476051688250168 0.1996117408900186 0.2531606005565795 0085 -python ../Main_earth_system.py $SLURM_NTASKS 2.5519642807711285 5.4129457018827996 3.9516700353008423 4.320697088192984 0.10530313718705511 0.7030993127636461 0.5689210746902766 0.27890084635793233 0.1353179748519294 0.6523646731998775 0.10712525022784371 0086 -python ../Main_earth_system.py $SLURM_NTASKS 1.6486505253407215 3.6035070176522614 3.48023755974582 3.8266353873929377 0.1964842003091976 0.4025921283725563 0.7817720739792294 0.14428397971280738 0.12490633088233437 0.8840903154676045 0.3533156567015051 0087 -python ../Main_earth_system.py $SLURM_NTASKS 1.3805927954845023 5.08835176153592 5.3046949874109695 4.400819691873521 0.10185464888626578 0.5538285803673026 0.6390355251482334 0.260621003018106 0.12398240356532386 0.6431926318090269 0.33600075728555445 0088 -python ../Main_earth_system.py $SLURM_NTASKS 1.2281272116355504 5.220648140315147 4.636021951837129 3.7027066351895286 0.10463017367619862 0.49004559798486624 0.36702622682464214 0.17683225172445197 0.14484885150350632 0.2139272050175855 0.11074413635990249 0089 -python ../Main_earth_system.py $SLURM_NTASKS 1.657441401117374 3.873665856571603 1.8029618626437307 4.470604278236301 0.16427869813732793 0.5187883914283382 0.2959735868001152 0.12294836445618744 0.11823388450158923 0.6026039655756832 0.26827780556517133 0090 -python ../Main_earth_system.py $SLURM_NTASKS 1.6850195600073008 4.3638955412756495 1.8338810629165503 3.5870098877330796 0.1993928351819353 0.40546549163650825 0.4734911976146152 0.13781445111029586 0.1080518254881076 0.6775684300573324 0.18664493325760662 0091 -python ../Main_earth_system.py $SLURM_NTASKS 1.0095043325966178 3.7036262992377926 5.02138623272713 4.154075600209129 0.11678073250613849 0.7691631745643334 0.6832433014365957 0.21501398099955354 0.10893353473740199 0.9876328098493075 0.2983461012745267 0092 -python ../Main_earth_system.py $SLURM_NTASKS 2.6188249487187463 5.435897331970532 1.7948504274065373 4.155029486965737 0.14028412976554178 0.5379733448267194 0.9303019516382665 0.274205618511944 0.11152004765074898 0.22489001239321832 0.33966966697340073 0093 -python ../Main_earth_system.py $SLURM_NTASKS 1.0901965437324754 3.607113749431278 4.183999327447734 4.067909219360125 0.10900480364862175 0.42405351005329917 0.8059401529978368 0.19031840379259635 0.11367073523046599 0.8189469347623987 0.37907826832767855 0094 -python ../Main_earth_system.py $SLURM_NTASKS 3.144803607053845 5.455277230608158 3.691259710346495 4.1179347885184026 0.15789766793161894 0.4295452444188609 0.27705904371117246 0.26772822597944934 0.14847666883389032 0.7318463294892802 0.10391421782490157 0095 -python ../Main_earth_system.py $SLURM_NTASKS 2.2721097558573313 3.7959619298364524 1.8789365772434685 3.847850233861574 0.19888290242135656 0.7969964620819621 0.9448115707422369 0.24383629830905648 0.10667422515324108 0.9034653729403064 0.2706936445839939 0096 -python ../Main_earth_system.py $SLURM_NTASKS 2.5257259142406188 4.12603564764737 3.8218937317976254 3.8378893989474534 0.13221279422470308 0.20482116865373656 0.5369971001877631 0.18834130793359544 0.11666611104098064 0.8926410300401103 0.22396542879804432 0097 -python ../Main_earth_system.py $SLURM_NTASKS 2.811387893368499 4.965504194793244 4.1014248464362515 3.788654123426016 0.13071955707008148 0.8104497507357677 0.4023598866421487 0.2709082070559068 0.12310668633185959 0.7993165647305793 0.3399464866592016 0098 -python ../Main_earth_system.py $SLURM_NTASKS 1.0488590329361336 5.233706882280812 4.906435940596746 4.241325747539671 0.17411074391598563 0.9097686308439609 0.36805224495742794 0.14834900148362337 0.13559083699940805 0.8970894827366771 0.21751890030536478 0099 -python ../Main_earth_system.py $SLURM_NTASKS 1.1556182444043333 5.400015144083838 4.087749007034965 4.179849144332941 0.11943048219205117 0.15260643487556558 0.5972841925836663 0.2545966623660274 0.10724764066548018 0.6504326482895265 0.15906599767400356 0100 -python ../Main_earth_system.py $SLURM_NTASKS 1.0469163045782115 3.9448144261203835 3.8665921988568153 4.485807422584952 0.17346101897378513 0.9979192535346734 0.887201373414585 0.1677928447314588 0.14593855295015354 0.5604765857762729 0.34839987472677336 0101 -python ../Main_earth_system.py $SLURM_NTASKS 2.815052051747016 4.968078808651184 4.825252965147329 3.543183097485464 0.10837721730226256 0.6899551530962903 0.13932722858050034 0.19468292595128545 0.1008545911063072 0.7927425922666629 0.20841669709832028 0102 -python ../Main_earth_system.py $SLURM_NTASKS 2.713934608438036 5.4694890411956125 3.7090633930687558 4.272910980109619 0.1786654824056729 0.6863152150444246 0.18028278259269964 0.12519438215131742 0.133229818377544 0.635789914536344 0.29658341243726966 0103 -python ../Main_earth_system.py $SLURM_NTASKS 1.1064803160160581 3.534240818014465 5.106844147778162 4.3902897175160405 0.15588253122067558 0.5875475424764758 0.9518942079243667 0.2066788581557549 0.11599625990617525 0.9454800548833927 0.11261740330776422 0104 -python ../Main_earth_system.py $SLURM_NTASKS 2.4326937712806567 5.890170556760395 1.688637085864319 4.461209694642434 0.13810160665975826 0.23367733655734974 0.777624334245898 0.17504262093218126 0.10401929133370887 0.31660538569076857 0.3085382335049076 0105 -python ../Main_earth_system.py $SLURM_NTASKS 2.687220898968355 3.8562015837305905 2.802070397420655 4.3697244650175655 0.1205834820175494 0.26168979977942625 0.15795377644691594 0.22949608681982853 0.14569496798549306 0.941218592804908 0.37208052012240866 0106 -python ../Main_earth_system.py $SLURM_NTASKS 1.0381625171855653 4.144610319793903 5.318882849819775 3.928235206530022 0.10036983315639521 0.29783314752373546 0.14597541181476534 0.20459074837149488 0.12604314639168637 0.8036421715597761 0.31580741120120015 0107 -python ../Main_earth_system.py $SLURM_NTASKS 0.8336152333104554 5.24475047152676 5.092735211266343 4.3444844289260915 0.11858639713225809 0.48566024298455635 0.9232768384107608 0.22607269965118065 0.13036581705410671 0.7874446875156013 0.35532418458495385 0108 -python ../Main_earth_system.py $SLURM_NTASKS 1.2736123769345196 4.6700428803440355 3.9714894938233423 3.597604217731273 0.13338323744011668 0.47801781828816825 0.5687094026616347 0.2018788005049308 0.13189078591739284 0.9984017410953833 0.13131396645157536 0109 -python ../Main_earth_system.py $SLURM_NTASKS 1.8033533288225785 4.666376251565825 5.379456847549658 3.5261876449662255 0.16778705626739093 0.7477235820037971 0.8054677858096946 0.211780480665754 0.13293763927026175 0.23979590709316903 0.35302822665867173 0110 -python ../Main_earth_system.py $SLURM_NTASKS 1.0290108231421273 3.554752444423488 4.6868794730079175 4.276774699945287 0.1418420251375155 0.2631170496319146 0.6682089216601522 0.16560682073376606 0.12095220862966946 0.7639514604193324 0.2607044653979816 0111 -python ../Main_earth_system.py $SLURM_NTASKS 1.38793043060251 4.370736431166338 4.00188879512782 4.289698328402098 0.19465816826335766 0.3253833513023744 0.915325919619711 0.279603185498958 0.1105793950720796 0.2086350809252706 0.15002668121513812 0112 -python ../Main_earth_system.py $SLURM_NTASKS 1.2073752243814018 5.303811458495137 3.937269910064014 4.077965533855226 0.1112672538900283 0.9148308498005412 0.8744023329354857 0.10663331902336583 0.13297479586461827 0.5992238289561946 0.24238838502609183 0113 -python ../Main_earth_system.py $SLURM_NTASKS 2.7383108139310695 3.8415217741639927 1.1295192327116164 3.950447750605149 0.11653586416765566 0.9788016023753932 0.9243329506997335 0.2075962496538079 0.11210558340619572 0.11487107492305283 0.14150425709094874 0114 -python ../Main_earth_system.py $SLURM_NTASKS 1.9165253564141915 4.184163454868246 2.973677048298911 4.184101135697921 0.15656081520592435 0.7639539655968861 0.6024124757773989 0.22874851333801866 0.10157322363261907 0.3140108846585712 0.16116991771322609 0115 -python ../Main_earth_system.py $SLURM_NTASKS 1.6288944468615418 5.532804589091028 2.8761962631611615 4.131146953331672 0.18360522409747798 0.4802556513760362 0.868356378092833 0.28300108364219473 0.13015728644758168 0.8224679138118647 0.17018836900979173 0116 -python ../Main_earth_system.py $SLURM_NTASKS 1.070253262106554 4.651366880348748 2.1902821163383575 3.9363071012466877 0.12121645681252309 0.19259240110960174 0.9589198286153047 0.2819578747627446 0.11218973746444774 0.8525266045073275 0.28351366903755704 0117 -python ../Main_earth_system.py $SLURM_NTASKS 1.772009126089181 4.652601701914695 4.5743232674768395 4.168333987380695 0.17583464426002626 0.3303264952058786 0.7050214459508981 0.17161049791724642 0.14520296185542558 0.4002347855321706 0.29474955902895744 0118 -python ../Main_earth_system.py $SLURM_NTASKS 0.9021348852926973 5.279524412542326 2.1447865997526554 4.246002165297882 0.14809027570802077 0.4276098863056199 0.16454168963553661 0.21148175967665134 0.14907485843524954 0.4317620704168952 0.3982082053719811 0119 -python ../Main_earth_system.py $SLURM_NTASKS 2.450597871963251 5.963514720210442 5.121787230098379 4.214857316545194 0.1511690723962846 0.8244860681186921 0.1018998371611845 0.18484772601319016 0.10120175704827633 0.23687268433640896 0.10540593558284372 0120 -python ../Main_earth_system.py $SLURM_NTASKS 0.9077076931662995 4.123768988077002 1.6345846833669762 3.8159716114542412 0.17335190945846557 0.27425231713353787 0.5747357660328458 0.23974524352177765 0.13639411817666267 0.45500610863957935 0.12793377390409494 0121 -python ../Main_earth_system.py $SLURM_NTASKS 2.0022784188726765 4.011454008171521 1.577379026991373 3.972963256342746 0.12620055216229395 0.6425119773015998 0.3817919978457881 0.28205876175723865 0.12998001993829134 0.7091024768174247 0.24933347746848025 0122 -python ../Main_earth_system.py $SLURM_NTASKS 2.224814120681568 4.468273788070663 3.2551865633749966 3.839697575818613 0.10452301346494146 0.5682439726931308 0.6999387409207405 0.15813920523766456 0.10575020947345364 0.1345320321352327 0.1772001123677661 0123 -python ../Main_earth_system.py $SLURM_NTASKS 1.5032599545746588 5.018415559065529 2.856620311255228 4.02847244585034 0.10573062517062376 0.11864773406188506 0.8802728013676422 0.16451945371807977 0.12959216146594277 0.8820596030556033 0.37475316154709404 0124 -python ../Main_earth_system.py $SLURM_NTASKS 1.7795256109390625 5.056687274151365 4.770430101978383 3.5308466590422154 0.1937320551920206 0.44571957212725954 0.8895595106740741 0.1460535483002466 0.10551792559240826 0.7982653163134608 0.1286331299905921 0125 -python ../Main_earth_system.py $SLURM_NTASKS 2.8603326093445522 3.580681302539661 3.0593909576330507 4.425958320111306 0.14345863460671665 0.7750352481798086 0.5837509569167861 0.238011771468312 0.11799863857281497 0.37257235284299817 0.2126580364551346 0126 -python ../Main_earth_system.py $SLURM_NTASKS 1.1906959081933595 4.167708241116333 1.1995956360260243 4.120146883138137 0.10324715073823981 0.3416092050557503 0.6577133652472809 0.12532833297354645 0.1315098956017708 0.4345570937190053 0.33520529791165743 0127 -python ../Main_earth_system.py $SLURM_NTASKS 3.0917784330626006 4.5019686147779385 3.088556216254201 4.471811837075017 0.16132808434070076 0.8417430957327091 0.8878269875078572 0.13724974737792267 0.1017400260190017 0.8692742789136954 0.26497071604240785 0128 -python ../Main_earth_system.py $SLURM_NTASKS 1.4700414265527693 5.296739386450801 3.7922161126695597 4.1805512044733435 0.1803347293098328 0.1406770850519201 0.39166648226704104 0.266859881899917 0.13350144034229877 0.6104928448426381 0.30898691820515356 0129 -python ../Main_earth_system.py $SLURM_NTASKS 2.8770913994298946 4.317887854040077 2.0084450445805073 3.8497925959465986 0.16751959181351272 0.5754546389001621 0.6035075488008715 0.11228502076047404 0.1025055081854776 0.7486847049245908 0.29107708600701915 0130 -python ../Main_earth_system.py $SLURM_NTASKS 1.8870490378730242 4.077991843231734 1.3163030135183582 3.8684796505268184 0.19182805622472518 0.41654240617431715 0.8675823537292742 0.27624676824571714 0.13223689923329637 0.11922854426880208 0.1905476092378263 0131 -python ../Main_earth_system.py $SLURM_NTASKS 1.1094490679393472 3.6401593200747397 2.2893564822489623 3.6492889091211973 0.1875296786310079 0.6325034391945876 0.9163175520186198 0.18092273404213927 0.11240076492813561 0.787815226199519 0.31266141420452187 0132 -python ../Main_earth_system.py $SLURM_NTASKS 2.76652450429974 5.1094348419595725 1.7065137696467736 4.252467946504298 0.15104852200687638 0.4021950680483384 0.3877678317543881 0.26941543022803166 0.11601436907749692 0.7605285359178156 0.24477036407665953 0133 -python ../Main_earth_system.py $SLURM_NTASKS 2.9634071024402644 5.763279538244092 2.6856105031967576 3.7637468589193688 0.10559322057920723 0.5745247626872539 0.5781152883304387 0.2957131071974939 0.12463528183556036 0.1489059667142352 0.2737481057364517 0134 -python ../Main_earth_system.py $SLURM_NTASKS 1.8210764483697024 3.9634472219827526 4.142212474849835 4.378367049453727 0.11008350018997594 0.6400574991612867 0.6622714386425249 0.24207307499608163 0.11018129237084301 0.8992328496953889 0.157741080307489 0135 -python ../Main_earth_system.py $SLURM_NTASKS 1.1791523016729109 4.925707968838205 5.243484848058359 4.192021517615714 0.13509394027465513 0.5013485853755292 0.4705035675091488 0.16897718717488408 0.1133648531581985 0.44814388115742587 0.2249216404296625 0136 -python ../Main_earth_system.py $SLURM_NTASKS 2.3003432985000614 3.5191841123470717 2.1659173547359263 3.712977076643178 0.12798640032409114 0.3757682967944518 0.1570338602314283 0.18472340394303993 0.1398846177084832 0.7542632368072014 0.16209123411644616 0137 -python ../Main_earth_system.py $SLURM_NTASKS 1.4046567333808015 5.882809647387351 4.712186074124285 4.407922301057555 0.1258844938415463 0.5863144256469616 0.6930808247173462 0.1970925361068664 0.12815000698351353 0.13192321753841707 0.2047162292859435 0138 -python ../Main_earth_system.py $SLURM_NTASKS 1.2103014859634351 5.819240423690294 4.892452602014844 4.33161358767504 0.1938202259461123 0.8406921484179019 0.8761246035774878 0.20124674762550726 0.1330179254423829 0.8896280295304823 0.11084633917679954 0139 -python ../Main_earth_system.py $SLURM_NTASKS 1.8782092122015108 4.811487202953938 4.2753226455677185 4.13961423018575 0.14966692045428653 0.530334039509008 0.9138020397458115 0.20564057391227836 0.1454969859416939 0.5034893425082232 0.32990155962073026 0140 -python ../Main_earth_system.py $SLURM_NTASKS 1.7493390236324196 5.959626548191429 2.2571754883378645 4.496421494947156 0.13354433551798206 0.18657282379812926 0.4668507965983415 0.15581111442827644 0.1380213681136336 0.9394806714592409 0.22282753899452812 0141 -python ../Main_earth_system.py $SLURM_NTASKS 2.1589799606593507 4.630321679590173 3.9448373814595703 4.408248486682371 0.11646441911795125 0.48669876751086805 0.5961606695145857 0.28392634908672937 0.1129641315437602 0.8831855045326454 0.3654277314551637 0142 -python ../Main_earth_system.py $SLURM_NTASKS 1.06471900730744 3.5502114893645467 1.961743563410232 4.1412812739546885 0.14867547676508733 0.4634480573921571 0.5175404048358795 0.113107468451765 0.14506392345656172 0.32877408392454777 0.1453708025875129 0143 -python ../Main_earth_system.py $SLURM_NTASKS 2.827239738460057 4.529992336439092 2.8711606777232523 4.039256370385015 0.10015949031995135 0.5819526883420556 0.47587239352533894 0.22384068402503116 0.1031703979058278 0.9512961739769614 0.26636428529889516 0144 -python ../Main_earth_system.py $SLURM_NTASKS 2.043237911848218 5.015225348493805 3.673581572180776 3.56980836129401 0.10317912095520028 0.6455729078975099 0.393243243027394 0.2701697535048194 0.12064729353273594 0.989088812276794 0.10730581430994048 0145 -python ../Main_earth_system.py $SLURM_NTASKS 2.7524934611815204 5.906261425015595 1.3209591931765772 4.127173296430161 0.16704629571816015 0.11280331929060429 0.2575337026057686 0.13805597643476802 0.13288740275023386 0.8022354715484322 0.12998858261444798 0146 -python ../Main_earth_system.py $SLURM_NTASKS 1.0619112878194372 5.68326620008483 1.174995091239259 4.34555375323341 0.10779387012378312 0.9743900368424997 0.397603851060368 0.20299597656774715 0.12082960268398102 0.1658701024567792 0.30611592192778964 0147 -python ../Main_earth_system.py $SLURM_NTASKS 1.476575378243099 3.6279489609886255 3.7602102373719353 3.612065325214323 0.15463979588062635 0.7918905597427892 0.8234468668003442 0.12494558774300615 0.12686776169280553 0.798884360169595 0.17853381051753858 0148 -python ../Main_earth_system.py $SLURM_NTASKS 1.0550578844316756 4.4063210265966735 2.533179177537169 4.279306623666671 0.16124611084866686 0.3247628355069508 0.7638771400228754 0.18122849206116068 0.10959936159647293 0.8792563652378351 0.1763917126261306 0149 -python ../Main_earth_system.py $SLURM_NTASKS 2.2556998554998673 5.526685798632263 1.9952737625827308 4.483961617217076 0.11211509903645439 0.7328519632700672 0.5013242609799534 0.24506182488294256 0.12607025575721495 0.4757284393265868 0.25007588374662015 0150 -python ../Main_earth_system.py $SLURM_NTASKS 1.080031914331495 3.6662676714635345 2.3813177108914827 4.17292143706557 0.12660216998452142 0.618166729321494 0.995925455286508 0.14895220626924366 0.14837014200809837 0.5133511664766599 0.12555965136804215 0151 -python ../Main_earth_system.py $SLURM_NTASKS 2.2656903276340654 5.2523770894663 1.6817775121720868 4.415571606606274 0.13474387568779408 0.7654274614414592 0.48399925652519027 0.18968018682278584 0.11156455800478954 0.7741050950514364 0.12403640566780633 0152 -python ../Main_earth_system.py $SLURM_NTASKS 1.1734076909925837 4.5080026636243815 2.4610340313779133 4.300727244620739 0.13726960346488698 0.9829987511890813 0.451080784599877 0.18748903474130002 0.1311376758523551 0.5713340652353307 0.3549678612695273 0153 -python ../Main_earth_system.py $SLURM_NTASKS 1.7880820744320176 5.1511679005565485 5.452966877971761 3.9139504751582956 0.19010691879803385 0.827913047999051 0.23373002908451873 0.22438112436965696 0.10280511176172952 0.14279568468010218 0.3537934111600415 0154 -python ../Main_earth_system.py $SLURM_NTASKS 1.535391437922767 4.487549917940728 5.334645362514886 4.029896641472192 0.13405331404772805 0.7130144549440012 0.469499110715479 0.286121642769784 0.138646020269337 0.6121609474761747 0.14598067565637943 0155 -python ../Main_earth_system.py $SLURM_NTASKS 1.9204294520466227 3.777251061083461 3.956665910800048 4.284055812533889 0.17220442377279435 0.4755729927474932 0.45884471383122494 0.2847382896519399 0.1366131986493354 0.357644150131776 0.1874223171799577 0156 -python ../Main_earth_system.py $SLURM_NTASKS 0.8684950451545865 3.632795513269446 2.7122498954515173 3.8504741660583375 0.15087812368317832 0.3502490303557152 0.3611157274795672 0.27030591197595566 0.13811011099461626 0.24968382549068974 0.34037962323927645 0157 -python ../Main_earth_system.py $SLURM_NTASKS 1.2404565198400535 4.213850249130537 3.371678881390598 4.239581959994419 0.1574352079192483 0.9199942284809726 0.5386602737533989 0.2580241372244173 0.11377437498568249 0.5900879381834544 0.17217349928793707 0158 -python ../Main_earth_system.py $SLURM_NTASKS 0.8012226328623399 4.256249018306979 1.493805967081149 3.5166614254545343 0.10195266603265543 0.6493548574797448 0.5134195295585918 0.1527429457682686 0.14471133931344213 0.12258835429082487 0.12667556160045082 0159 -python ../Main_earth_system.py $SLURM_NTASKS 2.025969700636696 5.966325038952728 1.2787182263967285 4.431299212124327 0.12263850409431899 0.699845390077839 0.4519982750040493 0.18898434359093852 0.11741738517389555 0.8600220680695004 0.2969786467823455 0160 -python ../Main_earth_system.py $SLURM_NTASKS 2.9299374450107942 5.013319092087832 3.5543867133266094 3.94702893858852 0.14316387184752025 0.20215837234402917 0.7480999228517421 0.15940525030773692 0.11118685572477145 0.7157701449294713 0.31688001759345696 0161 -python ../Main_earth_system.py $SLURM_NTASKS 1.1167041594443694 4.342205441728602 1.5315418900459117 3.5393245877490824 0.14440605830249797 0.8945566760072177 0.6865517072999774 0.25732264432685636 0.11687689266541425 0.2790006717850234 0.1113358411683985 0162 -python ../Main_earth_system.py $SLURM_NTASKS 1.5589118121606553 4.274808370204475 3.3775785331301753 3.8880398859125256 0.15797321228006986 0.9304629393398458 0.13167908985391263 0.22244667232962329 0.10212438837644842 0.3118506120816056 0.2371621744441603 0163 -python ../Main_earth_system.py $SLURM_NTASKS 2.7854481861145377 5.785387541974834 4.054437229475571 4.495210304082443 0.17462817030167138 0.9140796012166803 0.16989290981623148 0.22734955673453508 0.1173568532188235 0.3448071933897441 0.30664109087089875 0164 -python ../Main_earth_system.py $SLURM_NTASKS 2.6152144457895448 5.916231462428296 2.4096144004980395 4.033506861181982 0.13441997704276218 0.19331118945626224 0.2006017569877035 0.10752529435739752 0.11138254677660288 0.25930366217829626 0.11772998040043542 0165 -python ../Main_earth_system.py $SLURM_NTASKS 1.6015114834842765 4.414056169955616 1.0714858470396105 4.032374330338809 0.15950490453686855 0.7600084161777949 0.23819575360142092 0.1828557341380322 0.11283437871191292 0.8919274099456668 0.3879526886485901 0166 -python ../Main_earth_system.py $SLURM_NTASKS 3.1339704306325373 4.470614882311956 3.7661605191568803 4.261851138562204 0.18437640819303705 0.5587633136790969 0.7333450275688621 0.14450990872316866 0.14449899746765046 0.9102631748931362 0.39015916362626046 0167 -python ../Main_earth_system.py $SLURM_NTASKS 2.44759200868167 4.899211842426947 4.246761139620541 3.890303230361358 0.1806472193650644 0.941320975205969 0.7421319915750256 0.13843316544683787 0.1301414003480854 0.10245810979918729 0.19554892570685078 0168 -python ../Main_earth_system.py $SLURM_NTASKS 1.3416393606426715 5.421399251000599 1.1908010629194632 3.8954039899260167 0.13734908237573457 0.9587432106171431 0.14864829458503281 0.13368544127487275 0.14353424719902447 0.5117204788599922 0.3832329778941209 0169 -python ../Main_earth_system.py $SLURM_NTASKS 1.976561354287583 4.082639510707241 3.3341692383011567 3.7968819414920936 0.11666605238562627 0.4038894768012702 0.9454855246590833 0.1995255772740715 0.12124753558203681 0.9833262801137901 0.2974872542638778 0170 -python ../Main_earth_system.py $SLURM_NTASKS 2.514906841057795 5.382337991882345 2.55645102286082 4.349389968059398 0.15694674776700482 0.5042242284476895 0.5762267127531648 0.1569753384481294 0.1429956320794734 0.9934264102420813 0.12435996436631544 0171 -python ../Main_earth_system.py $SLURM_NTASKS 0.8902176674552804 5.116006833070003 3.0342472339226445 4.231613082333436 0.1626823171404299 0.43484154918143303 0.4229254225894088 0.11271142735485032 0.14827915626618288 0.741028492252432 0.24218914548083675 0172 -python ../Main_earth_system.py $SLURM_NTASKS 1.8406263434644416 4.735050603044316 3.6122121225546 4.011139269550214 0.18716793411047522 0.23191401742414144 0.768141469887734 0.21065612572614034 0.1011625341322221 0.7472028264237768 0.24414482214018862 0173 -python ../Main_earth_system.py $SLURM_NTASKS 0.8619756315449083 5.316862510741362 3.1404903706227536 3.7134382211647154 0.13490044290255615 0.9010880352080516 0.3083837138666795 0.29688804828057447 0.11968845050415981 0.47132866168603604 0.33440351076134417 0174 -python ../Main_earth_system.py $SLURM_NTASKS 1.309509830120246 4.375883009791532 4.169925144028645 3.509294196282857 0.12565179307301777 0.31648915815216216 0.9269118720070878 0.25065149945463905 0.14425468029816946 0.4599871753140151 0.28895563709744143 0175 -python ../Main_earth_system.py $SLURM_NTASKS 1.2317932574639716 4.28430892034056 3.6191568269529517 4.4275015814354335 0.17961400723128568 0.12319288630771211 0.21322858252104382 0.19659108927746036 0.149317666634227 0.3979251089011947 0.15227039258247893 0176 -python ../Main_earth_system.py $SLURM_NTASKS 3.1300294649869462 3.6894789223415 5.027635266402951 4.434636274628156 0.10936609737635808 0.29221432570342354 0.7547615772424786 0.16427959101888184 0.14327115463604828 0.24882100022058276 0.27007925106522207 0177 -python ../Main_earth_system.py $SLURM_NTASKS 2.931964320295932 4.223457276102372 3.2292891441990834 3.730769118405629 0.13301457710978662 0.44777152066107395 0.6711404945664647 0.24670400334397954 0.12677526538223302 0.35058815681934774 0.2707351428630333 0178 -python ../Main_earth_system.py $SLURM_NTASKS 1.4795926891066966 4.610056975151641 2.406702392259216 3.5193558217229346 0.15843967070968631 0.6279113448150137 0.5051793210036533 0.2732132098244281 0.12569986909032496 0.666946911464163 0.31922594246084635 0179 -python ../Main_earth_system.py $SLURM_NTASKS 2.401070793523997 5.815486310361122 4.483474491058301 3.9982374099738975 0.1582937494457847 0.2778820269357689 0.8042975339767116 0.22760007845048943 0.1431406034817002 0.14672090281352032 0.34901989257093874 0180 -python ../Main_earth_system.py $SLURM_NTASKS 2.337893497748757 4.208448202046051 4.8009733714400395 3.959249448623927 0.18414794500723594 0.22517412353201072 0.7540008119564592 0.1667123706767896 0.12649653312791512 0.773772624938777 0.3688153798226854 0181 -python ../Main_earth_system.py $SLURM_NTASKS 1.590142725649713 4.105619280498676 0.8150248580065006 3.655088094556923 0.17649146005626326 0.47774071373499627 0.97007789256751 0.18691825890513536 0.13925660669340467 0.42124142009923016 0.2878429998934654 0182 -python ../Main_earth_system.py $SLURM_NTASKS 2.0353678601389067 4.721792111705313 4.120633139950762 3.843908546710429 0.11368613661450619 0.6307609931426953 0.33532778179914163 0.24710827759215065 0.13020297187355936 0.5637636593811077 0.28526852563751065 0183 -python ../Main_earth_system.py $SLURM_NTASKS 2.6242826645196375 5.666017023872226 3.4851810954054665 4.2434636128261705 0.19819053354961638 0.8657181916419935 0.5932272780833271 0.19766414315476494 0.13769187240438957 0.33400263581577183 0.3853901423116386 0184 -python ../Main_earth_system.py $SLURM_NTASKS 0.9686090287540127 4.997218216313296 1.0611329319274592 3.970127344906814 0.1798720310337276 0.3125007349473389 0.5699802094147254 0.17360989044826658 0.14664418691035946 0.8558879211770091 0.14218609288246875 0185 -python ../Main_earth_system.py $SLURM_NTASKS 1.1461303461612034 3.920470514450161 1.9390621798957406 3.6198554007357067 0.1739618534540389 0.6697039835871473 0.48855080268665896 0.14359967770022214 0.1283070425354078 0.6888055941680018 0.293185772436436 0186 -python ../Main_earth_system.py $SLURM_NTASKS 1.0858098260009 4.040288977434917 3.461426598226839 3.9499923660107013 0.18150790667897043 0.4605949168475625 0.8835011684483457 0.1541364816252789 0.11434599665710093 0.789538196002427 0.24996071330478484 0187 -python ../Main_earth_system.py $SLURM_NTASKS 3.16269617233361 3.623354993444178 1.2696147201975476 3.8704442332723428 0.1744389505955517 0.5667873443370789 0.7121984173308779 0.10414039476351221 0.13074130358009034 0.35218849852200784 0.13060331005533404 0188 -python ../Main_earth_system.py $SLURM_NTASKS 3.1860037242867776 4.016739953937984 1.1205747691859762 4.449776295351555 0.14494000271473834 0.49486096050185413 0.8541132151249604 0.2212251538495567 0.1427679741853944 0.8740613085334699 0.14965524094077992 0189 -python ../Main_earth_system.py $SLURM_NTASKS 2.349289976795612 4.958383247568062 2.67316348114685 3.8778305542787033 0.17472259682905217 0.3185353871480566 0.5557424301444865 0.2070416035116513 0.13540590220668575 0.7253038163289399 0.31020362630940124 0190 -python ../Main_earth_system.py $SLURM_NTASKS 1.4222918915509941 5.082629083796462 3.439551610987282 3.5884625392406293 0.11447916523697174 0.9383944996829436 0.6603920036740297 0.26803474650135173 0.13385743435716732 0.1546591095854366 0.31512384483710826 0191 -python ../Main_earth_system.py $SLURM_NTASKS 1.3592281878703325 5.545502473181538 5.310830615019778 4.487942694118091 0.11143753929766913 0.2789758996658427 0.16798727152134624 0.28373473534943433 0.10645635528613524 0.7204874156663175 0.10246314631875098 0192 -python ../Main_earth_system.py $SLURM_NTASKS 1.5014717510418403 3.8977019189797595 4.353974814213624 4.423385484345677 0.10816732402626526 0.9892505075741443 0.9366401382525088 0.20924317181769508 0.11026129406731365 0.9816623216624466 0.3246050747135356 0193 -python ../Main_earth_system.py $SLURM_NTASKS 2.656216180064057 4.9084254982535995 1.279660852971967 4.377596919904336 0.11358735039656617 0.156624904492878 0.3596814436402722 0.21522464523454277 0.14559239772782037 0.4406724331638404 0.15292352776301424 0194 -python ../Main_earth_system.py $SLURM_NTASKS 1.4301786020622043 4.186269525525216 4.020660850237458 3.6878556876611 0.158688212281687 0.9355423192735602 0.24305678658776222 0.14846702687388458 0.10057690402497298 0.26342365998598744 0.2912887569362476 0195 -python ../Main_earth_system.py $SLURM_NTASKS 2.1982754237435222 4.447047507983563 4.908613042544137 4.055402854795067 0.12073173305470265 0.8717927791375807 0.6671629294420054 0.19161141697208478 0.10532055309913783 0.8329061275804859 0.2933051371609002 0196 -python ../Main_earth_system.py $SLURM_NTASKS 0.9099204981719837 4.863596318094395 5.4399843337343325 3.9186282348009245 0.11137185049904053 0.922814443534134 0.7980515344914673 0.12589207382816964 0.12674047870438757 0.3373853670021164 0.1919748246913982 0197 -python ../Main_earth_system.py $SLURM_NTASKS 1.9102976448752897 5.833850221041971 1.7696659972204785 4.1489974880227205 0.17283018112181636 0.2704321070660052 0.8767960527590474 0.2532507476986713 0.10474160665464725 0.6692884429438721 0.11312274517539525 0198 -python ../Main_earth_system.py $SLURM_NTASKS 1.5583492958553928 4.028930628586545 2.2159202894979595 3.540308615022755 0.16556363360169168 0.733612712393644 0.36591617446941016 0.2156105166086185 0.10526916246051606 0.8675352169135434 0.14709426762660155 0199 -python ../Main_earth_system.py $SLURM_NTASKS 1.8522296350267515 4.249401241818376 5.134492500531427 3.535635696884104 0.18310275455104327 0.3155532031429919 0.7225437623179715 0.1862819223294442 0.12823260959553215 0.15369995166902697 0.3476679951748968 0200 -python ../Main_earth_system.py $SLURM_NTASKS 3.062378382295609 4.170859795270665 3.7383535353141664 3.766191872388532 0.14018970292369287 0.4584491748325613 0.6367959581856631 0.13193178379780568 0.11771586797097787 0.6072404259689305 0.3751943999458235 0201 -python ../Main_earth_system.py $SLURM_NTASKS 2.6073899768679274 5.027463285856265 3.0687954420196553 4.270454557515002 0.16258841551555875 0.3634176586708131 0.9687454869537667 0.19633531740314503 0.10023026646217963 0.1964755808798706 0.38568484184319196 0202 -python ../Main_earth_system.py $SLURM_NTASKS 0.9521416004634431 4.219183248689054 3.3509447300695356 4.222812709589126 0.1925814307083751 0.6868010285245904 0.6246970935069972 0.14551836460513387 0.14223556393990977 0.7126713612118938 0.11342917653975206 0203 -python ../Main_earth_system.py $SLURM_NTASKS 2.8029776741168453 3.669285506535208 4.076974827028097 4.30720788759011 0.1654716918339829 0.11950079194032392 0.2613609070322892 0.140387583561173 0.10982886432774064 0.8215513446351347 0.3487083246639674 0204 -python ../Main_earth_system.py $SLURM_NTASKS 2.132715942542047 4.882150798132056 5.328267824621172 3.759828290168189 0.13038805059221692 0.25410887823856615 0.46085297522650615 0.14941253020743067 0.1348631003907158 0.4666962282763185 0.3776181971903865 0205 -python ../Main_earth_system.py $SLURM_NTASKS 0.8168409791323079 4.11202065489319 4.409194930775923 4.054293745815199 0.13235749824657106 0.1796971535840652 0.9988462253721186 0.18025690860850754 0.1311958359759028 0.1067112749586669 0.25710526477361273 0206 -python ../Main_earth_system.py $SLURM_NTASKS 1.4918056242973299 3.6585838210730732 5.353127511889414 3.8228050820548685 0.14393490886978744 0.1899340964368459 0.3416147920923407 0.15865471092465439 0.11726401510506354 0.212668341994902 0.28979800065422767 0207 -python ../Main_earth_system.py $SLURM_NTASKS 3.08716482267251 4.369710709945779 4.886698763531155 3.764903816746432 0.15712854403720503 0.506091845314446 0.1034248454805178 0.14763528239277698 0.11388486526362544 0.8685252992013152 0.34436151458545167 0208 -python ../Main_earth_system.py $SLURM_NTASKS 2.050544180699468 3.57938444087249 0.9030730626426894 4.453564883893639 0.16109409394265384 0.11259720771802803 0.4327853791346399 0.25307528616630004 0.1335830619995419 0.2001273939039101 0.2691892581432648 0209 -python ../Main_earth_system.py $SLURM_NTASKS 1.4545277332941868 3.8712798271839532 4.869920199187303 4.1679328231351835 0.10696272525006653 0.6487939205426528 0.9653036046338961 0.11530913409895964 0.12211999759561874 0.8642143609654325 0.30554896393825315 0210 -python ../Main_earth_system.py $SLURM_NTASKS 1.490836467249175 3.868939495150031 2.8390777691009026 4.422175557154236 0.16636738755282593 0.45244131910235375 0.7194220498416207 0.2923701237879639 0.11873261686655406 0.7072508471486002 0.10533677020941777 0211 -python ../Main_earth_system.py $SLURM_NTASKS 0.9277895326656098 4.122012036756631 2.3120260484388444 3.640070976509549 0.167982302962952 0.8924760131731815 0.21928747971285556 0.12768261352153196 0.13734501446211936 0.7468414810900357 0.19934080029626916 0212 -python ../Main_earth_system.py $SLURM_NTASKS 3.0108975858410414 5.734879032498524 3.4527619885794207 3.8923624625338773 0.1634216768522811 0.7463193807889223 0.26921047732578535 0.1071210178071374 0.12323721700508863 0.5097625653824215 0.16304607664474652 0213 -python ../Main_earth_system.py $SLURM_NTASKS 1.3946272383355636 3.9606656385279058 2.8172366117057956 3.703597836637174 0.1773305931742822 0.6688251441581153 0.5544153237196447 0.17764177861174077 0.1309628176446902 0.21186176972982157 0.15354253454380584 0214 -python ../Main_earth_system.py $SLURM_NTASKS 1.991682453884531 4.076982280455702 1.2224682452530904 4.121403550377594 0.12316641980356385 0.1571529072084815 0.7930358186359915 0.19508138091508181 0.11640434109973205 0.31825872924071075 0.15484572828992446 0215 -python ../Main_earth_system.py $SLURM_NTASKS 2.096739677976844 5.615278923741312 4.833025481990402 4.156542548215027 0.15550472299350265 0.23052434877409236 0.17953064108912886 0.22694784202587817 0.14963237414573238 0.7764113662060707 0.28033580978065537 0216 -python ../Main_earth_system.py $SLURM_NTASKS 3.087251951664416 5.691987622130759 1.6240487236826173 3.6723386435564684 0.10072804075845579 0.17162121457713198 0.5525103735863186 0.2911568138455217 0.12667234952964732 0.9223953388233027 0.2340136428948044 0217 -python ../Main_earth_system.py $SLURM_NTASKS 2.251149433592655 3.6373773784007217 4.505477001767095 4.44349531812508 0.18445087790040118 0.19080369481339696 0.9052166636365925 0.16912795577333134 0.14079033291505483 0.3235618384554233 0.36498619858155346 0218 -python ../Main_earth_system.py $SLURM_NTASKS 3.035257436585457 4.176229699460453 3.382543296811038 4.312542100167734 0.18690913971714654 0.7172810024242492 0.9098829584695378 0.19410397904032511 0.1464518128110287 0.8753621079745999 0.15197144420284497 0219 -python ../Main_earth_system.py $SLURM_NTASKS 1.9473173241990909 5.256926546564955 4.643891181830478 3.8998856888999445 0.1208172261452012 0.2824108733597413 0.41692430531227587 0.13107968685777924 0.11712846546700378 0.9361557639907964 0.2510455651730219 0220 -python ../Main_earth_system.py $SLURM_NTASKS 0.9126789218467545 4.490584416965097 3.291437228520212 3.9353169985620995 0.16220340950918946 0.39409258666576386 0.38131943546187874 0.2965405833413842 0.14859393595790066 0.8287606628682268 0.2550628663682255 0221 -python ../Main_earth_system.py $SLURM_NTASKS 1.4651145690570888 5.7953902989688055 2.6007061109714167 3.8653417540211343 0.16276946758862393 0.5533034140661396 0.4029470490213709 0.1678240562385075 0.12751751414311424 0.36549529989269736 0.23331203450820445 0222 -python ../Main_earth_system.py $SLURM_NTASKS 2.443000775354772 5.800246878817827 2.816204425252266 3.630428962588269 0.14247070961936747 0.7242622526076214 0.6532781147504523 0.2428802281221781 0.11960609195980679 0.5286437112148497 0.126070021698708 0223 -python ../Main_earth_system.py $SLURM_NTASKS 1.7660556495415984 5.830593917477068 1.0824172212382186 3.8547785392146343 0.18792157825340855 0.970268475946465 0.22301934989096597 0.21824605638503375 0.12218444089985667 0.6367444121373785 0.36691987607723064 0224 -python ../Main_earth_system.py $SLURM_NTASKS 0.9229612405430692 4.217279656007448 0.9073434034342576 4.04645405811146 0.1618621367050792 0.35525463808085456 0.9260905855647359 0.2615932077080556 0.11828050610103188 0.518121493221245 0.10383071205322426 0225 -python ../Main_earth_system.py $SLURM_NTASKS 2.5067203918633654 5.65981320706403 0.9292037403636806 4.321131532657673 0.16971472709005486 0.7962219349106431 0.2713475528471177 0.28596497016887024 0.14421329852814518 0.1304337010142921 0.33187240750130975 0226 -python ../Main_earth_system.py $SLURM_NTASKS 3.1098445349268475 4.388497408963188 0.9581286830862232 4.095452048327486 0.1935600333381559 0.8580450650026119 0.9967052915525315 0.28637317336508694 0.1497549555440078 0.4231720016326078 0.2882355948609394 0227 -python ../Main_earth_system.py $SLURM_NTASKS 0.946065084153933 3.990989939751944 4.4097362348656945 3.873184799789181 0.1098281588105579 0.9767423313238629 0.13107491147456934 0.25275504523050935 0.12111773992852763 0.9417428310992321 0.16269737752421798 0228 -python ../Main_earth_system.py $SLURM_NTASKS 3.179045447492509 5.803138195894443 3.242176624595376 4.064457214641463 0.11563558626647095 0.13688853476090995 0.6459073955538115 0.12808888934369705 0.106567289901609 0.8733096221510538 0.3449647595468208 0229 -python ../Main_earth_system.py $SLURM_NTASKS 2.7257686660648384 5.599258737747323 1.5141661580654238 4.023715799298919 0.1882467935735348 0.4642022963592509 0.8623958427788806 0.1923997514067562 0.14971833163293768 0.49318963995188414 0.3942793239180983 0230 -python ../Main_earth_system.py $SLURM_NTASKS 2.636661905454945 4.658279720034555 1.0239031918753934 4.464297613087837 0.13859504117971055 0.5195661909613793 0.36027694386685816 0.28011788047449127 0.14814367606407552 0.25299869795524804 0.19909898042615592 0231 -python ../Main_earth_system.py $SLURM_NTASKS 2.223151271115276 5.634614838405787 4.656254396960564 3.5611932157222785 0.11455560788202175 0.5394415254400878 0.9077014655394677 0.23956086893229622 0.1015393296541577 0.6089128129388376 0.33404920602084814 0232 -python ../Main_earth_system.py $SLURM_NTASKS 1.2960924211691642 4.72481356834076 5.479330319520767 3.8663241235116645 0.16047204812380753 0.2692504414175356 0.8905989844886312 0.13098020772673383 0.10499561736490796 0.7587120209969217 0.20815306275259907 0233 -python ../Main_earth_system.py $SLURM_NTASKS 2.0824615581247796 5.3051615560703675 5.438014165158296 4.013557113691602 0.10910693713645085 0.5946698161816971 0.6897536788498075 0.24575631058426978 0.11819011197422555 0.28895245434557637 0.13273331546904332 0234 -python ../Main_earth_system.py $SLURM_NTASKS 1.5934077287771093 5.408643650355222 2.821495468803575 3.956127160271513 0.10627695832475423 0.7419291572990264 0.37477106059872334 0.12410037744262317 0.13677974081632063 0.9733838806379791 0.10475595798025404 0235 -python ../Main_earth_system.py $SLURM_NTASKS 1.2584083087353002 5.723345375651598 1.5535162275071175 4.370817885515264 0.15027941605572936 0.6501876261431992 0.1767475194230494 0.25899267906962653 0.1296209688456884 0.73066334569176 0.264460231631656 0236 -python ../Main_earth_system.py $SLURM_NTASKS 0.8671201125591403 4.980897493724964 2.805565983947619 3.951019016589342 0.1629027434747783 0.6141571647924123 0.7101334499718441 0.17907257309116545 0.12374288980441833 0.679133607332048 0.11593438393116037 0237 -python ../Main_earth_system.py $SLURM_NTASKS 1.3585067359473335 4.984410260620901 1.54544189737409 3.736538263072842 0.10677182666653807 0.10750712873363817 0.9738756414137808 0.2410352935887339 0.14020113780754798 0.5832395023012229 0.3724924067069767 0238 -python ../Main_earth_system.py $SLURM_NTASKS 1.823356668759598 3.815272325906821 1.666693271595022 4.440313201087622 0.17241928521180439 0.3891585932896058 0.565974993995087 0.17012658517315585 0.11439380265096066 0.5461788454100798 0.10023934085085574 0239 -python ../Main_earth_system.py $SLURM_NTASKS 1.8164076789839427 5.0202384374400255 1.0325818343473014 3.740878814190926 0.15812231295448803 0.18492826137517857 0.9617185450732704 0.24770952766053025 0.12334324220127924 0.39033869591995796 0.17036806961908185 0240 -python ../Main_earth_system.py $SLURM_NTASKS 2.759108920966391 3.85105707156508 1.6716590164524416 4.475811658460019 0.12231149890104796 0.5154540126719126 0.4336700014791893 0.265572855772379 0.11760541519843465 0.2506449943774383 0.18627643757978102 0241 -python ../Main_earth_system.py $SLURM_NTASKS 2.4983516511173285 3.8330974812945495 3.1245840827784477 4.005766288000737 0.19854723568542548 0.21405108011648358 0.1936016450998992 0.292402582064556 0.10766577629335404 0.29932522487275537 0.2487648771307264 0242 -python ../Main_earth_system.py $SLURM_NTASKS 2.3768416598637714 3.6958160624224288 3.5329220021005705 4.016966138770282 0.12683561335482582 0.25649744111366257 0.2634564763738445 0.27531979487408553 0.14103481359311806 0.3790879048982513 0.10888809315266643 0243 -python ../Main_earth_system.py $SLURM_NTASKS 2.62766492600815 5.794674338685722 1.721670046225893 4.203278180607791 0.1472286706971664 0.2604868446978308 0.9360899514021113 0.22468073380102355 0.13584843925007317 0.5949692226164837 0.15986764923231786 0244 -python ../Main_earth_system.py $SLURM_NTASKS 2.487706031366363 4.036995222859789 4.516723872602203 3.706511419188736 0.12694582208207092 0.36823957202209434 0.9483408118517478 0.17844170329918072 0.14870966995339274 0.5845237779528885 0.21455761512698138 0245 -python ../Main_earth_system.py $SLURM_NTASKS 2.837367697960783 5.1456505400268355 5.0762468977785495 4.113247194221919 0.12158220482916154 0.30146875912540916 0.6117968154648384 0.27513796922845946 0.11650742097133032 0.6957786799564009 0.3989332679666816 0246 -python ../Main_earth_system.py $SLURM_NTASKS 1.9804532581153864 5.188853845826104 5.347993363987994 3.852928126087781 0.10821980040510502 0.545716403561737 0.22686253305063317 0.20769805885969514 0.11002980691482576 0.36612300071655157 0.19281452617009848 0247 -python ../Main_earth_system.py $SLURM_NTASKS 1.869268040517149 5.1644940826617685 4.736414539884119 4.212983552380634 0.134159403499607 0.945331407666545 0.8066844665862127 0.1755953170838288 0.10411891952976556 0.9045850973667616 0.1078179787537451 0248 -python ../Main_earth_system.py $SLURM_NTASKS 2.728717799344553 5.254126317522664 1.1459726468764821 4.226679726084738 0.18478153344525142 0.6561435648795886 0.182548464441055 0.13032821641379086 0.13519368800990533 0.9122257251240954 0.22322311591727276 0249 -python ../Main_earth_system.py $SLURM_NTASKS 2.004319981449405 5.3982249843568235 2.1004314798880737 4.367664380996235 0.1950373310387796 0.3607630565516561 0.6437099858084915 0.2674893283124224 0.1026424469977172 0.16323699497936878 0.21723077916542521 0250 -python ../Main_earth_system.py $SLURM_NTASKS 2.016915800844539 4.660448914508034 5.236387215988675 3.871466258920395 0.12948137144499983 0.1659450604456736 0.7172807161370527 0.16656831381420936 0.1461475822628264 0.3670912162554756 0.23829575174795115 0251 -python ../Main_earth_system.py $SLURM_NTASKS 2.553692952357043 5.974868714730675 1.8398228212204955 4.1629371278735645 0.13678376073278675 0.11539297666044881 0.522447065928373 0.28931170593943156 0.11392877032542505 0.14108616874254556 0.18707213450757273 0252 -python ../Main_earth_system.py $SLURM_NTASKS 2.9835848963054854 5.566468698250535 1.1156281902810286 4.208112093714471 0.16381651978770162 0.1312745391648785 0.8912170129972095 0.22900457013931008 0.11197764740201897 0.7798612569850182 0.377220191267291 0253 -python ../Main_earth_system.py $SLURM_NTASKS 2.4137408835306444 4.5602100982216776 0.9936410104307345 4.368666869741459 0.17367532720605572 0.5931570807234238 0.30412820686311637 0.12699887968002493 0.1408716062891967 0.8054016420957265 0.33711683107668655 0254 -python ../Main_earth_system.py $SLURM_NTASKS 2.6897195800221363 3.9096540167635125 4.898561891320055 4.391620206134134 0.12048795813559648 0.8804806683588177 0.4564463565645084 0.2338028136125673 0.14124259990314514 0.9652963665805846 0.23979252864786732 0255 -python ../Main_earth_system.py $SLURM_NTASKS 2.1414012970281604 4.207424545958664 4.057749137595568 4.457559030986143 0.10862611702718537 0.730291939148957 0.8785105328735261 0.2567335296409836 0.136095524841393 0.5168673433665029 0.38665201990743125 0256 -python ../Main_earth_system.py $SLURM_NTASKS 2.5329176666029714 5.068805137616595 1.3616441258017513 4.1030305934436555 0.1274669283444756 0.7203238907647731 0.5918919382717467 0.2271665003665887 0.11312481814799442 0.8172920932798349 0.3998171686791149 0257 -python ../Main_earth_system.py $SLURM_NTASKS 2.020334135309797 3.9154913645049723 2.2006200043416353 4.082085079008281 0.18634088426665643 0.10309022819605947 0.8808638345038429 0.11800390563829147 0.10899878572100762 0.6585395995137617 0.15453659020587057 0258 -python ../Main_earth_system.py $SLURM_NTASKS 1.5887606540956691 3.564229263702122 3.1882138798627464 3.5134912143866672 0.16945312027239104 0.8095825079855953 0.12739610771596768 0.2422324468329295 0.10731972651301147 0.4614675505356589 0.29965935939323624 0259 -python ../Main_earth_system.py $SLURM_NTASKS 1.9871205764477722 3.767491941252568 2.0549327352562514 3.500048553143908 0.10441278204557229 0.13279784830003405 0.24144762007459034 0.2521331089270812 0.1265869403360694 0.9312309873106227 0.22986613352992283 0260 -python ../Main_earth_system.py $SLURM_NTASKS 2.902499444541532 5.2295341716253105 2.7436063470875123 4.491485978278049 0.13318098339493625 0.8426232030289369 0.2962553728389594 0.12843385217460884 0.13796128752766132 0.6156604040831075 0.20375303602992878 0261 -python ../Main_earth_system.py $SLURM_NTASKS 0.9776722980861249 5.626943911031317 3.6683105125061877 3.6779129968478945 0.17954788284635148 0.2280087654033048 0.22124727880765976 0.23889543547743353 0.14834053030401384 0.562320838705928 0.373824374529649 0262 -python ../Main_earth_system.py $SLURM_NTASKS 2.8089796001604217 5.517289405674359 1.088470165743305 3.746673095874798 0.19345241977727223 0.39081927444705544 0.9583811433607098 0.22623581547862476 0.13311011152407895 0.21655022935173418 0.2151584602210378 0263 -python ../Main_earth_system.py $SLURM_NTASKS 1.3181080762857453 5.331766130841375 1.6542490384022344 3.7207118049208243 0.1146049600630076 0.48795091293571824 0.31296446229234165 0.20967056808427886 0.1461972629568456 0.2581974087851018 0.3860891507359191 0264 -python ../Main_earth_system.py $SLURM_NTASKS 2.937429902065155 4.783798781715298 2.5711035252039185 4.119259692038488 0.16512672148351398 0.5255871435562495 0.3133721635555572 0.12560959201539063 0.11522645887988293 0.3029937512267307 0.23571317060146307 0265 -python ../Main_earth_system.py $SLURM_NTASKS 2.2311787233299967 3.772710313129594 4.698760302794626 3.6641146789740544 0.19152891625105262 0.40992300668000636 0.8454019335190603 0.16746855468688981 0.11805217390258041 0.975875324058168 0.36350707199185095 0266 -python ../Main_earth_system.py $SLURM_NTASKS 2.887007812016888 5.8239848574480755 5.429848474525665 4.273684545691172 0.1886750614531638 0.4179803353999667 0.9067705589517769 0.16038107663121903 0.12282026449677357 0.39085790811340293 0.36703313112231406 0267 -python ../Main_earth_system.py $SLURM_NTASKS 2.1216054616015594 4.448875363329668 0.9897815368295653 3.8868885295324933 0.1678862946348066 0.6617410591136599 0.49599246849102807 0.2570281330066335 0.1395378671995497 0.7431943422479099 0.12163844608353212 0268 -python ../Main_earth_system.py $SLURM_NTASKS 3.1936166692430863 3.9290799121209474 2.56458332889341 3.7744126720750883 0.13566783235531807 0.5571973602023423 0.9529532689416952 0.1853011434034782 0.11220817100330142 0.8850647454065105 0.16284637679109454 0269 -python ../Main_earth_system.py $SLURM_NTASKS 2.4777978763045407 3.541527318609078 3.5922291688644528 4.199803272189793 0.12327670063176116 0.12936072856971145 0.642065652310539 0.12888568580729756 0.10105724637541175 0.1238236631517747 0.23490556357185668 0270 -python ../Main_earth_system.py $SLURM_NTASKS 2.330363949536417 5.376403339236552 2.082244006656207 3.5533267711691137 0.1702201001489803 0.5577396804587961 0.47471704118937297 0.21945412787002413 0.14818711818275532 0.1216056515249313 0.10486452674465256 0271 -python ../Main_earth_system.py $SLURM_NTASKS 2.9733594690976766 4.66937712814863 4.127750061817624 3.8247611893275564 0.19316388664471457 0.2989583501086851 0.4154905038863853 0.15157616077385577 0.12828248004869205 0.48925238824512496 0.2388361426487206 0272 -python ../Main_earth_system.py $SLURM_NTASKS 2.8215768289741012 5.779829531745927 1.0475743071535435 3.941728099991055 0.14266278704631222 0.6340928561833019 0.8825147444480126 0.17300280292800435 0.13107626663810315 0.2618070179025668 0.1987439934036841 0273 -python ../Main_earth_system.py $SLURM_NTASKS 1.774947944419666 3.7627861868514376 2.4922840921366998 4.429742736217486 0.12093129193043017 0.6263390214010577 0.8508851548400467 0.17589118871443635 0.12093567162133875 0.46940415084784626 0.301109069197401 0274 -python ../Main_earth_system.py $SLURM_NTASKS 1.322668196658126 3.966766649830103 5.384160538743747 3.922873900135091 0.12429541606383152 0.6004410551521849 0.8212914972976076 0.19842188775264946 0.138748943267686 0.5369115403000504 0.3380182789893045 0275 -python ../Main_earth_system.py $SLURM_NTASKS 2.3163201722595153 3.958282370186593 4.050827401639463 3.931648073735663 0.11893885717223246 0.47307961118524766 0.900846572569227 0.18614480660729316 0.14570283788994096 0.20938754839690588 0.2946012138225351 0276 -python ../Main_earth_system.py $SLURM_NTASKS 1.3503959894240996 3.8783142975884872 2.84365891649058 4.365240862161118 0.10111742236944897 0.6749383081167839 0.6378152276549905 0.10896776649740514 0.14721901600358153 0.9483053001519681 0.22520885508490826 0277 -python ../Main_earth_system.py $SLURM_NTASKS 2.675566919135031 3.9038568795883233 3.187558683142786 4.342767806502571 0.17928550965832127 0.6270391230842548 0.42610802016666627 0.24091854907024343 0.1395612974139585 0.6182073003647316 0.25061011440498004 0278 -python ../Main_earth_system.py $SLURM_NTASKS 0.9488018498429975 5.311557622750296 2.357280360165093 4.416280130785274 0.1955303298213571 0.726263058999592 0.595491221354892 0.2245333692725553 0.11752130530841765 0.2610790817751146 0.2873610878407502 0279 -python ../Main_earth_system.py $SLURM_NTASKS 1.4830943178822462 5.944581453181115 1.7413226742026793 4.3107796326239365 0.17489817553577378 0.9503918472696348 0.6471723811166256 0.1745328721914312 0.14114423074499666 0.7752124489705049 0.27550167407444326 0280 -python ../Main_earth_system.py $SLURM_NTASKS 1.1671183112235606 5.72530482021118 1.9031289517019034 3.6565167669155105 0.14793166451329523 0.30708123686984556 0.60405046738475 0.11799497601692535 0.10191844733672181 0.508040834911252 0.3224252885812496 0281 -python ../Main_earth_system.py $SLURM_NTASKS 1.5843714741815944 5.539914489969913 2.728508517723926 4.4068094005073934 0.13437901602512414 0.3017757066904351 0.21382775754259098 0.23305041775200422 0.11879051621418661 0.5239803105685192 0.20638982718531992 0282 -python ../Main_earth_system.py $SLURM_NTASKS 2.846896682569046 5.86818674237511 1.735058407732712 3.7535911110593814 0.12912365632939826 0.9492262967077024 0.8571377381156176 0.20795857494759878 0.10208063956097785 0.41995143402849067 0.21319887480948801 0283 -python ../Main_earth_system.py $SLURM_NTASKS 2.468788884510902 3.744332364807043 4.083589303124546 3.5211659042597643 0.1000241155430201 0.12428600347705587 0.9976285283105545 0.20914971439488234 0.12866447488239188 0.5256797340044562 0.3185923251588402 0284 -python ../Main_earth_system.py $SLURM_NTASKS 1.0943138557464338 5.464539946342496 3.754416679536101 3.8117147079149487 0.16927863307258767 0.30971759127190224 0.4352957085071897 0.25226814967328987 0.13549893471016933 0.7908043850632029 0.25227278028226274 0285 -python ../Main_earth_system.py $SLURM_NTASKS 3.1986300999057438 4.538214021921084 2.7571334486113477 3.657516311063261 0.12577878654104946 0.400742273536952 0.6018096920760801 0.2940654226672931 0.11172701247788427 0.4294538046373595 0.16355302471484823 0286 -python ../Main_earth_system.py $SLURM_NTASKS 2.862730640174034 4.320253858393538 2.0296233951741636 4.085448344140165 0.1676939149968567 0.9535646325541517 0.8890819345973209 0.15392905619608435 0.12767475987065405 0.6140509016178178 0.2892399480059268 0287 -python ../Main_earth_system.py $SLURM_NTASKS 2.106646077419881 4.679334205020858 5.12672225093891 3.69863544376941 0.12645708373901907 0.7408106840351716 0.92242878435672 0.25386817055107425 0.11207915014267998 0.6535215165541591 0.13989500662710763 0288 -python ../Main_earth_system.py $SLURM_NTASKS 2.7367277712819096 3.524644503716012 1.1837367772106184 3.9481587614338283 0.166201012482309 0.7536370272062342 0.1723162030319964 0.23354593154121803 0.10847498177395012 0.8138164969185417 0.21039089615620585 0289 -python ../Main_earth_system.py $SLURM_NTASKS 2.3324389803708034 3.9977952901073617 3.1631453877545797 3.690292414342422 0.11867774299528121 0.7745298613577734 0.19145713440647222 0.2758792620670834 0.12272667753167031 0.9333583209825101 0.24777724439293025 0290 -python ../Main_earth_system.py $SLURM_NTASKS 2.282571237671351 3.789678281398614 2.586445380087728 3.652243646084193 0.1899510501070953 0.8291399117177699 0.7988304172761431 0.12192928935049557 0.12505215110126736 0.9443532808846475 0.15183597752256484 0291 -python ../Main_earth_system.py $SLURM_NTASKS 1.532561827473304 3.849637016335369 3.926374036942068 4.07136921815088 0.15544171838445095 0.17598987118934686 0.5322729985620737 0.26431335380659104 0.1396339199703825 0.742248694201874 0.19655839361281535 0292 -python ../Main_earth_system.py $SLURM_NTASKS 1.968703766618307 3.644647530827747 3.923300347151552 3.5153327279819155 0.17063296676315393 0.6656453682646066 0.5626019622150471 0.27304914076191 0.1059111006936814 0.10758661285316609 0.38839017786467456 0293 -python ../Main_earth_system.py $SLURM_NTASKS 1.510847944517455 4.840691352995673 4.74064672444806 3.7952396601673613 0.13951301847738426 0.7800401044390165 0.6401005668035479 0.20842386174945554 0.1086603293824904 0.8083860927084908 0.2582815184800845 0294 -python ../Main_earth_system.py $SLURM_NTASKS 1.3989118493561477 5.470971917410476 1.3928464915179573 4.027529977646837 0.1412050210440475 0.20002020159386408 0.521368340488121 0.14689704273216733 0.10691566289711493 0.9768083112823639 0.3862573914566574 0295 -python ../Main_earth_system.py $SLURM_NTASKS 2.999826462857616 5.92215604990717 0.8692168175066465 4.254918006796595 0.18133765725426274 0.9438209408282245 0.3573835465326223 0.139660461628638 0.14039696507728364 0.5582919023453504 0.2982630916397342 0296 -python ../Main_earth_system.py $SLURM_NTASKS 3.0674872970456875 4.50568024891304 3.5693520254505486 4.259588957330093 0.18081834631132745 0.45803135106473314 0.5852764327572272 0.1239594405929944 0.11608133850680045 0.806168255113203 0.16536341944146116 0297 -python ../Main_earth_system.py $SLURM_NTASKS 0.8361277972874794 4.438986527066973 3.1518165545377794 4.4944710780924115 0.12069915146001034 0.3741156338244819 0.5808433155986077 0.18718994183737586 0.11692758250123261 0.5517816892496267 0.1559332640836604 0298 -python ../Main_earth_system.py $SLURM_NTASKS 2.8942520571157484 5.950185708325666 3.978804237180719 3.62687754837694 0.1737801869772289 0.7940737142235269 0.6693803008141482 0.29525868792072507 0.1128543857537082 0.782101826986539 0.1403180868364951 0299 -python ../Main_earth_system.py $SLURM_NTASKS 2.7243518043475694 3.6208401067108587 5.376760276237112 3.911986841912578 0.13649019295219453 0.8964733554338848 0.2368511373150919 0.23406114877316245 0.1262490036192743 0.26978475576757976 0.37641462294866745 0300 -python ../Main_earth_system.py $SLURM_NTASKS 2.9466641381126513 5.210818588202745 4.160377492907516 4.355843316832686 0.1453627031741424 0.12971949621355736 0.3508257833715912 0.2886064010776517 0.12086222828570564 0.41921146046834 0.17567129347795246 0301 -python ../Main_earth_system.py $SLURM_NTASKS 1.1676955136639076 4.605065848112069 1.262821974315643 3.943397792536945 0.19232394530264 0.7319102590258147 0.5200367083484161 0.14205427928108422 0.14300649969482757 0.4334617204435589 0.3189105677874162 0302 -python ../Main_earth_system.py $SLURM_NTASKS 2.047616704023305 5.258432107814099 3.3903996340173226 4.042542082381977 0.11427884975724344 0.9365745068410113 0.5453360774128051 0.286726528956436 0.13006412180335464 0.8728699825381172 0.13240094846581069 0303 -python ../Main_earth_system.py $SLURM_NTASKS 3.1553093381473367 5.754596806926688 0.9157047281411582 3.577487867672011 0.1979372925854363 0.618860497773061 0.5637980243813334 0.10622210711393516 0.12775795437291343 0.35018032600912175 0.12528171334562255 0304 -python ../Main_earth_system.py $SLURM_NTASKS 0.8736595425518046 3.8018957379459644 3.3240076235116094 3.59195579293864 0.1907648572764184 0.17857809039390055 0.5708224325621983 0.12787295099242338 0.12759716639693688 0.24637074197261963 0.15333942097736522 0305 -python ../Main_earth_system.py $SLURM_NTASKS 3.1228684124063504 4.673997809462387 4.317872073624658 4.280140521576257 0.15670383146278602 0.9419686653539323 0.1458069475779452 0.23422293935233499 0.12861558273676638 0.9952845944672655 0.3052273509169562 0306 -python ../Main_earth_system.py $SLURM_NTASKS 1.982821057544137 5.31472971008129 2.0531907629330766 4.298294884006898 0.15133788561246558 0.33807008197628385 0.2942698980112215 0.29757665180985693 0.13469379580758967 0.9246611746123952 0.3320979631469718 0307 -python ../Main_earth_system.py $SLURM_NTASKS 3.002546027084793 4.098533312057372 3.1983649462003028 3.518476285949633 0.12382421353632343 0.36200864535129307 0.5824995771628989 0.11736380863613693 0.1469640734367786 0.5598442541178051 0.33329087125651014 0308 -python ../Main_earth_system.py $SLURM_NTASKS 1.9987660065066266 3.8918214997798937 5.055426644334606 3.878188186299127 0.17424643167382556 0.9217205940932597 0.5126610876712685 0.2179362537188004 0.11200646158964743 0.42642199700683725 0.2025693076720249 0309 -python ../Main_earth_system.py $SLURM_NTASKS 0.9299911856624014 4.367305681324605 4.510469977978064 4.447569071102047 0.1370344259022509 0.3658078820620272 0.9605513431720639 0.13649143158075444 0.12138901432452612 0.17110205230558057 0.286098955922536 0310 -python ../Main_earth_system.py $SLURM_NTASKS 2.2257401545284203 4.714107202601444 4.428150295932556 4.062553360744183 0.17350720846606743 0.5243041051128788 0.7477154409829225 0.10540277325732725 0.10801173476969844 0.3302956051657381 0.39058261339252076 0311 -python ../Main_earth_system.py $SLURM_NTASKS 2.7825212817180907 4.392323028103259 3.1096594824221144 4.460879128392906 0.15682271142173065 0.7438083916197704 0.18803035762478304 0.1133342094252243 0.13082049554532874 0.25730201918205803 0.14762648890828053 0312 -python ../Main_earth_system.py $SLURM_NTASKS 1.7373458362058012 5.402779943874783 4.235054788390392 4.286001830953699 0.1047067645644005 0.8686783276358441 0.418123283662275 0.16211117462479321 0.10098571781932421 0.28075422424364194 0.29863696551013597 0313 -python ../Main_earth_system.py $SLURM_NTASKS 1.7952836341100697 4.5321624529886515 0.8273314159469973 3.618449125134049 0.18096783538512878 0.5335063156940448 0.3712664130853186 0.12729705712652567 0.10420618860635766 0.48839298349131377 0.12838594836542336 0314 -python ../Main_earth_system.py $SLURM_NTASKS 1.8996741866909175 5.3691848983740265 2.807722872573759 3.8148899122548574 0.13710074937576466 0.4416037107032551 0.248309600191562 0.11948969115029397 0.11232826635877294 0.27491217199825424 0.33109904692140146 0315 -python ../Main_earth_system.py $SLURM_NTASKS 1.8882633163517584 5.002589957942395 4.840538715982527 3.5634724588499394 0.15179128663546268 0.7770075527043003 0.8381923407114883 0.2715906508238787 0.11333271346572185 0.5470017077853502 0.17781646943579518 0316 -python ../Main_earth_system.py $SLURM_NTASKS 2.1865656584138073 3.779397726458309 2.0777940830148967 4.469543484324425 0.16149541119300295 0.2952248787535744 0.5302399687215854 0.19334862059872934 0.13794682184820015 0.3080230867387015 0.16218095208359332 0317 -python ../Main_earth_system.py $SLURM_NTASKS 1.760029145465543 5.685084742760229 5.13273524661584 3.5590773723390052 0.18302242275214078 0.21141346873143552 0.8642220592241474 0.2696432097984789 0.12263021471641006 0.43062082396923473 0.10212132645892043 0318 -python ../Main_earth_system.py $SLURM_NTASKS 1.3320379459430258 3.747749589233585 2.4762097234745006 3.581450832890664 0.18017635733968354 0.3944901908345495 0.13050751109852368 0.27198700074798166 0.14347696461306833 0.8876666953601938 0.11257241463837234 0319 -python ../Main_earth_system.py $SLURM_NTASKS 2.4084025947925434 4.7994573109844065 2.9935600696471294 3.9684343754591 0.12286419256100094 0.5907561329430888 0.38901763966792424 0.18376362624251252 0.13234154362663986 0.40097881079889774 0.2836050047996249 0320 -python ../Main_earth_system.py $SLURM_NTASKS 2.789971100444789 3.8214883245607183 3.1730711699877956 4.380578671538387 0.1320680098274231 0.7584220263350523 0.24448918300411807 0.29636268141633615 0.10235295534963575 0.9093389697782444 0.23311682034047648 0321 -python ../Main_earth_system.py $SLURM_NTASKS 2.2778027635012443 3.736273528891121 1.0431047576317345 4.42093998601222 0.18817052282353774 0.6881877867028585 0.5257394446997149 0.10465110910499184 0.14401380318537188 0.5420546029697012 0.26129540219697417 0322 -python ../Main_earth_system.py $SLURM_NTASKS 1.445185413091656 5.446131402928875 4.614166328545578 4.366112603581929 0.1751955375850568 0.910347709359334 0.15377973529432426 0.16486623922211058 0.10775939080875606 0.17268243703775554 0.1697705186262909 0323 -python ../Main_earth_system.py $SLURM_NTASKS 2.503904094782775 5.308203041430968 1.1273879266293347 4.410319297960538 0.15889131617355412 0.24680627518634507 0.24996738788793513 0.19661771223968205 0.14189139686356114 0.11573134631864113 0.3875636635350024 0324 -python ../Main_earth_system.py $SLURM_NTASKS 2.1919426868333836 4.140418607326903 3.2206724945092473 3.512008542424496 0.12939056325304477 0.3818159875907853 0.6730207022378367 0.10928314391742436 0.1076049641357224 0.7031927479371936 0.3993697753501425 0325 -python ../Main_earth_system.py $SLURM_NTASKS 1.733531581222282 5.351289056110266 4.025646660396158 4.164626140343838 0.1561511082411886 0.1150340832561344 0.290603701462875 0.176629906333645 0.10177171375189888 0.111196122925972 0.34003396624494125 0326 -python ../Main_earth_system.py $SLURM_NTASKS 2.7707570959014682 5.91122446393615 1.6744809731016401 4.326551455767975 0.1811395919602522 0.992307602445313 0.8520447717197784 0.2987801413842406 0.12232674697200488 0.9547387997066614 0.18208221280239778 0327 -python ../Main_earth_system.py $SLURM_NTASKS 0.847380119562575 4.9624866644760735 4.807759861003545 4.382827841834843 0.13783937414041342 0.6170183234837044 0.38059007470021056 0.16503029158164756 0.13044136063917017 0.44168169247744804 0.356544738072204 0328 -python ../Main_earth_system.py $SLURM_NTASKS 2.087983956398438 5.630505782519512 4.16062832679745 3.603899661390382 0.14178601972984814 0.5170553521611332 0.15891935404207408 0.11868086617787073 0.11504804461704585 0.15287987603089104 0.26277667974528796 0329 -python ../Main_earth_system.py $SLURM_NTASKS 3.0218093961141337 4.852892778956038 2.5374007054974794 4.455951541217747 0.19129864668780083 0.9529543515368407 0.4683901605391345 0.2799618155192842 0.14073206918305906 0.1171381842511401 0.34125219693436126 0330 -python ../Main_earth_system.py $SLURM_NTASKS 1.708052427899184 4.557119657840204 0.9655886013774981 4.161779318940113 0.12959397576241194 0.6854347037509013 0.6391502318955288 0.21116422414120556 0.1450110028851075 0.692566958954179 0.2041459538935381 0331 -python ../Main_earth_system.py $SLURM_NTASKS 1.7853453279449139 5.431830904524882 3.4228068705319785 4.379029381267897 0.14706006327352475 0.7489670283464311 0.6570319352526959 0.11216703206896295 0.11865534576505811 0.532986202409211 0.1986824381460196 0332 -python ../Main_earth_system.py $SLURM_NTASKS 2.410971477857112 4.051117758257211 3.0127089658833093 3.819334390382059 0.1969235176226303 0.24814249824898543 0.6206099389819841 0.16617020579854552 0.11592834981055464 0.5694899575154782 0.2858797721014862 0333 -python ../Main_earth_system.py $SLURM_NTASKS 2.8984735720567123 5.011335902190531 5.040373372986087 3.971262134775193 0.13029073617232295 0.6508695030106224 0.5295178663215407 0.12011788557268471 0.10503726158972879 0.2859426434485618 0.24543705168976912 0334 -python ../Main_earth_system.py $SLURM_NTASKS 3.1607539319692286 5.827742910340577 2.793330643751157 4.428740677841952 0.12500646735001514 0.14347310032498478 0.19877399662936301 0.22640880710702396 0.13934332065588556 0.9063737636579351 0.2673758737864359 0335 -python ../Main_earth_system.py $SLURM_NTASKS 2.3077368076482525 5.132486113254803 2.1324832403878102 3.793845547443659 0.19324788071544424 0.6018068581993846 0.2748625129831398 0.17861486801937815 0.14797998478629415 0.8773951226168468 0.373215600012342 0336 -python ../Main_earth_system.py $SLURM_NTASKS 2.455766427280201 4.964259993590025 1.3519644341885453 4.0966565785212445 0.19278139870350552 0.6443066676729811 0.24907363538161445 0.26885347683322314 0.10543526383709516 0.8908431299137288 0.13500697010977286 0337 -python ../Main_earth_system.py $SLURM_NTASKS 2.3277873939859113 5.714141200673527 4.434080715290179 3.7314350700606393 0.13970301189064716 0.6232284417742752 0.6739205749185259 0.2054819658536985 0.1067556969944748 0.3683263343018055 0.24598391646857756 0338 -python ../Main_earth_system.py $SLURM_NTASKS 1.6921737687897953 5.18700858979266 2.4867821055120967 3.8409368570871787 0.19033984499564688 0.5623259119494379 0.2761546699877288 0.1447762925470509 0.11255596779534309 0.23890074830285898 0.24083062449494833 0339 -python ../Main_earth_system.py $SLURM_NTASKS 2.3517028531684105 5.386574538243239 3.564646492101817 4.388505343969568 0.13510787053925855 0.5004259504419356 0.9409467809596134 0.1291641597929404 0.10864655316893115 0.9500155898578785 0.2393220823918903 0340 -python ../Main_earth_system.py $SLURM_NTASKS 2.943262832219875 3.7544944118601915 4.873924210818257 3.7185153848838035 0.13004643275967256 0.48281445191801176 0.6144208908615219 0.17105503407612427 0.14732465124503136 0.8400866963447512 0.15119048445148597 0341 -python ../Main_earth_system.py $SLURM_NTASKS 1.0591597446125718 5.17076266422178 4.220306173443693 3.621416272629267 0.1499066527360888 0.49103291327350584 0.12324053932244237 0.24744007362528525 0.1296570367142249 0.9203228324732821 0.39538696644220006 0342 -python ../Main_earth_system.py $SLURM_NTASKS 1.2366900570708903 4.109878758522699 2.264161634223514 4.01429841657827 0.1423240028133381 0.8998252022397777 0.9548847620335675 0.2978315377063736 0.12028067903849735 0.4601870688733657 0.3156530774745879 0343 -python ../Main_earth_system.py $SLURM_NTASKS 2.171375100883844 5.752166851385455 3.8073938346255867 4.437698123697782 0.18772003967545534 0.30547475204240837 0.15557994747726225 0.235767967880139 0.11732569263454329 0.4254933633122536 0.24280313320628352 0344 -python ../Main_earth_system.py $SLURM_NTASKS 2.7623046908243314 4.9759035635220945 1.920892621931845 4.051341335850332 0.11572518120378647 0.32207644844069433 0.17645713066610857 0.23671327176631834 0.14967760870788913 0.8296605186558615 0.23074547539477308 0345 -python ../Main_earth_system.py $SLURM_NTASKS 2.5006664468164046 5.575938133537102 2.783936086397034 3.9259024863474514 0.17190393017725414 0.453536653794516 0.10872376167716762 0.10485683556285372 0.12455485559789899 0.1274815266548393 0.17452917577280755 0346 -python ../Main_earth_system.py $SLURM_NTASKS 3.1779159321204267 5.881539321106768 2.4714568909279353 3.7602004093504613 0.18343938670817103 0.7625883957496864 0.5082464804210363 0.2755837433744306 0.1391111945384417 0.5488149365452645 0.1835306795315757 0347 -python ../Main_earth_system.py $SLURM_NTASKS 1.5773405071449482 5.03732025231569 2.911048022965212 4.383345324593095 0.15335251491048738 0.6526568382210834 0.48977401437470813 0.25557128316232486 0.10279783890201055 0.2975291208149488 0.201001700779738 0348 -python ../Main_earth_system.py $SLURM_NTASKS 0.8995184008190381 3.7613793364641355 4.921909386020883 4.247479814119795 0.16837133204158766 0.984649092101711 0.897726933550963 0.2241949975947759 0.14728547910663486 0.48103289659421933 0.27891734355943765 0349 -python ../Main_earth_system.py $SLURM_NTASKS 0.9352245027503214 4.423209623333753 4.105898631195509 4.050056237483048 0.18499387171547058 0.5020102077372511 0.8479678489154213 0.1798583957969019 0.137115978116369 0.7510257613856329 0.37668209270975916 0350 -python ../Main_earth_system.py $SLURM_NTASKS 1.8741095264971253 4.410298191558024 5.322194863581129 4.328364672577899 0.16595943430565763 0.6979215249475185 0.17527546485812637 0.11095547677075739 0.12066463723537708 0.38822349398435807 0.15935598053767472 0351 -python ../Main_earth_system.py $SLURM_NTASKS 2.253766858528844 5.839636174959349 4.26420364155754 4.099431080585761 0.14659743761139293 0.7062563193443853 0.6217861473273272 0.1327322283201362 0.10726977370204654 0.5364761533350398 0.1122834795965611 0352 -python ../Main_earth_system.py $SLURM_NTASKS 0.9663830440215023 4.195115297056905 0.9716876565973438 4.097634612860623 0.18982424881303825 0.7511304070024117 0.6647139818730077 0.25586790763361644 0.12636445908960858 0.3691265120055207 0.10343043433789555 0353 -python ../Main_earth_system.py $SLURM_NTASKS 2.699820378451453 4.014349429234515 1.9160540525860998 3.6282249619185443 0.10126401861453704 0.9049369418923081 0.6702797993998134 0.29836681715759916 0.11610461514004125 0.4118346841347763 0.3807408348624185 0354 -python ../Main_earth_system.py $SLURM_NTASKS 1.9938567811745698 4.280831326375157 0.9740166429490331 4.229041925409293 0.17769942665543448 0.34301934073700285 0.9818186000060927 0.2478197283362441 0.10038946234037707 0.32428855016437996 0.3485451287128132 0355 -python ../Main_earth_system.py $SLURM_NTASKS 2.4953811056286126 4.478950606104569 4.348018597099644 3.639894356873835 0.12551179301654775 0.12504486645741714 0.8422836223280359 0.289556288248385 0.10770816288632853 0.8201921732856651 0.2343067969258571 0356 -python ../Main_earth_system.py $SLURM_NTASKS 1.0219508214261115 4.98969675558745 1.0265360221412003 3.893696622548532 0.15191207035716855 0.46868850134518447 0.421448768588211 0.212936563252539 0.14877077440287192 0.6462205092459223 0.36938237302225274 0357 -python ../Main_earth_system.py $SLURM_NTASKS 2.974561820171859 5.6748400120582225 4.521202073303046 3.9210417766064216 0.15454468028297835 0.194583029888809 0.8490652757681136 0.27816675866820784 0.13087743099107546 0.348222677717261 0.2812281654066189 0358 -python ../Main_earth_system.py $SLURM_NTASKS 0.9567941888937962 4.167253404153236 1.5942303982896493 3.8257629407695872 0.17831770811913 0.7809955439880673 0.6941953941657315 0.27353025241454476 0.10510434409377868 0.532092295766186 0.34513841328818456 0359 -python ../Main_earth_system.py $SLURM_NTASKS 0.9258806339844907 5.1572481370344185 3.5856952258986157 3.604934785710636 0.10282511704766033 0.8114767775335227 0.28400173923793937 0.29938584917262756 0.12125821010335994 0.1729907123543678 0.29502625694004775 0360 -python ../Main_earth_system.py $SLURM_NTASKS 1.6969288936078941 5.268388412747802 4.12525916898095 4.0478582419081315 0.10298200282415819 0.8037663538368229 0.6795271855503437 0.17075057504381846 0.12711866001354996 0.5237782866855593 0.22891780866876987 0361 -python ../Main_earth_system.py $SLURM_NTASKS 1.472634727155702 4.088504633606441 2.6444306855627575 3.6365336439221534 0.19142501572416315 0.30650554391170204 0.2655312850753525 0.21409700150313737 0.11813272229630303 0.16200114037266883 0.22676410161168695 0362 -python ../Main_earth_system.py $SLURM_NTASKS 2.02213053236935 4.315556008498606 4.692392106214894 4.073145746276982 0.11110393501967954 0.7266467175674526 0.8336347344265479 0.10201650621444783 0.10683375246175163 0.3714970940315775 0.17153278359954216 0363 -python ../Main_earth_system.py $SLURM_NTASKS 1.0615389197353025 5.105177535535757 5.2922991538674955 4.056509022246372 0.10367116990139634 0.11098878735159494 0.37931779634011675 0.20838201152025343 0.14319631382692732 0.9616065942174623 0.2925194579251351 0364 -python ../Main_earth_system.py $SLURM_NTASKS 1.8030973608797576 4.649000142555532 1.536511581286447 4.108076999132531 0.1482138565838787 0.9657903946268733 0.5378007222350686 0.29013138150357276 0.14916479750492923 0.8460487433566627 0.1794679099706578 0365 -python ../Main_earth_system.py $SLURM_NTASKS 1.9137870309918437 5.44487448199151 5.080328420594099 3.610353660024764 0.18002460372746282 0.44481745233891856 0.7653888663155376 0.2950827526269759 0.11531490502523666 0.8427459849308733 0.12300737506980709 0366 -python ../Main_earth_system.py $SLURM_NTASKS 2.7653338369635962 3.9226403979621405 1.3351158659464126 4.330747938541027 0.1254326988283371 0.877795450662559 0.5095836066317544 0.1139950174648744 0.1319543665990273 0.6526761281949662 0.39773159566026095 0367 -python ../Main_earth_system.py $SLURM_NTASKS 1.5220057790213803 5.9199963694905 4.260409137173627 3.5672122214193163 0.1253454691158088 0.7524932503566228 0.19579793694210956 0.10121814767470783 0.11410354114761596 0.5338995558373457 0.38155622535213873 0368 -python ../Main_earth_system.py $SLURM_NTASKS 0.8145638397476109 3.734763903421532 1.7378078212468804 4.163315327590415 0.10631765492856407 0.9584276171663585 0.3402187873674152 0.10519154714005319 0.14091168123886202 0.13306387241058001 0.10086358355112285 0369 -python ../Main_earth_system.py $SLURM_NTASKS 2.4360287758573484 5.914999211532961 4.782206300643459 4.031784394777857 0.16886981832472564 0.9321420714717399 0.5163503928134269 0.13925318475613285 0.1347143387168641 0.23201877553308903 0.1996977333077855 0370 -python ../Main_earth_system.py $SLURM_NTASKS 1.6627718353388028 4.069308405277738 3.8914078408495474 3.729929528439659 0.12243784163960769 0.40710219844849116 0.7361720216357764 0.20498828463636973 0.144114824024899 0.9551726087780343 0.21469420688576635 0371 -python ../Main_earth_system.py $SLURM_NTASKS 2.1565303374494746 4.730173508612886 5.425495227821131 4.299742704042811 0.13340018039978688 0.5762423892047137 0.7459803578682863 0.2445421846317765 0.11907488011453665 0.14762625820772224 0.1855698727602325 0372 -python ../Main_earth_system.py $SLURM_NTASKS 1.7469043754531928 4.133852829127495 5.2998778381197305 4.151282556261148 0.15351771864610392 0.816600614497751 0.5023281600037711 0.24246973062223098 0.1000293972182441 0.5043643314386922 0.3919566550100477 0373 -python ../Main_earth_system.py $SLURM_NTASKS 1.841656516897134 5.996539801065312 4.662758787928714 4.237847573199759 0.16336878905980684 0.4124181462205695 0.11939941733121937 0.2624712843033358 0.11989749275146977 0.7517716385270081 0.21589278737730325 0374 -python ../Main_earth_system.py $SLURM_NTASKS 2.474500124307256 4.260390334275265 2.0652198581162517 4.262927244190111 0.13459124066036762 0.3237697336867275 0.7960822932386511 0.192019327249848 0.14166711074231164 0.6565184439948321 0.1921766159033806 0375 -python ../Main_earth_system.py $SLURM_NTASKS 2.6192153544642913 5.522421216430496 2.572456774302604 4.107732995657274 0.1860456248734786 0.5801090455044284 0.4232604336813396 0.17350100723382209 0.11143854975474791 0.2584800698638311 0.22955445244812223 0376 -python ../Main_earth_system.py $SLURM_NTASKS 0.8299640494245717 4.951290460429862 2.364797137027308 3.545552761320501 0.10407223421998824 0.2672625132541826 0.8001459139694514 0.11847619602449552 0.14016535435270405 0.33627271981947193 0.24561138316251124 0377 -python ../Main_earth_system.py $SLURM_NTASKS 1.016366951891883 4.5478679149452095 3.9177326765763256 3.7049935843255457 0.11581019420958141 0.6830606347078213 0.2601556283367331 0.17238427457565342 0.12050046026549972 0.37408862577000346 0.18679160205895137 0378 -python ../Main_earth_system.py $SLURM_NTASKS 2.8043042580232154 5.461445600051064 3.1354897723684205 4.329960677013015 0.16584127002308566 0.2988168621565941 0.5402087789166876 0.2949464258861607 0.1413239264553526 0.1791661053772985 0.26023083023954774 0379 -python ../Main_earth_system.py $SLURM_NTASKS 1.9460405257058686 3.8460591106155895 3.0441503542160975 3.586335054786737 0.177067914751292 0.2209683875903656 0.671599189774939 0.2089328654794271 0.13821226971289519 0.6625577886469863 0.36189737276563383 0380 -python ../Main_earth_system.py $SLURM_NTASKS 2.5775530499010584 3.6091057570457092 5.47337530034645 3.6922210472413513 0.10501836065078711 0.339726296905146 0.9719078943203929 0.10158479174804286 0.12612550344608733 0.39725951509577284 0.16163096217135703 0381 -python ../Main_earth_system.py $SLURM_NTASKS 1.527242613442295 4.941755001883599 5.396947154578005 3.722453173852119 0.10488949922999902 0.6583462250744964 0.8984693793071016 0.14738472621112722 0.12174381173202406 0.39956839704183755 0.3539354800479455 0382 -python ../Main_earth_system.py $SLURM_NTASKS 1.9528116713878243 5.854894094206079 1.3239972445250998 3.5254718554753675 0.19719681726044513 0.39180667163207483 0.3967942115202687 0.2308716772211218 0.11453879536152489 0.9787871684710127 0.3114369736692831 0383 -python ../Main_earth_system.py $SLURM_NTASKS 3.1194576976759416 5.92423741485886 5.41232795027737 4.086531264081811 0.1788331806578745 0.9553615422473556 0.4011991320605074 0.2898728458149892 0.12807807139104313 0.4628679665818022 0.3660816712163394 0384 -python ../Main_earth_system.py $SLURM_NTASKS 3.0397637247328433 3.831650703666157 4.113246743374361 3.8875728980997692 0.15474484712485595 0.49557603235102454 0.2989461828332624 0.29047031369273296 0.1021904909776724 0.10496457129108205 0.26086176738407485 0385 -python ../Main_earth_system.py $SLURM_NTASKS 1.957715646792369 3.7926744926745064 1.932319029366972 3.7714863838830484 0.16377061759179412 0.3861678955872305 0.7069935026014857 0.2843229139144773 0.13894135717193568 0.10166613287497567 0.3034077132734381 0386 -python ../Main_earth_system.py $SLURM_NTASKS 2.980728340703539 4.05885432189841 4.559366751187993 4.018014666799475 0.1749272632229349 0.8599385370205557 0.1432155484499713 0.23022637246020242 0.11096502808905942 0.5836007222313484 0.35116319920144123 0387 -python ../Main_earth_system.py $SLURM_NTASKS 2.1764733046480877 4.358325238256562 3.3154466291636 3.978800598046477 0.13602653189478592 0.25039463730922906 0.6299317081259228 0.2773527415787812 0.14925346571876164 0.5733011699265579 0.16416560145210787 0388 -python ../Main_earth_system.py $SLURM_NTASKS 3.184367447904436 5.215103571642668 0.9234614176029718 3.8182877840435117 0.1956719312122566 0.18585182358223162 0.7389292495537577 0.2043390036407597 0.10437807860548773 0.36005177492010976 0.1083586252271957 0389 -python ../Main_earth_system.py $SLURM_NTASKS 2.0073338829726106 5.562570199415964 1.2271642732504504 4.401906130464948 0.14985539355776456 0.3197746289670713 0.43099399744984923 0.28917898976793 0.10998201532750806 0.869752105077915 0.1725919476034233 0390 -python ../Main_earth_system.py $SLURM_NTASKS 2.8836934254294944 4.082238453201289 2.6055215245312215 4.446819049617764 0.18456741719699396 0.2958425849101213 0.9403776040487842 0.19133375964940688 0.1111099763786476 0.35131806938912646 0.2364539253565916 0391 -python ../Main_earth_system.py $SLURM_NTASKS 1.1026901858945797 5.321785737076889 4.45540605128964 4.0089063933810145 0.10946158744283584 0.38300015702212853 0.6081141906262619 0.11890016836439371 0.13615870768816182 0.8485377549847763 0.3808890867474276 0392 -python ../Main_earth_system.py $SLURM_NTASKS 1.2903179627369428 4.118937690956851 4.0069256797034605 3.6412059600831954 0.11097744566819048 0.5484050645261975 0.5292948734292938 0.2565494126246581 0.12337718392359946 0.9807247373737735 0.27354504174697797 0393 -python ../Main_earth_system.py $SLURM_NTASKS 2.2165353121500955 4.818944090080392 1.709944430354413 4.472855469756814 0.13175503081314208 0.4313303313669532 0.5087714315311219 0.12445907236719955 0.10244224290498727 0.16742154826588812 0.36256259850062067 0394 -python ../Main_earth_system.py $SLURM_NTASKS 2.733612178082497 5.048625023328054 1.28924028350595 4.376102389483634 0.11042462622876016 0.5481316598316239 0.7491939142269248 0.15566344578361446 0.11168592381246095 0.8639688821603768 0.1983849205762792 0395 -python ../Main_earth_system.py $SLURM_NTASKS 1.7419603282371339 5.193256837940211 2.176027866540432 3.9999369991000195 0.16737460282685185 0.9168128546892247 0.6872920151272596 0.2577815300484853 0.12619864972602482 0.5795953769735503 0.3330691411117506 0396 -python ../Main_earth_system.py $SLURM_NTASKS 0.98040273710203 3.769701418993029 1.5579247803692937 3.77308615527739 0.17940951282384648 0.6546441734550467 0.8699627111368969 0.22042569170883702 0.13133129251150993 0.6847562932730076 0.10608298081569334 0397 -python ../Main_earth_system.py $SLURM_NTASKS 1.8260501468776473 4.327899998397299 2.7468519081537064 4.197036155028461 0.10224641434636368 0.1596119353605011 0.134333409342684 0.24359978408526325 0.14193874205178555 0.4906107650610636 0.28417180514882123 0398 -python ../Main_earth_system.py $SLURM_NTASKS 0.9737237894566515 3.5828355818122635 4.416056533216624 4.256672244385623 0.17564227978265295 0.3210484632939591 0.5874670029050547 0.2406350062759671 0.10348059755152658 0.7782834267361157 0.1602227368371955 0399 -python ../Main_earth_system.py $SLURM_NTASKS 2.855735454727016 4.52725560626423 2.510782376374155 3.994090995962065 0.13467177885690923 0.9987507663064942 0.5490763135334823 0.26789023098889775 0.11935182925675186 0.24068295385402125 0.19469559235902695 0400 -python ../Main_earth_system.py $SLURM_NTASKS 2.208633234383194 4.286214101597979 2.833979732999059 3.714896128855467 0.16178962467739455 0.9082623954320737 0.4435331002032781 0.26004793094232215 0.1319171920678591 0.7658199935259301 0.22169180154726748 0401 -python ../Main_earth_system.py $SLURM_NTASKS 2.3687502438806067 5.033165718770938 1.5731366174387404 3.6240606006632308 0.17144286244275225 0.28416408422252204 0.9603384506453004 0.11838499059143386 0.14245993507535948 0.26914133621184355 0.2719170324966531 0402 -python ../Main_earth_system.py $SLURM_NTASKS 1.9354828505098123 3.5101887236103404 3.7705272754192904 4.0813073302006115 0.1526675563460981 0.7226024052653969 0.33139791232090066 0.28174634748841143 0.1444410627625064 0.3103103107683365 0.3543949800744617 0403 -python ../Main_earth_system.py $SLURM_NTASKS 1.3126455206798546 4.992197162589717 5.267855982465057 3.8129066432195966 0.1553311549662079 0.8753790435241856 0.6585301700058529 0.10844695405473294 0.14129282720431938 0.5521145839534164 0.30213745181383106 0404 -python ../Main_earth_system.py $SLURM_NTASKS 2.2951568926051387 5.21866885423195 4.168167277857982 4.066385373745179 0.13754002775331398 0.5231931361430132 0.4424361729950298 0.1566707384481081 0.10753029451818502 0.8015693379497615 0.15152560671572068 0405 -python ../Main_earth_system.py $SLURM_NTASKS 2.1272242226822238 5.178428090401789 4.32777541104986 4.1966929823010215 0.16611187797035581 0.6847734934973939 0.6766284040518152 0.21772412240714809 0.142809301841401 0.5433668598904804 0.2450812425630776 0406 -python ../Main_earth_system.py $SLURM_NTASKS 1.6753553411452156 3.6005335021190525 2.1245676635543194 3.8137728185230797 0.1362248241277331 0.6968657702248107 0.3390350776511401 0.21652223791607517 0.13250501387889094 0.9781615236680841 0.3840964332981295 0407 -python ../Main_earth_system.py $SLURM_NTASKS 2.280005323295174 5.297662617018712 2.3933522203158075 3.7114558835245255 0.13387616064854393 0.9473017080257621 0.22161865423557486 0.26488169890181823 0.12952699405590054 0.10608159577001974 0.392960987145339 0408 -python ../Main_earth_system.py $SLURM_NTASKS 0.8328704100212554 3.8144960174160287 4.192022855470622 3.9261219726876067 0.12653276374461916 0.554941962611966 0.5463255956937361 0.2985044981613577 0.14638389169420116 0.7343017553901573 0.39703562405439297 0409 -python ../Main_earth_system.py $SLURM_NTASKS 1.6245236077197491 4.543158226161391 1.644781919757555 4.351999026783034 0.15040924979034917 0.5472776434239162 0.32172688367969415 0.11555458216288442 0.12292813076351859 0.30686114255976127 0.3675866944634164 0410 -python ../Main_earth_system.py $SLURM_NTASKS 1.1508172273780677 4.384630736662956 2.2670189906511204 3.8201361271763226 0.15313527487521736 0.7859969418351367 0.2591565810523264 0.1215242871374166 0.12732234149537358 0.6833688700829722 0.3127236180109325 0411 -python ../Main_earth_system.py $SLURM_NTASKS 0.9709637487363435 5.93597619216929 4.854899026463807 4.000862106067231 0.11437311793926161 0.5790891779379785 0.8610075870875895 0.29192265854755906 0.13149870088576956 0.7614090941117639 0.3987077838066646 0412 -python ../Main_earth_system.py $SLURM_NTASKS 1.0316137596643167 4.733845651386294 2.647330132996447 3.503444518932877 0.18534127071835527 0.7316739941692236 0.9133731874050913 0.1696749235514961 0.14510964429846468 0.8266568313116944 0.10155805385712319 0413 -python ../Main_earth_system.py $SLURM_NTASKS 1.5473054889476319 3.970034907340433 1.9993554339044772 4.405545243583417 0.18461476827619086 0.28522125181869407 0.7435884976829726 0.16722995450326786 0.10606821478625846 0.32292734134697254 0.3563601582737451 0414 -python ../Main_earth_system.py $SLURM_NTASKS 2.5968194523482384 5.594505764265185 3.5751435976691415 4.450198363119555 0.1128464456163183 0.8041845674589235 0.25074424411197865 0.23587005448216172 0.12208487960135353 0.6194424886744003 0.16894605520438233 0415 -python ../Main_earth_system.py $SLURM_NTASKS 1.3479473316152397 5.7040794495793 0.8929866527902115 3.6426122206985068 0.17524113580077355 0.2964614703772396 0.8715205651657211 0.20737644840482225 0.12360574160052827 0.3751292362588309 0.10183294441575273 0416 -python ../Main_earth_system.py $SLURM_NTASKS 1.5707557245263024 3.5766032344901104 1.3441744745252278 3.980777428994703 0.10954831951270577 0.8830552625042284 0.11187536681646286 0.18559595437606524 0.11260686200732847 0.6491790982400096 0.20443550005071842 0417 -python ../Main_earth_system.py $SLURM_NTASKS 0.8700743807417333 4.806553089773587 4.214996207377751 4.048556691073979 0.13157422639752014 0.5122045085259007 0.33311564420172174 0.2687009208459713 0.1339817455660098 0.1949990519375434 0.39969905981490494 0418 -python ../Main_earth_system.py $SLURM_NTASKS 1.8841573539379088 5.97081577189714 3.8090287750010843 4.022362404198541 0.16306564044598926 0.6774787619004062 0.6053162699207757 0.1254329380840068 0.11323359370710079 0.9519126659610464 0.3788536816219221 0419 -python ../Main_earth_system.py $SLURM_NTASKS 1.5228823298487386 4.395850529178821 3.247943933684752 3.8568093682402784 0.13985214406768753 0.16821377151127592 0.988319003030913 0.19570119712513778 0.10853050876467603 0.4717613125986272 0.24322969323740806 0420 -python ../Main_earth_system.py $SLURM_NTASKS 0.8556682878213537 5.820698888907765 2.5239020790809534 3.8285278764193045 0.18392884176999205 0.6891972855353303 0.3059500445516806 0.20367526700937216 0.10936943676588678 0.13107428369843552 0.3256454754661505 0421 -python ../Main_earth_system.py $SLURM_NTASKS 1.4337655844184125 4.043963988962172 3.180332094818583 3.7547242054980288 0.14080235586282763 0.8511807328423293 0.8271182590518233 0.2737333044346735 0.14214845511480323 0.16528931691797355 0.20072048657960612 0422 -python ../Main_earth_system.py $SLURM_NTASKS 1.1319328266531827 4.057283231814014 1.2590416802185642 3.9869132230238375 0.1740795699480806 0.7846984319590389 0.9014057906694168 0.18760357726278798 0.12475296898096025 0.9800511135332656 0.2830842693133331 0423 -python ../Main_earth_system.py $SLURM_NTASKS 1.8132264946635195 4.2397536623036745 1.9542179834899231 4.052353887946582 0.10103528993481951 0.13412795345351622 0.1704238314322296 0.1436638451100258 0.10716373633342748 0.4457200745748262 0.14129383070487184 0424 -python ../Main_earth_system.py $SLURM_NTASKS 0.990980625611105 4.2681404519110595 2.2567347169498015 4.418183450648321 0.16670807736442694 0.6597866093864422 0.404969937592343 0.15911296776149664 0.14748878106710175 0.9694348400839327 0.13899623729046096 0425 -python ../Main_earth_system.py $SLURM_NTASKS 2.31995485668467 5.114010290329237 2.52523420699063 4.462246456368123 0.13523498949522747 0.26423774185038607 0.3549079707591103 0.2740863392530035 0.13123966823167543 0.9578440737054127 0.3734659996914559 0426 -python ../Main_earth_system.py $SLURM_NTASKS 2.2101452721554287 4.333643341710992 1.472941974297345 4.245085981488181 0.15497061305748366 0.9058232144316378 0.12206124759066567 0.16718362912921048 0.13330059406927536 0.5440051982336276 0.31751810558659865 0427 -python ../Main_earth_system.py $SLURM_NTASKS 2.9917727679885386 4.569324968347257 1.4494182069643964 3.797429789105028 0.14425055335167553 0.4491873595408439 0.7312200753492387 0.26529301519833987 0.11776173087835688 0.5626192531274097 0.13326014485701596 0428 -python ../Main_earth_system.py $SLURM_NTASKS 2.925950757494612 3.7510149300912006 4.303594021048241 4.2183708062115155 0.16490724579260593 0.243787445416542 0.272893640837626 0.29392434309932125 0.11853941879750607 0.45147180281545374 0.20170240202120743 0429 -python ../Main_earth_system.py $SLURM_NTASKS 2.6636385280309325 5.239216532783471 5.491482257515169 4.106964298001964 0.18567019384035027 0.336561089113227 0.4638148016311753 0.26274030674552906 0.1349837317428212 0.19749610004823825 0.11750143532324749 0430 -python ../Main_earth_system.py $SLURM_NTASKS 3.0454904522170434 5.900825517368081 1.646448001667157 4.291441877268951 0.1013516892736122 0.3840273122941159 0.6433148959030471 0.28757798979408145 0.14781329099368523 0.5853909392312525 0.35746908644369635 0431 -python ../Main_earth_system.py $SLURM_NTASKS 1.8821187889172182 5.555565906252587 4.499156677621087 3.6349532322476064 0.18025410725346927 0.2876910265510628 0.8179860309237216 0.15327748736285435 0.12857032345101488 0.9089469494185858 0.34179099303680016 0432 -python ../Main_earth_system.py $SLURM_NTASKS 0.9334722214141111 3.977698304503442 2.138013742781979 4.339036865213487 0.15625831668748322 0.867574957797791 0.7673135024784329 0.21545759683241505 0.11971679364105652 0.6556873910278389 0.3561580704956059 0433 -python ../Main_earth_system.py $SLURM_NTASKS 2.7944393601638295 3.8812689730563514 4.381809781209378 3.680850882679442 0.18956028835354616 0.13691845503277814 0.18127296562814305 0.2046382291933953 0.11948274916989003 0.12483293246665476 0.344071588840185 0434 -python ../Main_earth_system.py $SLURM_NTASKS 3.1141687169238796 3.6562682879611286 5.313808403298006 3.9927971767467003 0.11340981442730835 0.7926941309086413 0.8963401407103302 0.10315873602986281 0.1449004373093245 0.6325999959198724 0.3286568875476039 0435 -python ../Main_earth_system.py $SLURM_NTASKS 2.173615120135895 5.149067825613615 2.7168872901850882 4.459122847042409 0.15901265270107093 0.7103145054005716 0.8083509616574668 0.18411313282881792 0.11030239151091764 0.2385009807443754 0.29556649871866353 0436 -python ../Main_earth_system.py $SLURM_NTASKS 1.495818681192222 4.729885163655148 5.403193242242188 4.357829387746992 0.16930283154128278 0.4823553605597338 0.5552171094771599 0.1313576105032166 0.12329660040851434 0.8619698522097315 0.3702970892360935 0437 -python ../Main_earth_system.py $SLURM_NTASKS 1.02622987498393 4.719676443367319 3.274049463648649 3.5335090868146133 0.1469700443258297 0.9004789666335692 0.974173138307645 0.23694861829553832 0.13972893760768382 0.20233014468903487 0.3892657481879933 0438 -python ../Main_earth_system.py $SLURM_NTASKS 1.3051330839157609 4.953161010265774 4.952298148260947 4.445647432866773 0.18175838737602823 0.8302229893991006 0.41087647449321607 0.13045977508857837 0.12144325292385416 0.5297879229540484 0.1196332297562891 0439 -python ../Main_earth_system.py $SLURM_NTASKS 0.8822689008624489 4.377725279337483 1.2413716722967294 4.183722670613167 0.18231336070969914 0.7681028300702876 0.9186688123925351 0.13258000576994783 0.13364469753765768 0.25440812928148937 0.34359763380309694 0440 -python ../Main_earth_system.py $SLURM_NTASKS 1.9759467937410014 3.9270144682230184 2.3247414993811955 4.313549943496842 0.1983031828604223 0.28312926945635664 0.39910705760172127 0.2605017842755665 0.12368228137113091 0.16075087005451372 0.2824003022162574 0441 -python ../Main_earth_system.py $SLURM_NTASKS 2.8829356610386876 3.8644429365964132 2.6219888165100738 3.502568970930485 0.1793398854098623 0.9235232375993652 0.16286886697579653 0.11708749467935449 0.1475832885063485 0.16392382833781952 0.23763200009547614 0442 -python ../Main_earth_system.py $SLURM_NTASKS 1.2009063608212367 3.9514750078952767 4.586549809050319 3.6387647709636983 0.18326674565613657 0.9348312120700225 0.3730847650748633 0.29773622602479055 0.11840992884012305 0.36121627628684383 0.24434071384880243 0443 -python ../Main_earth_system.py $SLURM_NTASKS 2.3885682016191976 4.003209088668356 3.2376514902972184 4.223187059260159 0.10231071866144353 0.7488450666170637 0.8370659458643099 0.24410565722665972 0.13593685975897773 0.7851403298927643 0.3514334431900913 0444 -python ../Main_earth_system.py $SLURM_NTASKS 2.4196696184535558 4.998593464330297 4.365299298121241 3.5108068084406914 0.19993099864818073 0.6088099405922874 0.386792021039012 0.27927472575940643 0.13058387255275664 0.7390934066692335 0.3264689086409435 0445 -python ../Main_earth_system.py $SLURM_NTASKS 1.1817192277667976 4.306966017510607 4.4487424032223375 3.7785398641813313 0.1589182979290587 0.6905346309209424 0.7530546922654039 0.1943810379650186 0.10942868229989033 0.8984830080523971 0.18786822981943813 0446 -python ../Main_earth_system.py $SLURM_NTASKS 2.416149314655185 5.0729267938921065 2.7364580612575393 3.5756516843332964 0.133623000854522 0.8894606749646702 0.7042342609273216 0.293120622701054 0.14149509865697968 0.8397263566395754 0.36192626939975625 0447 -python ../Main_earth_system.py $SLURM_NTASKS 2.5170665967617447 5.507051201539483 3.633222062546989 3.905255341713276 0.18510788779932408 0.5372762966494294 0.606965656760712 0.22313852647074345 0.13691787952000314 0.21087114576081606 0.11492484426009346 0448 -python ../Main_earth_system.py $SLURM_NTASKS 3.0794258067475013 5.365138872509563 2.0209706580966595 3.944587673209443 0.15427964178876427 0.33540577277206546 0.3209074862670529 0.14712745174520153 0.12149596080057229 0.5318700707793821 0.11189752446237981 0449 -python ../Main_earth_system.py $SLURM_NTASKS 2.8203457106500958 3.9959569640984034 5.338993438174577 4.122587921773639 0.14009762843629103 0.9450546427223818 0.7026792652368251 0.2670435871437844 0.1276477939119324 0.37616174318569395 0.3666854000285579 0450 -python ../Main_earth_system.py $SLURM_NTASKS 1.8644345432176122 4.92095699060706 2.863503190442275 3.5587759967158292 0.16474848894322597 0.48497354146779914 0.1990260492429272 0.21350233281703299 0.13256539710349186 0.7116411410338589 0.2587258119899488 0451 -python ../Main_earth_system.py $SLURM_NTASKS 1.6258987523067414 4.418300508974588 2.8950115916173624 3.505309137490275 0.14105250270940914 0.7022994725439529 0.5529084822556801 0.16947219698891394 0.13451095026069956 0.4367785201275385 0.12048087733510872 0452 -python ../Main_earth_system.py $SLURM_NTASKS 2.0373058217121756 4.82914329147765 2.964807741278231 3.5600025162262705 0.12186606914630821 0.7044407623913845 0.3774068232023018 0.15534534465874733 0.11747398743198792 0.7008481009269449 0.12377782441160895 0453 -python ../Main_earth_system.py $SLURM_NTASKS 1.1924155728325436 4.86667746428579 1.9468813653140646 3.973660587673259 0.1394566037753011 0.2409162234071669 0.7038108812190534 0.19892897547197913 0.113099978550349 0.7684501844676054 0.2942529592206603 0454 -python ../Main_earth_system.py $SLURM_NTASKS 1.8308394780887647 4.796417090695833 2.987865359516067 4.255998580048647 0.1429692786648794 0.3665374823210048 0.7164488906210627 0.1156164119329287 0.14306645975745946 0.2796085959860759 0.31613543838253333 0455 -python ../Main_earth_system.py $SLURM_NTASKS 2.2624779808976094 5.044010364985037 4.961716174839232 4.187366339277603 0.13324133124180587 0.42290576568882265 0.8200576869989232 0.14641796417630004 0.10586908629759051 0.5501970341311413 0.153775237744704 0456 -python ../Main_earth_system.py $SLURM_NTASKS 0.9466342671034252 4.025411244687135 4.13594588585626 3.910901135139113 0.17131435293140898 0.1653552563299198 0.7928591355129346 0.20862489764717948 0.13620109860053625 0.586954477608608 0.30849620480430634 0457 -python ../Main_earth_system.py $SLURM_NTASKS 1.5787771560562152 5.20909791532081 1.3737711061192763 3.9549588427816773 0.17819328475055987 0.28101387316440474 0.31471259114067346 0.11510215283556058 0.1285471889389383 0.41324626013719623 0.19674549528329877 0458 -python ../Main_earth_system.py $SLURM_NTASKS 1.1286068869740635 5.488276722224919 3.4323779425067356 4.040825710860885 0.16565219942152293 0.4083731862150709 0.4793314398436974 0.114313913325634 0.11620414404893736 0.18107889467639016 0.2808126326066223 0459 -python ../Main_earth_system.py $SLURM_NTASKS 3.1006376643883913 4.304083106185623 5.066416788697518 3.661144644769015 0.13539638987135227 0.19619373081480884 0.19539756075691492 0.21007197162464014 0.11684192640915525 0.9359947498828166 0.14093108450168154 0460 -python ../Main_earth_system.py $SLURM_NTASKS 1.5489266836712292 3.783013952265135 3.1434203071839146 4.114031509432078 0.13849415668544088 0.9669899940887762 0.14276656825894324 0.108195892537737 0.11465715992523706 0.8072379142128586 0.35823592437558915 0461 -python ../Main_earth_system.py $SLURM_NTASKS 0.961137569382383 3.714308124946584 4.529775504081724 3.6433765898887485 0.19470709100706682 0.1812792839569111 0.5943667176768869 0.21709330888487555 0.10885898836205508 0.7137198196535461 0.197376388491375 0462 -python ../Main_earth_system.py $SLURM_NTASKS 2.1170521251764063 4.402302479409314 4.790427863917645 4.238371427172802 0.13166616213025134 0.8003921241133832 0.7009643873617134 0.13765053021420645 0.11406449131163626 0.5770860373305698 0.17884803822894024 0463 -python ../Main_earth_system.py $SLURM_NTASKS 1.0122969337005019 3.8653467652270903 2.6763056702006116 3.6167950418302808 0.12194183859911253 0.10684695363323087 0.5311671499026074 0.1296844550004324 0.10548249256600804 0.2071864332091959 0.2262799236901816 0464 -python ../Main_earth_system.py $SLURM_NTASKS 1.4881241110865737 4.765744003573444 1.6564346753535903 3.7947253964175136 0.16988638162391778 0.4796375724592934 0.7514569027255943 0.21903200156433805 0.14923992278017825 0.1862595176415832 0.3578148769153813 0465 -python ../Main_earth_system.py $SLURM_NTASKS 3.1733932304382364 3.6396499075375495 5.138490588218513 3.5373706133608254 0.10543320928002958 0.5881418786793364 0.2113481450454579 0.2864546587706164 0.144987243440359 0.7958972456164435 0.3032258118492202 0466 -python ../Main_earth_system.py $SLURM_NTASKS 0.8386531120152267 5.742529515287209 4.607045381590287 3.627532831863065 0.19928682448044172 0.9257389212783474 0.20229488287560307 0.24041034424847593 0.12241064679196953 0.2842997862049971 0.20014969996979237 0467 -python ../Main_earth_system.py $SLURM_NTASKS 2.522016210487588 5.536329773533975 2.294821634604288 3.5705859762303067 0.1862916277688176 0.14169145234702446 0.7614367252180606 0.25034659224489697 0.10595932266364136 0.33056860638259244 0.3369416864451942 0468 -python ../Main_earth_system.py $SLURM_NTASKS 1.661183674057248 5.072203752062997 5.273850333547252 4.283665097245122 0.12024170384671373 0.4357614432934559 0.930777378395668 0.11297144180508648 0.13434182895078217 0.3054843542727894 0.32971461590403656 0469 -python ../Main_earth_system.py $SLURM_NTASKS 2.7755313160284256 5.483433459182063 3.1213117155019274 3.739789457555796 0.1287448386459683 0.8409242667716351 0.771128191959323 0.2916393469622959 0.11162809887280235 0.6732724594168168 0.2483402560711627 0470 -python ../Main_earth_system.py $SLURM_NTASKS 1.0050202737259868 4.903574378064181 5.368776425237266 4.436422072950984 0.19680434172784514 0.4701784966308834 0.2606333490162548 0.23789024820815594 0.14207243221393523 0.5615377393285207 0.21373198751518224 0471 -python ../Main_earth_system.py $SLURM_NTASKS 2.694787645686655 5.550895601468543 2.73584231660433 4.034003691073064 0.14454420671649268 0.5071665015227386 0.6493519863457761 0.1961295997657081 0.1167133308122505 0.5867584171376113 0.19311594486515277 0472 -python ../Main_earth_system.py $SLURM_NTASKS 2.163360495427267 5.771525099407545 1.4014055030545658 4.490842821778248 0.12755760318416492 0.6758232282162472 0.281733895745205 0.216115008482159 0.1341158134478042 0.4990534212824468 0.22031509508515368 0473 -python ../Main_earth_system.py $SLURM_NTASKS 1.1538432703436694 5.477697261463039 4.073347163255299 3.885020060981762 0.10498339719370485 0.8367364257219154 0.9436304412106705 0.16620749929055967 0.10493842094835892 0.6980926250956349 0.24044319404044337 0474 -python ../Main_earth_system.py $SLURM_NTASKS 2.6663364910396 4.462427353028255 0.8884964334325002 4.364234879270855 0.10803232701775722 0.6207681249526468 0.33716499018753177 0.15235110574811836 0.11490107762341234 0.3405372191764266 0.2786801987046508 0475 -python ../Main_earth_system.py $SLURM_NTASKS 1.3703466883291235 5.653220482950353 4.040382047794987 3.8843173641467152 0.14753909580804092 0.14939022649368158 0.22973727671310704 0.28795503813492396 0.12317966854338366 0.16235487766106588 0.2815221851254243 0476 -python ../Main_earth_system.py $SLURM_NTASKS 2.6980254881261834 5.747681328165669 2.3181317897450464 3.901575972096474 0.17500077836309907 0.8521171862142111 0.9487541522356192 0.14504400939750972 0.11548018851102337 0.25544625505133617 0.35576050979397034 0477 -python ../Main_earth_system.py $SLURM_NTASKS 3.0653279448653956 3.945861176404867 1.6956747175368347 4.220870344963526 0.1543269956943551 0.4763883156106071 0.8940187398372429 0.26728504093643457 0.10651958164564537 0.343521096548494 0.3837062655607739 0478 -python ../Main_earth_system.py $SLURM_NTASKS 2.104560831250032 5.72979291295742 4.473013029376586 3.5576721408282816 0.1909882289582716 0.6374755015729308 0.5417770151703902 0.22335586343239355 0.10270026769079094 0.8663665175369466 0.363077058310605 0479 -python ../Main_earth_system.py $SLURM_NTASKS 3.059156532965277 5.635528509641781 4.896072921036081 3.6296688515430553 0.1615471075589891 0.20816442081405986 0.809273935610877 0.2771526121765461 0.13344587096825594 0.3277762657312734 0.3913932519784833 0480 -python ../Main_earth_system.py $SLURM_NTASKS 1.6020633780606741 5.182517385279779 5.366796449319216 3.9893956527307433 0.1447560979989725 0.8722989103063231 0.5679872592631028 0.2849137686939419 0.12941130825869435 0.8416639261631405 0.13175384502367923 0481 -python ../Main_earth_system.py $SLURM_NTASKS 2.7159257871346436 4.153837392300605 4.429259084626747 4.451618640285104 0.1106340288150224 0.9463678868211631 0.467219945938793 0.22226258992886821 0.14374950788329935 0.9173843563590208 0.3965827078723855 0482 -python ../Main_earth_system.py $SLURM_NTASKS 2.114999914350416 4.978454818585466 4.486528893323447 3.7909163716527607 0.17595521699523078 0.8990654282021016 0.5185365010502949 0.10612967883920732 0.1090570613289895 0.44534093152348 0.2367994806755729 0483 -python ../Main_earth_system.py $SLURM_NTASKS 2.085726768739848 5.6513928042543515 1.0800787040861577 3.876931923255325 0.1902180960372332 0.744692654570767 0.6167569917121363 0.26182366120843026 0.14050581693453618 0.4105873170303057 0.1976686670521574 0484 -python ../Main_earth_system.py $SLURM_NTASKS 2.8001532569125995 5.205130358800177 2.211146654429484 4.090902011721623 0.14507469752185564 0.6799134811542324 0.2926024868274997 0.23839560344628666 0.14013601844491427 0.34597029002510715 0.296175294493768 0485 -python ../Main_earth_system.py $SLURM_NTASKS 1.730037452914146 4.889095755424249 2.3683906158791754 3.743110734717909 0.19781840848877236 0.7297577675759901 0.42785884618797887 0.20266430839883018 0.12439270465287616 0.32617312287584244 0.11802226108332521 0486 -python ../Main_earth_system.py $SLURM_NTASKS 1.319907342208566 4.85089482432447 5.276811714543251 4.227121786495497 0.14958911519561227 0.5417350005213815 0.9992722625105698 0.2512462335665637 0.13702146700433887 0.8119227301907357 0.3569902297705918 0487 -python ../Main_earth_system.py $SLURM_NTASKS 1.5855036948975987 4.701373367021497 1.1791291714557044 4.488201831947663 0.1309457865258148 0.3498535866778355 0.5239228544529507 0.1605619898586278 0.13504820310559396 0.6820089183394771 0.14624187795308347 0488 -python ../Main_earth_system.py $SLURM_NTASKS 1.101891773044019 4.464827273627561 2.681164036568668 4.080733314689173 0.1485852060041141 0.8879035657087717 0.2852967271739699 0.24010409021306625 0.12840625093066613 0.49438826703789673 0.3170778775696097 0489 -python ../Main_earth_system.py $SLURM_NTASKS 2.476461191211221 4.7637836353978 2.330562750540234 3.883836516973589 0.11606565145993976 0.32722676979658927 0.16925546989833742 0.15702913398414603 0.11346091538484418 0.3947511210199419 0.20300889167637132 0490 -python ../Main_earth_system.py $SLURM_NTASKS 1.9552333873389598 3.547294014521443 3.9006338401982648 4.235944235012529 0.17751951552863665 0.6741393212492949 0.9630545706406229 0.21301553554454222 0.12183555802237761 0.609949378609769 0.16441136729693734 0491 -python ../Main_earth_system.py $SLURM_NTASKS 3.068211712032726 4.946674507569021 3.875945823389892 4.126963814730438 0.18203757196687773 0.8392567046712109 0.6509725236143035 0.2832084765154542 0.12933672958648357 0.2938358812171534 0.2818625257192565 0492 -python ../Main_earth_system.py $SLURM_NTASKS 1.2630950595355062 4.404059310519331 2.4146092456768615 4.177619432558432 0.14362669991408766 0.45650530562520497 0.297111370281845 0.25425668430927817 0.11756438150656665 0.9743735085983513 0.1951575405875055 0493 -python ../Main_earth_system.py $SLURM_NTASKS 2.4210564411486857 4.323820525330002 4.280347041213545 4.340864465158005 0.152427704731347 0.9179564428369401 0.1612794623957166 0.26230186088797985 0.10220379734656114 0.3867577568492043 0.14258899671981132 0494 -python ../Main_earth_system.py $SLURM_NTASKS 2.874086848418428 5.192249379000676 3.2586158637096014 3.564227005962076 0.18763732061386584 0.17812641663632844 0.6486560846879043 0.2016438118664364 0.10196940784141705 0.24176048636121816 0.22656138486704028 0495 -python ../Main_earth_system.py $SLURM_NTASKS 3.0735378321444333 4.2510042950627955 4.749748301558829 4.224581135058523 0.1933310796777729 0.5116644862887433 0.9252234685657016 0.27618370496209954 0.10796312111075773 0.8314359486964504 0.19586223536432815 0496 -python ../Main_earth_system.py $SLURM_NTASKS 1.1761956879972972 4.914996362723838 4.493647402670901 3.5492443421725577 0.12995871242215107 0.2600144062458589 0.6815514022683152 0.2835394032402888 0.14582711737033605 0.34734950108140406 0.3261299089759826 0497 -python ../Main_earth_system.py $SLURM_NTASKS 0.8095595633642311 5.3829855369333215 4.268636787493846 3.9159698181494007 0.17856560362465082 0.6041793593473624 0.12676283306772207 0.18014168931621038 0.13506207245119262 0.14416344255898872 0.20585776348312182 0498 -python ../Main_earth_system.py $SLURM_NTASKS 3.0252376098844085 4.9348619696961435 5.210496859528292 4.335379274018087 0.15938212685198475 0.8869513449143023 0.45525920038360523 0.1792947656204682 0.12047805109941677 0.4674270530073841 0.2053526974106169 0499 -python ../Main_earth_system.py $SLURM_NTASKS 2.094967442728583 4.769955502922426 1.0533829630250566 4.0729054595363845 0.12864210647689306 0.7738462967579914 0.9176810124529956 0.1226890990053214 0.1493583120737091 0.15884731924507894 0.18978073404814205 0500 -python ../Main_earth_system.py $SLURM_NTASKS 1.3266061238492424 4.559380698573763 2.7516711532348657 4.309875998250278 0.14376844316546789 0.8359367372836921 0.7238988187966044 0.11741060912166178 0.13214259660326755 0.9611588225129739 0.11639934323861365 0501 -python ../Main_earth_system.py $SLURM_NTASKS 1.9433103887120957 3.844605064924455 5.162599561615923 3.7002653335314366 0.11800662595727085 0.7954247347353293 0.32970640149433106 0.22786428009005794 0.11676097974262656 0.5355893992898777 0.3029174843862946 0502 -python ../Main_earth_system.py $SLURM_NTASKS 1.02490195364646 5.48665590229926 2.889106701862704 4.236845867826357 0.11100754211295055 0.7004909913181065 0.21240803434015726 0.20608787985483373 0.1273713260379725 0.2436576443355312 0.12922886436663997 0503 -python ../Main_earth_system.py $SLURM_NTASKS 2.344834160327639 5.862171343286655 3.4049552582876155 3.697310550398634 0.16240111525634499 0.5029433941378776 0.43742939096293487 0.19786037094010983 0.1352584637897154 0.7372604573234649 0.3013941109854737 0504 -python ../Main_earth_system.py $SLURM_NTASKS 1.361778268349184 4.104282799381356 5.496358716561542 3.787039817575362 0.12453009003144905 0.8465387606957306 0.2569460214542477 0.2937200859782205 0.13786399876674066 0.9852522389820242 0.3687729650869004 0505 -python ../Main_earth_system.py $SLURM_NTASKS 2.792499067041747 5.8640855714294595 4.228186750420439 3.594083095046196 0.14920011028301444 0.20659240315616562 0.45958437992578394 0.15302114177869314 0.1006544968113858 0.5561900764868419 0.3584431105495528 0506 -python ../Main_earth_system.py $SLURM_NTASKS 0.9557856255536554 5.571802113858894 2.4302166093835673 3.7016945668908168 0.1812498720090781 0.31220011535327885 0.5343825385421797 0.13294019576601387 0.11091774774445913 0.6043546517145052 0.1949444375029215 0507 -python ../Main_earth_system.py $SLURM_NTASKS 2.360060123461759 3.528957415242748 1.5018924224071428 3.938825383377877 0.16890222052662898 0.14745651737223517 0.19732520283046145 0.1099056789735718 0.11050986429286619 0.45662677264529583 0.14582785068324178 0508 -python ../Main_earth_system.py $SLURM_NTASKS 1.9423916690340313 4.626715308034777 4.209272007490737 3.5205955050696813 0.18743755903655607 0.39777783669549316 0.1664595640223684 0.19812532491816898 0.1480651589362107 0.5811221223286307 0.26885165743069017 0509 -python ../Main_earth_system.py $SLURM_NTASKS 1.1845935532222094 4.096467269309988 3.6036089837563257 3.9273889363826915 0.1132930971844016 0.9964297342638694 0.1483166076315076 0.23733453885368944 0.14675488268337267 0.8708576682838838 0.24671239128880845 0510 -python ../Main_earth_system.py $SLURM_NTASKS 2.6722162305054544 3.9118219116097217 1.5069033175221618 3.6147538924270592 0.1305499079398382 0.7892161456207147 0.6921746875915122 0.13825303773763764 0.12109451544487256 0.14362033701837543 0.1322789229511122 0511 -python ../Main_earth_system.py $SLURM_NTASKS 1.844939665278748 4.495375053373666 4.330587189037516 3.534798546253542 0.18526318481634005 0.2395296788611357 0.9790527313563924 0.21230875710811936 0.1462213546320834 0.2639176372958613 0.104322359465394 0512 -python ../Main_earth_system.py $SLURM_NTASKS 0.8946535126018237 5.623964804864462 1.8113906714195227 3.617873234354028 0.155286151972646 0.9886218945851978 0.7950110275001374 0.2324066560261743 0.13737979474180181 0.3209552689331159 0.3194123777385433 0513 -python ../Main_earth_system.py $SLURM_NTASKS 1.4637442696380716 5.152551023614338 1.2444972143776587 3.596351590712393 0.1784934221659031 0.5274349346846622 0.4314598450649054 0.1039702953599582 0.13942641755246118 0.7014726688452494 0.3334347104966219 0514 -python ../Main_earth_system.py $SLURM_NTASKS 2.5708299025536476 4.59096210501556 1.106375741055938 4.2013941025533095 0.14078585440039876 0.8186558467715389 0.1655352704429731 0.12617028216235265 0.11846011553800606 0.7529552470405262 0.11001562017287234 0515 -python ../Main_earth_system.py $SLURM_NTASKS 2.584744976418601 4.7620651257587046 1.8828564298409103 3.9799248818195117 0.11993510115289505 0.2864993538095997 0.6852705619638053 0.257954543639504 0.12309504862357452 0.8858786525113478 0.39638952112175674 0516 -python ../Main_earth_system.py $SLURM_NTASKS 1.2125056072656797 5.945351791817516 1.3725786436081306 4.353373300140233 0.10784279660093929 0.9662865888962118 0.48155101288745583 0.15933297681145545 0.10522659487388586 0.29007063731842964 0.17284872988572136 0517 -python ../Main_earth_system.py $SLURM_NTASKS 1.8004137971082508 5.993779423724493 0.8583991279434167 4.206688234401356 0.14777562828642493 0.8130743116370582 0.2831562625184102 0.23854903752411427 0.11506162318195784 0.7773189535705112 0.1936345043841437 0518 -python ../Main_earth_system.py $SLURM_NTASKS 1.3684612015406996 5.467122016253612 2.231546509180808 3.8300589242630454 0.11035590832581423 0.19386049799954463 0.38822184363566004 0.2663590196599279 0.13327456506311713 0.843456848334565 0.3597685119319065 0519 -python ../Main_earth_system.py $SLURM_NTASKS 1.9307596398950695 5.117841427278078 3.2510224979022624 3.8797611528812577 0.11386829190180396 0.13901129863350808 0.1543948094964395 0.15988201415690279 0.11881814371904337 0.7243757787992386 0.31228212453786997 0520 -python ../Main_earth_system.py $SLURM_NTASKS 2.5721006198952594 5.137973025736278 0.8492363976728498 3.838950106816903 0.1674606483448528 0.4609750075471559 0.9924445724552494 0.26305102299046734 0.1447663957556363 0.7255304834347561 0.3361944827582573 0521 -python ../Main_earth_system.py $SLURM_NTASKS 2.3654682031740384 3.9337740271017965 4.541579900530306 3.903321797673493 0.161908739701361 0.3904596773332437 0.10942339695975674 0.12375687070732384 0.12249011770765503 0.6763548295411345 0.1885821836848356 0522 -python ../Main_earth_system.py $SLURM_NTASKS 2.031131560828243 3.5669627308601908 2.7776708191471773 3.524309936670153 0.1657105507644304 0.43106001071297995 0.5421070710041569 0.21803275903581962 0.13654864335400627 0.1004861918756909 0.24621998490211758 0523 -python ../Main_earth_system.py $SLURM_NTASKS 2.1696720302062182 4.451489075053556 4.652491286007216 3.8317736867221175 0.1489654341258621 0.37778059128124153 0.957231048116429 0.21369178378840387 0.11474643953396356 0.30138106870140646 0.11144617059111463 0524 -python ../Main_earth_system.py $SLURM_NTASKS 1.4610311219643983 4.030749850743461 4.358697626990587 3.769827714378722 0.10659267826665779 0.5922763537916448 0.8636568031296424 0.18919567657394915 0.12650195226563282 0.8758366926694212 0.3058839057755629 0525 -python ../Main_earth_system.py $SLURM_NTASKS 1.2508598415710286 3.7286339924562246 1.7975334864723538 3.7899407103455083 0.1668994431498791 0.30819785267110605 0.29151989225613145 0.23931507807200464 0.10612993326788339 0.9477278183436196 0.10284552398451217 0526 -python ../Main_earth_system.py $SLURM_NTASKS 1.3651570841647334 4.093948955890071 2.904281738279887 3.670540691202302 0.1826218758631043 0.17337567397639153 0.11478847083750363 0.13910264584971943 0.1371506467723911 0.5025304997337818 0.32786700197535945 0527 -python ../Main_earth_system.py $SLURM_NTASKS 3.1641862750451804 4.872272577535725 3.5212359100416366 4.0492642671226005 0.15831381258396868 0.9963570344339275 0.9115122325318302 0.12052348394768729 0.1441760785716247 0.8322082189782284 0.3077425925878202 0528 -python ../Main_earth_system.py $SLURM_NTASKS 0.8854059736713177 5.930725370061859 4.2907850154290275 3.68962970739192 0.1432446117381537 0.6631112140378149 0.18918469870890248 0.20588485942606777 0.11550451029594357 0.4379977958259236 0.2893217462663745 0529 -python ../Main_earth_system.py $SLURM_NTASKS 1.7043063124962974 4.4405179968610256 1.4896929001925425 3.8729696061702086 0.11314472473484473 0.5613217400722645 0.7450806246426102 0.2756795696505222 0.12467307476445756 0.6413102805907529 0.31042654952213256 0530 -python ../Main_earth_system.py $SLURM_NTASKS 1.2476783910916436 5.705897094674037 5.034543274996677 4.2772743207445805 0.10896596052355675 0.2520512460155097 0.13328697945535176 0.29815552371965104 0.14172222710497376 0.7110203536754703 0.18522045712295776 0531 -python ../Main_earth_system.py $SLURM_NTASKS 0.905270971345866 4.755363731289594 4.533212326474956 3.6453503271253243 0.12717941641690034 0.1347041847094336 0.35428166560813945 0.1739240458259627 0.1330553256745785 0.7366286224489871 0.31838726351159913 0532 -python ../Main_earth_system.py $SLURM_NTASKS 2.6714005681247555 4.038651489964293 2.0445025151504863 4.14614863232342 0.1594206786511467 0.44329923219086553 0.22865790950694362 0.10229686908802224 0.12692008297805063 0.7596385463638042 0.12012166175051606 0533 -python ../Main_earth_system.py $SLURM_NTASKS 1.9889765351357966 3.593427323389467 4.312151751097795 3.6744910953171104 0.1640446768421983 0.6037870190891026 0.6476950377302901 0.24551904820001952 0.11075900883940046 0.7576750726637228 0.2197309903648124 0534 -python ../Main_earth_system.py $SLURM_NTASKS 1.447383317458777 5.941594988599578 1.1114559693581973 3.930090266566213 0.1962610282127084 0.17677199558277473 0.8600143629486947 0.14969028360972794 0.10707089767945469 0.3049605516984313 0.26244927047604255 0535 -python ../Main_earth_system.py $SLURM_NTASKS 2.4843414881252492 3.77235722787903 3.4779863699491367 4.115317312208772 0.17971227078293545 0.20727088352017467 0.599253534357425 0.17526919645988545 0.1270946471301574 0.3151134725014161 0.14728985849961818 0536 -python ../Main_earth_system.py $SLURM_NTASKS 2.6291452783510945 5.1208489129834005 1.1676319880251198 4.234578603394698 0.17711919824919764 0.3139507007173213 0.5621981927938084 0.12432749073515481 0.1073890075112555 0.24804820850055875 0.29729704998071194 0537 -python ../Main_earth_system.py $SLURM_NTASKS 1.3033571049460906 5.614121877870874 5.170621219529913 3.5320839553018843 0.11846045695649395 0.23273990218949528 0.5880661200436561 0.2585096233708758 0.14007586061180533 0.9722972321512795 0.19437684820118073 0538 -python ../Main_earth_system.py $SLURM_NTASKS 1.7895619305086243 4.7732407055412756 2.7001682526524764 4.358104745857901 0.18164048252582726 0.9425702073922569 0.9204311364924301 0.27285968156293694 0.13571288095825793 0.41260260536598103 0.36487295915500795 0539 -python ../Main_earth_system.py $SLURM_NTASKS 1.1604201282387052 4.139725444319752 5.2466246513019215 3.996881538900787 0.11977282195221191 0.6150292524451644 0.2720321016245666 0.13421397420384434 0.13817632545510314 0.15968932947682815 0.17339596842527488 0540 -python ../Main_earth_system.py $SLURM_NTASKS 0.8138670996735856 3.6908848959033898 1.8949533040227178 3.7824490477439436 0.16318273865720329 0.7230953271669501 0.28248060109754386 0.19055956259574475 0.1292323841781797 0.8942896732456039 0.33742268217917243 0541 -python ../Main_earth_system.py $SLURM_NTASKS 2.781433744920867 5.984082627500785 4.23988233007018 4.0768064665776285 0.12849352760904661 0.36491046849952535 0.7594888997932816 0.28561002559526494 0.1278414407636519 0.3564182177320109 0.28764348179743315 0542 -python ../Main_earth_system.py $SLURM_NTASKS 2.423785669372819 3.6791511112742277 4.730975549872581 3.708973440339462 0.17101689573583143 0.2622376940042699 0.4786091765032435 0.24812454423152366 0.12926146295418853 0.7079754358897031 0.36446695484574354 0543 -python ../Main_earth_system.py $SLURM_NTASKS 2.4635339726080883 4.511361356732392 4.043910319028953 4.087895583386653 0.16415542352577045 0.8377424403790644 0.764737271351265 0.2253618745079641 0.10506541477310054 0.8130734965493001 0.14170568228205555 0544 -python ../Main_earth_system.py $SLURM_NTASKS 2.405576086676061 4.711947610810084 1.561544929756506 3.6475727822732855 0.1550242827224919 0.12219141622677315 0.46476068686451444 0.12933165566849997 0.14886617480897277 0.79153380256807 0.2002044963878824 0545 -python ../Main_earth_system.py $SLURM_NTASKS 1.2576825971618606 5.426535704181531 3.849993229245033 4.372571581509018 0.19065383403491398 0.294360548001636 0.2235809869358663 0.2326859737543231 0.13853059933639808 0.2766169903848491 0.2040855880775718 0546 -python ../Main_earth_system.py $SLURM_NTASKS 1.912018305346127 4.82638478942109 4.258841752496223 3.8441541047918406 0.12410554247475467 0.1967144485485715 0.4120339606209493 0.1783262200126257 0.14701620365214763 0.4151999883339553 0.1690771669932401 0547 -python ../Main_earth_system.py $SLURM_NTASKS 1.6225550599393093 4.259424503524278 5.254508400818881 3.691455772161598 0.1941907035261702 0.4513123777406698 0.19184973623995705 0.21840867259338198 0.1314303342552875 0.7269869652106504 0.15499891984357514 0548 -python ../Main_earth_system.py $SLURM_NTASKS 2.808043703543193 5.979530357123533 4.350774297876799 4.12981572707994 0.11511344363894556 0.8245711111482991 0.5984184238671804 0.18666025604689723 0.1445373192986886 0.20349021881305257 0.3843363927186034 0549 -python ../Main_earth_system.py $SLURM_NTASKS 2.578453882190357 5.933992044623238 2.8495441198053095 4.060371428860359 0.13277289245347157 0.6993273093548679 0.5907237826763042 0.17472139464292868 0.12019782964821892 0.3250163842784828 0.3322684278483278 0550 -python ../Main_earth_system.py $SLURM_NTASKS 2.1270402216530107 4.740101196181991 4.99325986504315 4.26811241367438 0.11398367666644549 0.49905522075428765 0.7881185003491378 0.28069392596487075 0.13339272113414627 0.8163563329591981 0.3117287623754658 0551 -python ../Main_earth_system.py $SLURM_NTASKS 1.2522595036643538 5.104625580244641 2.0969148256421555 4.438225765746609 0.16841201798554428 0.418883298679504 0.3690001674618215 0.19484566169670722 0.13968628963769295 0.3413302510964529 0.25735355193378234 0552 -python ../Main_earth_system.py $SLURM_NTASKS 2.8687935769970085 5.585152320675188 2.656643523074332 4.322027859722481 0.17827499948105127 0.7498678184696688 0.6109910066876982 0.2784875135994811 0.12014754031935503 0.151653851803578 0.23026604285098687 0553 -python ../Main_earth_system.py $SLURM_NTASKS 1.6522161668967612 5.757201535695325 2.0715097830664684 4.240369073596485 0.14545465072470212 0.21659925651819123 0.7260552001301641 0.2658928655400462 0.12804013822727786 0.29239306368263385 0.2753618819592585 0554 -python ../Main_earth_system.py $SLURM_NTASKS 1.2669900138277206 3.5268514336762324 2.5458717228118477 3.995313619681898 0.13540680884323014 0.8381217951485579 0.32624427536539125 0.1400963622320212 0.11582476477231646 0.6717369339010462 0.3957161612411817 0555 -python ../Main_earth_system.py $SLURM_NTASKS 1.2801283946301072 4.656448541688024 3.1129883866915513 4.035069018306292 0.17043723926852353 0.4560855130559003 0.10097095205964539 0.2267943439095317 0.1340276031637727 0.14181847683489834 0.1247285144781628 0556 -python ../Main_earth_system.py $SLURM_NTASKS 1.343245953860858 3.9875398491871223 2.450684573701889 3.7513594696877273 0.19676604000400966 0.20558129925397406 0.3379611586117556 0.19389102657795748 0.12256616721441223 0.22550753726288175 0.2157220738569641 0557 -python ../Main_earth_system.py $SLURM_NTASKS 1.2771566857052759 5.11095091428974 4.251073957665244 3.6679810078937503 0.12131776636393547 0.8013570322509919 0.5283540013514065 0.22990694112838592 0.13428593687231527 0.11384725603032479 0.3798570879483313 0558 -python ../Main_earth_system.py $SLURM_NTASKS 1.468152921508008 4.936430876487359 2.4173072862959017 4.473345928956074 0.19296250741610485 0.34454874625436127 0.15127085915751673 0.2186871280232462 0.1423982472358439 0.822860704966393 0.1748671781214737 0559 -python ../Main_earth_system.py $SLURM_NTASKS 1.7829087193427084 4.434907749309028 3.0187181553550984 3.6019170858366256 0.12479021957842233 0.8163725044975905 0.9680912935649083 0.2914359843397897 0.12792829439468348 0.4043109347836038 0.2592270723105431 0560 -python ../Main_earth_system.py $SLURM_NTASKS 1.6791177166810756 4.3020475000762985 3.7371261412469607 3.6336670788766523 0.17031292461770609 0.27982606968750257 0.5020897138727821 0.1624650708769022 0.12433844977818226 0.9636887219235699 0.2078308427305829 0561 -python ../Main_earth_system.py $SLURM_NTASKS 0.8054693882319426 3.731531603435703 2.1498115795742354 4.143938803447632 0.12802431772599965 0.30437179767740447 0.9372585966837762 0.16267260226345992 0.11980143273078324 0.6805719476187979 0.2939875277008105 0562 -python ../Main_earth_system.py $SLURM_NTASKS 1.199460670993791 5.582748320270383 4.7615637646707745 4.337695809673056 0.1283097397386385 0.8916788632168232 0.8951593204612008 0.23167282241607742 0.14294308678864054 0.1364077837239679 0.3393244429404656 0563 -python ../Main_earth_system.py $SLURM_NTASKS 2.640037207029934 5.657362806620321 1.6375044710905686 4.2421888281063955 0.13807429292371579 0.10825875102528755 0.5597253139505396 0.12096924133007783 0.1039795922797059 0.892989237476778 0.36141359204580215 0564 -python ../Main_earth_system.py $SLURM_NTASKS 1.6332161103976535 5.865171589670502 0.8964164896987262 4.244192560284904 0.1088051793347473 0.4047066350677948 0.9841811158849765 0.1596877424182077 0.14152558554779424 0.9678383879372708 0.18960787380598848 0565 -python ../Main_earth_system.py $SLURM_NTASKS 0.8806342291696265 4.065241864641209 4.943789030148814 3.8230620304373297 0.13423314041413897 0.1585996865818104 0.769616816723387 0.1212508153489613 0.12074633582117109 0.40965711815811523 0.32373603671666984 0566 -python ../Main_earth_system.py $SLURM_NTASKS 3.1044407749829404 4.073404278143836 1.1395514802459437 4.361933079404244 0.11502469333948334 0.82854121480232 0.8843802947276498 0.29458366201437886 0.11072087661745347 0.1503301111013685 0.15872209241262145 0567 -python ../Main_earth_system.py $SLURM_NTASKS 2.429747826871327 3.918607966123736 2.6921218241743397 4.198808498205266 0.1596403873604772 0.5734962837277245 0.984740951019033 0.1810810685895882 0.11722451484432335 0.2671859099680064 0.21540054757038563 0568 -python ../Main_earth_system.py $SLURM_NTASKS 1.6438802015997398 4.93953444587261 1.6858285451615038 4.112125068186699 0.14847715420649574 0.7053134535714393 0.5899617311142208 0.2511603482213639 0.14027371918256992 0.6749746965258585 0.2657748878780368 0569 -python ../Main_earth_system.py $SLURM_NTASKS 1.8670793762899949 5.0818838987078845 3.003074366507076 4.432634700076632 0.10245664800279439 0.6351066197681546 0.8616427896174823 0.1653833895327441 0.12034097040467555 0.3602118583316377 0.19719685948664184 0570 -python ../Main_earth_system.py $SLURM_NTASKS 2.8705653358346623 5.937735194301439 4.592476737344101 3.73362797519944 0.1939212943413259 0.7081108346068572 0.5335787244540607 0.13887566323780115 0.14234378559692573 0.3171364434935853 0.27918067591340756 0571 -python ../Main_earth_system.py $SLURM_NTASKS 1.1446307489386285 4.861385214285784 4.99106191071152 3.5822152560882756 0.11491484741993874 0.9630054240373503 0.8561468023888318 0.21699765192674464 0.11697568777115856 0.3890772985542982 0.2685301030030045 0572 -python ../Main_earth_system.py $SLURM_NTASKS 1.077645608228413 3.673875330302646 3.320849356570182 4.118178160529136 0.14060588213146483 0.6135187071732146 0.23272609253802734 0.26459507397088455 0.1281018576333033 0.6698264718365833 0.3131936718149527 0573 -python ../Main_earth_system.py $SLURM_NTASKS 1.7551866812453856 5.222824241000003 2.2773608700880317 4.281461351152132 0.15731089587911107 0.6721210054868376 0.7433525836939877 0.12077979891677336 0.12355651519607014 0.8655713370883679 0.28442917944816704 0574 -python ../Main_earth_system.py $SLURM_NTASKS 2.9280282718922086 3.6605652387041325 4.153146515337265 4.486705848074826 0.12771217208071955 0.1041521041672158 0.6130785924814013 0.20537967512880978 0.10811280021298837 0.17927681667792777 0.2696040732474503 0575 -python ../Main_earth_system.py $SLURM_NTASKS 1.1501757674259667 4.6941571922868235 4.70176805200118 4.493531248620576 0.11956296535642574 0.5094887150324837 0.49700034980396723 0.11030430423031136 0.13537273057976695 0.1880078094696831 0.37080272373183176 0576 -python ../Main_earth_system.py $SLURM_NTASKS 1.2188753076146848 3.6473941888776436 3.5273478234053837 4.350495366984362 0.16522246740991003 0.22254388351694404 0.5582137175879195 0.2802216029505957 0.1185884505031399 0.29848366320891345 0.1381904914301019 0577 -python ../Main_earth_system.py $SLURM_NTASKS 2.703422469093857 5.277126855386233 1.8288345744057377 3.745699671367719 0.1096472566013432 0.6212323050738707 0.28634249349362584 0.14579974541348123 0.14398576510553374 0.6798169295110881 0.396010602436606 0578 -python ../Main_earth_system.py $SLURM_NTASKS 1.4405869731862173 5.490455307823079 5.362693692372026 3.73426319818113 0.13908552255291232 0.8611303483789955 0.9428776160021634 0.29722322207801954 0.12592494022607126 0.6934264637676947 0.1251037307686255 0579 -python ../Main_earth_system.py $SLURM_NTASKS 2.851852633373471 3.883472240754373 1.9456014907279358 4.466296027605951 0.1900023691925328 0.968829086874111 0.5616968263157882 0.22375955304929757 0.11637794746804878 0.6707630570288023 0.39182799740635643 0580 -python ../Main_earth_system.py $SLURM_NTASKS 1.5958674304868448 5.955473431220817 1.7178452865266176 4.426151441573736 0.1105399688558539 0.18431063519371285 0.15592942291328515 0.20085811267929607 0.14667193294979236 0.949195164879594 0.11909439372518148 0581 -python ../Main_earth_system.py $SLURM_NTASKS 2.9502364920333513 5.696611520232418 4.339470530363516 4.134017770120915 0.15057803171495848 0.6538549605757645 0.4359486281100813 0.26087483367077857 0.1063951131994848 0.13527022657385726 0.31497874077810695 0582 -python ../Main_earth_system.py $SLURM_NTASKS 1.764473248431011 4.494556112188099 0.8035220779589684 4.232892005499876 0.1623054684365284 0.9918462403104061 0.3718743853763119 0.24976686097008297 0.10366380358410505 0.3113382505178961 0.16730219315460906 0583 -python ../Main_earth_system.py $SLURM_NTASKS 1.336222956537171 3.536555343113589 4.4667257392284725 3.894463837452907 0.1953809080000585 0.8441640241503683 0.9796540938668282 0.16837401869930174 0.10464074797555437 0.9919477790875874 0.25951104969002237 0584 -python ../Main_earth_system.py $SLURM_NTASKS 2.2960373786347548 5.288436159364274 2.551560668363539 3.68217898331498 0.11169421214626457 0.6924919418293016 0.6413199206271843 0.2501838706054511 0.10748110508904135 0.47400623582053536 0.38974529254241275 0585 -python ../Main_earth_system.py $SLURM_NTASKS 2.621702977896602 4.886328833263205 1.465091373019316 4.318269687891181 0.11730299155575145 0.9856258703968087 0.5517079087233946 0.21183797093530238 0.13281932967174775 0.4902655726924422 0.2800577569581465 0586 -python ../Main_earth_system.py $SLURM_NTASKS 2.6806075040593953 5.415358825977554 3.60663055055832 3.8555268093989308 0.18295964577604612 0.902189820534388 0.6813044514417012 0.1915674804609582 0.1361178707647794 0.18236604958616148 0.27646058322104294 0587 -python ../Main_earth_system.py $SLURM_NTASKS 2.545578010369052 4.970320346840716 3.40224350275201 3.681960993645114 0.1671162712426924 0.8476045806928894 0.7188236000193374 0.14305710753617057 0.10355399292455039 0.5015945413989462 0.3829841982747191 0588 -python ../Main_earth_system.py $SLURM_NTASKS 2.285859865962993 5.889891597061167 4.604491066842843 3.9913196437976826 0.1259096389559953 0.6724672108848476 0.5440861363825645 0.18722361741407761 0.13884945961660608 0.8980021949478082 0.2479204982597779 0589 -python ../Main_earth_system.py $SLURM_NTASKS 1.5556197705938177 5.0302714130821045 4.400662100228575 4.333429972337286 0.17126949634329647 0.15836975785092694 0.14178672500000902 0.2517776116967591 0.1411756410709582 0.9901967069791116 0.2543769543064428 0590 -python ../Main_earth_system.py $SLURM_NTASKS 1.2262360062500335 4.502607192097941 4.56851720083934 4.078520244955859 0.17801240058500226 0.10989175582659974 0.1210753438825382 0.14113422275931387 0.13047657047504985 0.6419456170872259 0.34982805407648526 0591 -python ../Main_earth_system.py $SLURM_NTASKS 1.1647805694349032 3.5719606780688733 3.0900729372221276 3.668383944229898 0.1954748191283922 0.3885743997439324 0.28544452109260876 0.25879217432744944 0.11062933847763197 0.2714706880988844 0.2998754969782732 0592 -python ../Main_earth_system.py $SLURM_NTASKS 1.0919370509843414 5.199314583615652 2.982209436144477 3.942914628636181 0.18841856317098005 0.8642067102076179 0.9090258271933794 0.29986778530307057 0.10418684986508238 0.4647223844365228 0.38687403623157934 0593 -python ../Main_earth_system.py $SLURM_NTASKS 1.712241555438112 4.831555720772403 2.907551957045311 4.385454590168503 0.10748683669803104 0.9753808944931424 0.18671770820299782 0.12981396921665858 0.13215250401116774 0.6883943758330422 0.23451646299689105 0594 -python ../Main_earth_system.py $SLURM_NTASKS 0.9644412040396252 5.741490077565173 3.6955847806241655 3.57939286248934 0.14388101402848177 0.9514454473427534 0.217314440482264 0.20156655883545502 0.11660912135768903 0.8374857053481878 0.14822370196984733 0595 -python ../Main_earth_system.py $SLURM_NTASKS 1.35245196887491 4.675440211454906 5.1867780423249235 3.7241261823847354 0.12036015034186763 0.25564635011139913 0.7078777727836059 0.17715000709879536 0.1489739784246505 0.6289478817516035 0.2962792812653013 0596 -python ../Main_earth_system.py $SLURM_NTASKS 2.9431049055948426 5.84764049255743 1.7531771673180074 4.317291252899833 0.16004521601670524 0.170695560696035 0.11984391862483507 0.17892779601818332 0.1399857965999351 0.5758400344871276 0.20278828893704132 0597 -python ../Main_earth_system.py $SLURM_NTASKS 2.1469315823181736 4.844891746063836 0.938738809609949 4.210602884166073 0.12722489700458894 0.8735980366365917 0.90241651822327 0.21391792192200626 0.1418481545120283 0.516213279549231 0.29260486154612936 0598 -python ../Main_earth_system.py $SLURM_NTASKS 2.988800635437686 5.842930772095357 3.522413116718739 3.9822578310889503 0.17096514983175215 0.8823549891210369 0.17123627155116955 0.2783238334597438 0.12531103064586818 0.9603539840670212 0.2747887155486062 0599 -python ../Main_earth_system.py $SLURM_NTASKS 1.458335671870097 5.954465330944275 5.205349285878419 4.295844014619897 0.1959893745525262 0.9481995857792566 0.20144675475128843 0.15482180332491632 0.1323748578676364 0.6863300848750558 0.3592146293298477 0600 -python ../Main_earth_system.py $SLURM_NTASKS 1.581699939695176 4.809561221933831 3.3320826952263802 4.178310430482969 0.15382829580332208 0.864041157676068 0.3473544392857145 0.1352978124228823 0.11417635268382893 0.11244679730845636 0.18278967454035766 0601 -python ../Main_earth_system.py $SLURM_NTASKS 2.3799171599951574 5.799531112773712 4.546042285741109 3.6098488624089082 0.17071348920058632 0.43884623255392663 0.7502955095019829 0.11342667534281389 0.1426693558006841 0.9562648116927853 0.14657985517887598 0602 -python ../Main_earth_system.py $SLURM_NTASKS 1.2824571148123567 4.705683618997107 4.380033140725559 3.637402596982743 0.13123694344443027 0.5290273892267237 0.4628517035285743 0.16581357350784443 0.10392452309081518 0.6398765837402806 0.20611779716459921 0603 -python ../Main_earth_system.py $SLURM_NTASKS 1.4502483033276947 5.679038942769403 3.5362145206262054 3.965149724792672 0.1576301888582772 0.34791946585071054 0.357963306581796 0.2693717795632653 0.1153629892054912 0.3926001814005673 0.11025035172489425 0604 -python ../Main_earth_system.py $SLURM_NTASKS 2.96598645397079 3.99376037634198 4.583464948425819 3.8074121329642656 0.14484722232320169 0.9815713487848498 0.4100398836905721 0.1083072510576572 0.13856171955047925 0.4506880031306325 0.39460169227417696 0605 -python ../Main_earth_system.py $SLURM_NTASKS 2.7484326616313055 5.129711908192164 2.1823399867741036 4.421529485405964 0.19841716356848488 0.6294112255820036 0.6974822621085136 0.17950924894776235 0.1459571364669072 0.970707661417871 0.1809193053864625 0606 -python ../Main_earth_system.py $SLURM_NTASKS 1.4525819103264073 5.101433896862854 2.2739312857745135 4.149769390400344 0.11788359990444816 0.8070669125603347 0.10453876176778411 0.29605186949378803 0.12698982621216973 0.7183325296470023 0.3134554206939064 0607 -python ../Main_earth_system.py $SLURM_NTASKS 2.711534416727477 4.759660132194004 2.013434188858308 3.585432718902913 0.1026299619747723 0.59387288569171 0.14728576878006788 0.19008883272376315 0.14532353768356338 0.6258890807586792 0.2579456597673004 0608 -python ../Main_earth_system.py $SLURM_NTASKS 2.879068610545178 4.326274025070088 5.182406796369981 4.059772999047398 0.12204795816156495 0.7665150356415633 0.8011492830577743 0.20993713920800217 0.13178080201480413 0.39171662131430784 0.28707770717762293 0609 -python ../Main_earth_system.py $SLURM_NTASKS 1.7507209989013854 4.127642607918942 2.512024043700502 3.716546925314992 0.19769698392585167 0.8763756555817082 0.8349369597948276 0.2661392795680896 0.1157624179127812 0.9010664755511435 0.23693748825733965 0610 -python ../Main_earth_system.py $SLURM_NTASKS 2.371494917174243 3.7094697097048677 1.0129514820026193 4.452877108416007 0.15755182612001364 0.9114545477720868 0.6841103475752879 0.10968297634689027 0.110066537577096 0.7094695252168914 0.23177392448387382 0611 -python ../Main_earth_system.py $SLURM_NTASKS 1.213043796916141 4.25266872067593 2.4587351316035644 4.411196132841444 0.12499298805247046 0.31146493189318775 0.2777299808442067 0.11468313046528245 0.13173015256187212 0.37842707836583533 0.267858834924124 0612 -python ../Main_earth_system.py $SLURM_NTASKS 1.0732857529448676 5.434602859098348 4.672059586472444 4.480323730882035 0.10055488602625723 0.12699063568740565 0.3292558229710948 0.19873400740764652 0.10839327635598513 0.1030325653372501 0.3048875885450717 0613 -python ../Main_earth_system.py $SLURM_NTASKS 3.1955391904043555 5.0545922264621455 0.9096165986836879 3.6791392160018663 0.19806383137738676 0.1100390073039946 0.46629661595927807 0.17081858504668368 0.11268497581792582 0.4023292728957262 0.1907312116289352 0614 -python ../Main_earth_system.py $SLURM_NTASKS 1.681748505928454 5.406643521764433 1.1613223661402339 4.2927369307002445 0.18582300339408198 0.980566531012646 0.7277281276440675 0.26645601747527514 0.10330044442198802 0.8273738429781411 0.3163492498416346 0615 -python ../Main_earth_system.py $SLURM_NTASKS 2.2012864259585085 4.7165227040402655 3.832954001090708 4.1307558703394935 0.14467618056539996 0.8887707669204624 0.34355183947199164 0.23618555580253525 0.12550693077818614 0.10817742623818608 0.22198275233880538 0616 -python ../Main_earth_system.py $SLURM_NTASKS 1.0977504440330805 4.587315968272815 1.6171732222820823 3.7799911722957167 0.10357369189509755 0.2094552421214906 0.7853621749072255 0.11107482896073152 0.10288899374939808 0.8341260779276632 0.3852105202664411 0617 -python ../Main_earth_system.py $SLURM_NTASKS 2.905905116555144 5.142430940551682 1.4697212696738864 4.2748368210122045 0.10140671580589385 0.24448107674616643 0.7467227453837867 0.15296628371385415 0.13490357585625307 0.5787243153439628 0.25653237770766624 0618 -python ../Main_earth_system.py $SLURM_NTASKS 3.1891077419729816 5.717739997573842 1.9091948224911786 3.5172516991048295 0.12409329094617272 0.9726265495295228 0.48750108016355553 0.2416311797417944 0.12913612711454953 0.9670822028869677 0.24015677607289806 0619 -python ../Main_earth_system.py $SLURM_NTASKS 2.5063762142974895 3.982390305529239 3.414713323532556 3.625920912321261 0.17019928120386518 0.14029552677918464 0.8396376474817866 0.15849699065152686 0.11706124050161881 0.4432713190035993 0.29188118679866387 0620 -python ../Main_earth_system.py $SLURM_NTASKS 1.455505341809237 3.9404530768871413 1.1959161787242985 4.394105623544373 0.10725937088327231 0.6243400552572406 0.5600772834918917 0.11931026108798357 0.13225590689265967 0.180569329761997 0.23287381296536352 0621 -python ../Main_earth_system.py $SLURM_NTASKS 2.7399178170463614 4.515063379226551 3.4993731908596306 4.458105613143331 0.1122765810420841 0.7367196040738893 0.2310964869072365 0.13337025636243063 0.13918445727317147 0.19629095013342662 0.2774892290408683 0622 -python ../Main_earth_system.py $SLURM_NTASKS 2.9076788811840713 4.023371334568443 1.0750216393471788 4.11613170428396 0.10858661704807225 0.7829244553900752 0.7973213318515819 0.2196652087878136 0.1390499245524058 0.13871875133014627 0.21793263689402145 0623 -python ../Main_earth_system.py $SLURM_NTASKS 2.896216346614313 4.78086881071398 4.933374622625816 4.019852162008385 0.12700397514723258 0.1685209028970472 0.5464920269739184 0.2215228903890335 0.13138653541430106 0.634070947226081 0.16761445913417872 0624 -python ../Main_earth_system.py $SLURM_NTASKS 2.6319674203963155 5.33847613197211 2.352201730358646 4.191350350960782 0.12921626518843785 0.8590716258698401 0.6064713161864793 0.12957941900831937 0.14853173783128698 0.16984707776623792 0.3945079490298876 0625 -python ../Main_earth_system.py $SLURM_NTASKS 1.9026764094143227 3.9733075822310675 3.895171356587218 3.555758546578792 0.14215975936390962 0.6650797179253459 0.13757800794911662 0.26411441058202034 0.1388842601627505 0.5803215950265972 0.36995090273318143 0626 -python ../Main_earth_system.py $SLURM_NTASKS 2.260449864932797 5.895248547835172 1.421040270149843 4.159047636020904 0.1880065880103697 0.3727650783320273 0.8170422781378524 0.26823796794120747 0.14634598165957066 0.8475555167782459 0.10145534276085749 0627 -python ../Main_earth_system.py $SLURM_NTASKS 1.8620031210019854 5.569532806969734 1.843665044548002 4.271542594642311 0.1060054657474659 0.41987215362136154 0.2319961398829659 0.24363957730905297 0.11374951493003456 0.4959613213565167 0.3108499496222858 0628 -python ../Main_earth_system.py $SLURM_NTASKS 2.067053581353968 5.893722107812512 5.3875606322522955 3.571367915079213 0.18402706819808523 0.6081582280659751 0.7728924986934107 0.1704146961351119 0.12285820533068931 0.6169817354287637 0.11443747343627012 0629 -python ../Main_earth_system.py $SLURM_NTASKS 0.8745609595448534 3.8299042197024824 3.2041697884247187 4.4398780396126565 0.13873852129925587 0.1143614541391441 0.10788889105983482 0.13567544869211393 0.1433990730010286 0.3187283613141707 0.12322789671688734 0630 -python ../Main_earth_system.py $SLURM_NTASKS 1.5087511348426943 5.0783429717600415 3.8222360916817957 3.917822178823078 0.13578923580639798 0.9999290879736648 0.9337700291173332 0.28449031116468204 0.10902336401951546 0.6592703044185009 0.22729812655369927 0631 -python ../Main_earth_system.py $SLURM_NTASKS 2.93902963307465 3.6487934637250046 1.8503282693721508 4.006273978908083 0.15368755562926315 0.6524057360500773 0.36312504432920456 0.11492849362679955 0.12237376265408742 0.7702072682433138 0.21763450513194552 0632 -python ../Main_earth_system.py $SLURM_NTASKS 3.125258246951071 5.459190905790168 1.581266536220411 3.8605743088664832 0.12251382697986099 0.31700890626326805 0.5004227921422898 0.1395310776183246 0.1097953196611899 0.2620783359861195 0.16631340683877585 0633 -python ../Main_earth_system.py $SLURM_NTASKS 1.417915694683296 4.546934322470122 5.279579811554142 3.6887254439037407 0.1004391728183837 0.5053503081151081 0.8471466023839728 0.20239277075628304 0.11788149342809501 0.6444802078237416 0.1817411182164559 0634 -python ../Main_earth_system.py $SLURM_NTASKS 1.2431686465212117 5.504653827390311 2.198960901441076 3.5519318379112272 0.13481437271359467 0.49745012036525516 0.4481178193745108 0.12620186793247412 0.13698233648882072 0.3354611851349959 0.2772375089199013 0635 -python ../Main_earth_system.py $SLURM_NTASKS 2.0582128226745633 3.686916962463353 4.708491864161269 3.573517720235141 0.14620957241358407 0.9847135706330177 0.36993337316845754 0.19187833369991236 0.148929331330876 0.20578252587221663 0.3436196680106436 0636 -python ../Main_earth_system.py $SLURM_NTASKS 1.871177478682765 3.6756625142359076 3.0733614612369156 4.3629084056478895 0.17727389641944602 0.641278913125919 0.8969988355806915 0.20118345111169883 0.11925519753537042 0.22812747704316602 0.21909459783012292 0637 -python ../Main_earth_system.py $SLURM_NTASKS 1.0156033034709437 4.986248900866569 2.772088524003136 3.7867511043939532 0.15511269953090523 0.9287996265507038 0.36503205383584336 0.2590468445238452 0.1012901503634837 0.673925662631441 0.21617080009719153 0638 -python ../Main_earth_system.py $SLURM_NTASKS 2.742021627087097 3.8270103650467915 2.859710125448296 4.128225569751156 0.12485557274794279 0.3403319248795403 0.9125499767891049 0.1993711700304085 0.14033648611076083 0.23602787232297054 0.1336690887017874 0639 -python ../Main_earth_system.py $SLURM_NTASKS 1.96973172473829 5.045445258259726 3.676405502608672 4.230858157222631 0.10703236377824002 0.27700160756337455 0.3428924531871099 0.23713295108071977 0.12275203930654947 0.11069790322978157 0.24389059759783205 0640 -python ../Main_earth_system.py $SLURM_NTASKS 1.409704313792036 4.47656999360671 4.718920967672683 3.9463978211025843 0.15575396886942935 0.9717132646143269 0.20893618729300611 0.27696204369158706 0.13393036390992485 0.9151115396409095 0.20340909338280727 0641 -python ../Main_earth_system.py $SLURM_NTASKS 2.311735243470077 5.3536252681928005 4.000517754963734 3.8083064002307383 0.17631604879284477 0.8447616181639404 0.7148692226894551 0.23451472400880155 0.11039308114216151 0.22323223156905247 0.3213392268000515 0642 -python ../Main_earth_system.py $SLURM_NTASKS 2.382589351261977 4.956852435702592 4.389484872290504 4.251590689228296 0.11922721262019609 0.8086207167481753 0.42693075334679864 0.22807601164281271 0.10017499357953824 0.4845622148477353 0.28275628145557247 0643 -python ../Main_earth_system.py $SLURM_NTASKS 1.5655175019110144 4.727058865141549 1.6194569053303933 4.324976214957584 0.10095579839723148 0.7284012500014744 0.6089122350487797 0.22758144866818722 0.12020446444204017 0.7173261232932762 0.3446724161746828 0644 -python ../Main_earth_system.py $SLURM_NTASKS 0.844145411878604 4.581506437479703 4.554073408739501 4.412338169904553 0.14205434360678065 0.7160515431719863 0.6596142001078453 0.10296785921336889 0.1205895115023822 0.3856970882915619 0.22364475536822206 0645 -python ../Main_earth_system.py $SLURM_NTASKS 2.4706218841561203 4.135240869990211 2.0226256022691897 4.467386931066375 0.11152342984082275 0.6642071420324392 0.6744237043729919 0.21996165034415177 0.14771541082031597 0.5407611033905778 0.37948299807247166 0646 -python ../Main_earth_system.py $SLURM_NTASKS 2.559464997185639 4.3076841319153365 1.2720449008227117 3.896971471338846 0.1052534238931823 0.8849550869764993 0.9868948086040628 0.24901932999874876 0.12130115960817653 0.19842265143519403 0.18248868568918677 0647 -python ../Main_earth_system.py $SLURM_NTASKS 2.304451968474834 4.594278360160981 5.1558169237682385 3.5686821939408357 0.15098399762303819 0.22872703623625895 0.2354019577498972 0.2716569713776721 0.13554748278787015 0.9387009243363962 0.3285556340945869 0648 -python ../Main_earth_system.py $SLURM_NTASKS 2.5676232007300497 5.518486341269884 4.7733675675168445 4.043775996539251 0.14597282900175793 0.22684639223659184 0.29525075758820196 0.2145278045086313 0.13247492255153048 0.8450566855410273 0.22472017699449195 0649 -python ../Main_earth_system.py $SLURM_NTASKS 2.1678684265292087 5.263257832187392 4.629164088884869 3.6239892406151664 0.19119538795727656 0.3334886343269936 0.2657133929789083 0.26116067183048 0.11618446065864588 0.7727784439911969 0.27017328366109106 0650 -python ../Main_earth_system.py $SLURM_NTASKS 1.158294336097903 4.776244100686875 3.469076500795955 4.037198772283926 0.15281924020574988 0.48734621611066264 0.4302408580842575 0.2822407362391067 0.13026105733365081 0.6014204856353725 0.24654294789672312 0651 -python ../Main_earth_system.py $SLURM_NTASKS 1.5153070370558812 3.6132607595315958 2.090126546528296 4.442433410176153 0.1016960482866858 0.8078222731066764 0.47634690805606905 0.2035577288262848 0.14800341568383768 0.7061834407695886 0.36377894633169794 0652 -python ../Main_earth_system.py $SLURM_NTASKS 2.3941104810626537 5.42371601696974 3.2712599305448498 3.5788973311198564 0.18188350042143786 0.6760863482008657 0.4819863305628648 0.26668052564123107 0.10792562627327257 0.13965112987770306 0.17117282354612162 0653 -python ../Main_earth_system.py $SLURM_NTASKS 2.0501956881043504 5.773634789385591 4.720412771389829 4.166420494801256 0.13133104183709954 0.17431108643480553 0.5864342353973844 0.21059969510900345 0.10336166621212563 0.1283796660060449 0.38219985370039067 0654 -python ../Main_earth_system.py $SLURM_NTASKS 1.8758223880582447 5.4748945250527665 1.230246769645218 4.356338886137534 0.1799193285504796 0.7188129530098639 0.7235278577525497 0.2727210158191762 0.13586797603790352 0.8503697662483298 0.3723118662925432 0655 -python ../Main_earth_system.py $SLURM_NTASKS 3.167965106897819 4.147354230271937 1.6613355751376297 4.304923852330916 0.1883971609326804 0.5140385655814018 0.4147991380714575 0.2561307767973662 0.12005727058631276 0.721447083724005 0.1705790299045698 0656 -python ../Main_earth_system.py $SLURM_NTASKS 2.5566400292485825 4.570616472119153 2.3904956028940227 4.301005424143961 0.10377127906587487 0.3537289575454755 0.627339134652777 0.276461840450674 0.11316852344113594 0.26770890323377383 0.27994387374018576 0657 -python ../Main_earth_system.py $SLURM_NTASKS 3.1422242288542908 5.926047592228029 3.15811674193528 3.6077701719188995 0.1273644193213938 0.5554132646120625 0.8024813625470634 0.2991284447657967 0.10025007942149144 0.553461655190334 0.33781108513714436 0658 -python ../Main_earth_system.py $SLURM_NTASKS 1.7717365652936907 5.603052984895885 1.0083414491294915 4.057416532828648 0.1211402774983271 0.34520788692776583 0.9749411312098277 0.1654004266347513 0.10104943634211375 0.12526631324418078 0.3197616189385502 0659 -python ../Main_earth_system.py $SLURM_NTASKS 2.9194709570853252 4.615120679578262 4.968876200931629 4.296316595109876 0.17774209911624245 0.7839520432698445 0.10028689394534036 0.25418645787506267 0.1263291556105723 0.5935539202564328 0.19179184406397837 0660 -python ../Main_earth_system.py $SLURM_NTASKS 2.194352954179923 5.5323565360582325 4.538793081705089 3.756882070792632 0.11294243532944608 0.7558810463482151 0.8651278887962224 0.1166714302387296 0.11890663826119692 0.16767177284342144 0.35196304093168085 0661 -python ../Main_earth_system.py $SLURM_NTASKS 1.1109869679627544 5.058206150493329 3.2877378334585483 3.721875438771192 0.1163080607350196 0.9269168133850916 0.9464147922946335 0.13625158569814128 0.11292821026280135 0.6759312746740525 0.1261779468752165 0662 -python ../Main_earth_system.py $SLURM_NTASKS 2.5812305608736206 4.745871031986989 3.744788753777132 3.809380513877855 0.11529556801094502 0.5723339128397431 0.17306755871403623 0.12232097855436619 0.13274698226074177 0.2757206391188387 0.28846153803974794 0663 -python ../Main_earth_system.py $SLURM_NTASKS 2.162790935805374 5.988888451524005 1.1004814591509593 3.7277328616964978 0.1718261129510107 0.6194823277894336 0.2529585010231381 0.10063246578626922 0.12578237051724864 0.6658698152474161 0.3729221228161168 0664 -python ../Main_earth_system.py $SLURM_NTASKS 2.073120239926369 3.58774954097571 2.5173765850451257 4.125877255795649 0.17302937189515738 0.5225868149563319 0.11733563735805634 0.17416334022452234 0.14602446206365674 0.5650226018394936 0.26687020074797285 0665 -python ../Main_earth_system.py $SLURM_NTASKS 3.143396946943998 4.912180065651171 2.2498761085120274 3.747796430256787 0.17656487057481196 0.1630485972621207 0.4979138900962161 0.24983073955712357 0.12151134048215442 0.5816345279105362 0.23017207444234408 0666 -python ../Main_earth_system.py $SLURM_NTASKS 2.0990091256172523 5.5493009012377446 4.728926636594881 3.833512472407384 0.13769450098935576 0.7350577587773616 0.4417057252002704 0.28887147733858926 0.10674847821371689 0.4661510427891803 0.16035371638765833 0667 -python ../Main_earth_system.py $SLURM_NTASKS 1.486183459312551 4.824746010849122 3.9632380285228717 4.209288272323437 0.1804298283607411 0.5311261673853093 0.3030713785904531 0.11365691571458322 0.13752517407435347 0.22005773569020542 0.11719430912910858 0668 -python ../Main_earth_system.py $SLURM_NTASKS 3.130800564414807 5.388989067871102 4.185149923481136 3.6155599126889912 0.11934756288855819 0.5596573497124866 0.8224926189319027 0.2612934589155845 0.117040204679038 0.7939595733989394 0.1962314644814046 0669 -python ../Main_earth_system.py $SLURM_NTASKS 2.8232530099539703 4.484894509404786 4.946539333254037 4.001677953751026 0.1487775096278831 0.6792421575942663 0.8854873376944858 0.12351148291263178 0.1287852571255551 0.15703955957132706 0.32739358083239795 0670 -python ../Main_earth_system.py $SLURM_NTASKS 2.134947210549444 3.757527045237041 3.016325783680913 4.063660018376696 0.15564972089651466 0.29115929085789694 0.5799856150030688 0.2574926998310698 0.1420191672153661 0.11827854709778313 0.23839201125550324 0671 -python ../Main_earth_system.py $SLURM_NTASKS 1.2446698871822295 3.949411800044268 4.677351463917332 3.9858255872101402 0.17663727860547898 0.2659065381485586 0.6962091166109692 0.23139553229405693 0.12473075874169856 0.3644736127773017 0.1740292904181714 0672 -python ../Main_earth_system.py $SLURM_NTASKS 2.6599234333834163 5.981908633650863 2.24721073873867 3.576657753690452 0.12511513118804876 0.7899353254957617 0.507376703563516 0.12200724745665134 0.10954793638488894 0.5207469919783568 0.17824919776145198 0673 -python ../Main_earth_system.py $SLURM_NTASKS 2.541951807873793 4.518913373823196 3.0065911522948072 3.566309462511952 0.17085215833352146 0.9905092816144133 0.21693165097955197 0.15125168434946937 0.1272747056032644 0.4749274206991728 0.31729267652419324 0674 -python ../Main_earth_system.py $SLURM_NTASKS 0.9845825643423389 5.961098110789004 2.4342709498895534 4.174011087749145 0.15296269332047735 0.5700803468984493 0.1285685277798858 0.1781286685331076 0.13261446199856372 0.4834044923399068 0.25361233382823556 0675 -python ../Main_earth_system.py $SLURM_NTASKS 1.3066608256965544 5.285398913854301 3.4497788979639434 4.311685901304495 0.13597251990936898 0.13842916400912633 0.5732595560335504 0.21724994295941386 0.10142391962897634 0.41780661588258794 0.22251393559046914 0676 -python ../Main_earth_system.py $SLURM_NTASKS 2.9583200586777822 5.272248328930603 2.5955721122358755 3.696253981084403 0.11417432802694327 0.28840451432619335 0.780693227908623 0.2387423505557064 0.1108308267385443 0.206824976118033 0.36637317417249204 0677 -python ../Main_earth_system.py $SLURM_NTASKS 1.5430728957575752 5.859873015715843 4.978488318897356 3.7858199906212886 0.13583997929293948 0.35586938369739596 0.6784775952916016 0.2322720624313254 0.147101213335886 0.24678124796930156 0.35011354534770656 0678 -python ../Main_earth_system.py $SLURM_NTASKS 1.7165211011513626 5.241905848034594 3.077170024499768 4.2658081720040855 0.178709164150765 0.5887217643992096 0.5237632099662046 0.2621975755536169 0.12117589348124186 0.9571966082016408 0.39079863225195755 0679 -python ../Main_earth_system.py $SLURM_NTASKS 2.9859240496225885 4.523586526537341 5.459854271252865 3.9291166856976374 0.14149915098971205 0.46661371164510557 0.8310728181334479 0.1937373622028673 0.10974735918988994 0.3818592714996215 0.37840795968621355 0680 -python ../Main_earth_system.py $SLURM_NTASKS 1.4418751960488096 4.086056582925695 1.8556716069576258 3.694288357485112 0.1476573303117042 0.4220537772717743 0.9057230625833985 0.2884256439219496 0.10914035761552954 0.6650309931948368 0.2185561994000529 0681 -python ../Main_earth_system.py $SLURM_NTASKS 2.346426965398072 3.967868823476164 0.9323552556529369 3.6849852119883084 0.15419787064618262 0.660276110127528 0.8377699997016913 0.18225151878505702 0.11351610837382638 0.8245378123110235 0.12968720651055518 0682 -python ../Main_earth_system.py $SLURM_NTASKS 3.190566673153487 4.583514585335637 3.7761374079447183 3.8356003138116495 0.18936020465611547 0.5854003894876919 0.39029111640346803 0.21082588083200687 0.13365954436815788 0.6785698508339004 0.3931522610965523 0683 -python ../Main_earth_system.py $SLURM_NTASKS 1.7682519454166956 4.7506520745089365 4.600138373392685 4.409264573232919 0.12354734276640363 0.3329550950191661 0.3639578482362811 0.1765743289696365 0.11250090933135955 0.5679336320048799 0.1234199579607896 0684 -python ../Main_earth_system.py $SLURM_NTASKS 2.8386006454049033 4.163610116202894 0.85191677994573 3.952489699058201 0.13378441849339054 0.10560198501825431 0.7337250223403502 0.28510777030802364 0.112359876772797 0.8507331881901902 0.3217807630468107 0685 -python ../Main_earth_system.py $SLURM_NTASKS 1.5618157021107906 5.005487908543163 2.640045711733287 4.228786947219499 0.18875182149550324 0.18850464941752115 0.22754735351972125 0.23183545974774425 0.12525770985824308 0.6875307661642026 0.3097539894708284 0686 -python ../Main_earth_system.py $SLURM_NTASKS 2.8171533818777004 5.28444448518883 1.7553611733273318 3.80304869944465 0.12334359368870254 0.8219975448941049 0.8324316397115491 0.1830274072973789 0.14356619488619676 0.900441165361648 0.16469283425986697 0687 -python ../Main_earth_system.py $SLURM_NTASKS 3.103101810202274 5.095261045938994 2.9963199172214425 4.025727468440301 0.11012478882003734 0.3539898040359638 0.9106254459115172 0.28961200075157856 0.10560592226535434 0.4535435585890948 0.18602537123962723 0688 -python ../Main_earth_system.py $SLURM_NTASKS 1.3396868009036895 4.849079555341114 2.6329266259724333 3.6852546978260015 0.1977082846431298 0.20119272559243642 0.39840677771161737 0.18957756037014933 0.10075169970161539 0.7317437146496005 0.11654424680248121 0689 -python ../Main_earth_system.py $SLURM_NTASKS 2.123942962262162 4.804738800935966 2.3005728943105064 4.363236555711636 0.10068571986123587 0.762236189706385 0.7300074293780596 0.1805795316277723 0.10083500781484571 0.4980620916966756 0.20936833264597815 0690 -python ../Main_earth_system.py $SLURM_NTASKS 2.340711835291229 3.5164186289273824 3.1059439064484566 4.132528217769825 0.18683865698492144 0.3805997975151829 0.2690315773223054 0.2684806832339589 0.10789233003541261 0.6994175928135746 0.33266115912317196 0691 -python ../Main_earth_system.py $SLURM_NTASKS 2.234740316799118 5.390516025011674 5.217993935153917 3.6135372938341326 0.18276016740798462 0.8622016088310447 0.8137744963070227 0.2364971775797555 0.10062710832766676 0.696385566232364 0.1565233008891807 0692 -python ../Main_earth_system.py $SLURM_NTASKS 2.9703898519942253 3.653184880611725 1.935032005832879 4.297781729567316 0.11766558123983392 0.5896196417444555 0.11332241160849114 0.16417209350556577 0.13561215502590612 0.9129459864747522 0.20875828539965383 0693 -python ../Main_earth_system.py $SLURM_NTASKS 2.2200173087061885 4.2770551791236615 2.946610448470177 4.140628258305603 0.1457763472543868 0.770203107456549 0.8501444652703254 0.13302945132573424 0.13459323819043784 0.9070233255812027 0.2529459709345026 0694 -python ../Main_earth_system.py $SLURM_NTASKS 1.8274731636127295 3.7194573255052488 2.425668046888195 3.7984625315707214 0.16859800371408512 0.8748479165705967 0.6614109089932109 0.2006671295966761 0.14987667151895445 0.8046988426958755 0.2068325513922884 0695 -python ../Main_earth_system.py $SLURM_NTASKS 2.0118612566887304 4.459341306722209 1.7473842085309272 4.305602052530806 0.1369640420572349 0.6940341670784724 0.4913421287558968 0.25488929896199586 0.11558290788095724 0.606168506192166 0.3304332648906928 0696 -python ../Main_earth_system.py $SLURM_NTASKS 2.1127956616116643 4.868808426572775 3.2797149108000054 3.650451280508357 0.14195988639259186 0.5983590152458126 0.1355220237441458 0.1486793430084203 0.11103591046681345 0.22718117010990624 0.38452292309773983 0697 -python ../Main_earth_system.py $SLURM_NTASKS 2.702741493159502 5.12742616750533 4.645833117385336 3.5652723205298873 0.19820745448897578 0.9875773116862328 0.7797951758142528 0.14194120982352476 0.10859759365590292 0.3388956666580012 0.3385345615310741 0698 -python ../Main_earth_system.py $SLURM_NTASKS 2.604954039423066 3.860006253575484 5.455949135486382 4.397749569930806 0.1732109142142038 0.3488218881388925 0.4503056803441201 0.2414250307774776 0.10343158717355308 0.4146754566310459 0.12194962518638808 0699 -python ../Main_earth_system.py $SLURM_NTASKS 2.2846104972756764 4.091573383469463 0.8766620926121814 3.8052389841954786 0.18240002096925786 0.8679538818230382 0.6306137365998105 0.17978621974257283 0.11278435886561938 0.7693019137951413 0.21822733488502882 0700 -python ../Main_earth_system.py $SLURM_NTASKS 1.778642981124609 5.281250490406592 4.816562243775913 3.606779420392548 0.19448279365038207 0.3146924216875744 0.48270934546256683 0.2790318943848778 0.12383590752610754 0.4730705465313526 0.21654392798758504 0701 -python ../Main_earth_system.py $SLURM_NTASKS 2.205660119573626 3.9060186230573146 3.0988084389508215 3.962469524714903 0.12787641229224722 0.8139131673538336 0.644729963327613 0.2766404708262773 0.11041325438288421 0.17804704762207793 0.15757672863025993 0702 -python ../Main_earth_system.py $SLURM_NTASKS 0.9187792251636423 4.520635360541104 3.9130039996334975 4.386107699916388 0.1467104811141192 0.9601735927987816 0.8329687254664747 0.2563097372100177 0.14708732384677065 0.8355663625764155 0.2865089692404137 0703 -python ../Main_earth_system.py $SLURM_NTASKS 1.6204186793865936 4.455151734993399 2.652643455368647 3.709833706799917 0.17262199271851747 0.4066066497360007 0.47424683371440324 0.16011902605027428 0.12250904691884525 0.2559330642982912 0.39354512887131243 0704 -python ../Main_earth_system.py $SLURM_NTASKS 2.6347034511434977 3.5996264023022726 2.9355985715694404 4.479426581379604 0.139930485526808 0.37916152529470215 0.3102965098373672 0.19241044427177212 0.10966327087538214 0.9189879392812323 0.2809589612440335 0705 -python ../Main_earth_system.py $SLURM_NTASKS 1.041183331466688 5.84535673855591 3.3962651850789864 3.858985641659213 0.16063128038030888 0.9074650120820573 0.48505680003404705 0.2200587937312311 0.10380707736287935 0.7286280179492417 0.36227405164482207 0706 -python ../Main_earth_system.py $SLURM_NTASKS 1.5369954631365816 4.298208071650781 4.398034416603753 4.332828364653794 0.18283612507224212 0.4842415341624463 0.8102344006074466 0.26563207292268765 0.1424454516815653 0.7444805016013453 0.2096891165203475 0707 -python ../Main_earth_system.py $SLURM_NTASKS 1.7267627105918613 5.710279151514067 1.7751661948815993 4.188890844094458 0.13790813967324042 0.42686516784867934 0.7718831108770186 0.1565588527650611 0.14392935332274495 0.3555218150690944 0.1223305949525808 0708 -python ../Main_earth_system.py $SLURM_NTASKS 1.3559827767427373 5.688184822454895 4.678560581063476 3.620998347929214 0.16119442347972748 0.8022523573398105 0.4439146732129631 0.22069877978910576 0.10204850057547968 0.6969234403986209 0.18378981255782917 0709 -python ../Main_earth_system.py $SLURM_NTASKS 1.113169941216571 4.3354544085734865 1.7848343619687514 3.7611026027074685 0.11916946866377616 0.71274812694167 0.22482514506996726 0.1347955485247042 0.1277467145102356 0.6990218304820912 0.16794367518529685 0710 -python ../Main_earth_system.py $SLURM_NTASKS 2.9601684828351056 4.707721355596483 1.3825907120256986 4.038407960720209 0.11255551681947376 0.23575594135862926 0.5770994906989352 0.18793503862340533 0.1094898334098682 0.4248258816999866 0.1140213336385579 0711 -python ../Main_earth_system.py $SLURM_NTASKS 1.1188649373761017 4.5731828736123115 4.3084757533415265 4.213900520914161 0.12274339180119558 0.37531920732614954 0.8186172901414572 0.144929486300799 0.1025931979378873 0.996655579734177 0.3339244435828277 0712 -python ../Main_earth_system.py $SLURM_NTASKS 1.8555942387791489 5.4378168320876235 3.6626655106210473 4.123872834421302 0.11308078586526908 0.4372973868338367 0.6982846561646827 0.11656998827045036 0.1468355853386839 0.5059838883026079 0.158173567303485 0713 -python ../Main_earth_system.py $SLURM_NTASKS 3.135260115456945 4.599035569870047 5.115236945342947 3.593894660243204 0.15141046735772015 0.9763554219866369 0.40740908673375176 0.13685951450000047 0.14957482703419012 0.8259829131143233 0.11414326386938034 0714 -python ../Main_earth_system.py $SLURM_NTASKS 2.9689451760285595 4.929467932909386 4.114230982326872 3.869008207424481 0.19051703260529543 0.49834985557947475 0.11536383166669541 0.26335664267034276 0.1389944174266165 0.43494720151739275 0.30010248271403517 0715 -python ../Main_earth_system.py $SLURM_NTASKS 3.0312272768024364 3.6929310284214143 1.2137088062276544 3.8989356816208116 0.10876460363320758 0.25913874250400837 0.8756640786262118 0.1521063399805029 0.10387435767419931 0.940088845686909 0.2848956650304386 0716 -python ../Main_earth_system.py $SLURM_NTASKS 3.0714557452850473 3.6988247366808387 5.059118108809749 3.580707595275034 0.14567218847608865 0.727996140657975 0.977842540768627 0.1424988718812723 0.10539550610370016 0.6947082206585892 0.27297591997498316 0717 -python ../Main_earth_system.py $SLURM_NTASKS 3.0324785788852653 5.008512935482929 4.796215663654627 4.263037358582866 0.12000863468002802 0.3289316184755844 0.7866394368486427 0.21424749360990855 0.13846153374587022 0.9048766691122694 0.25775164850130683 0718 -python ../Main_earth_system.py $SLURM_NTASKS 3.009762218433991 4.895839306964552 1.8193598108304525 4.098296499971651 0.1488160332238033 0.6223101629721529 0.8194065919445075 0.27259832926564515 0.1070185033924964 0.5199635931706251 0.16362403660571861 0719 -python ../Main_earth_system.py $SLURM_NTASKS 2.2894564656751184 3.9322465198342433 3.559485425489612 3.832901805114751 0.19452957043075164 0.5829487307708724 0.842935116575406 0.11127901311121054 0.10640009986291823 0.633242238318711 0.34946674057043625 0720 -python ../Main_earth_system.py $SLURM_NTASKS 2.7309648085792455 4.352744932838105 1.1485786130542688 3.770579079542153 0.1304683186723943 0.5387336227450369 0.26203188815646783 0.18209260557811602 0.1346367382534467 0.5975715045236871 0.2535697386212262 0721 -python ../Main_earth_system.py $SLURM_NTASKS 2.5372503788624456 4.000368890614871 2.3048453894658305 3.622805927787706 0.11714143364457569 0.9936117802649173 0.9637871135465387 0.2943855936988987 0.11403184914671416 0.2353799168134481 0.3742340156952155 0722 -python ../Main_earth_system.py $SLURM_NTASKS 3.057627219698997 4.427257818905847 4.463912848902328 3.6020280172955803 0.12363145067094013 0.43837635002696396 0.788843935371332 0.16307653326266516 0.13126862512860196 0.168979604032021 0.21420223048692993 0723 -python ../Main_earth_system.py $SLURM_NTASKS 3.0813283539958336 5.543855979536344 2.47796685700499 4.303139377250517 0.1210755957319678 0.6840105961327035 0.2895001147952656 0.14076793772938698 0.12541154930427148 0.7383526971102867 0.29025442351535735 0724 -python ../Main_earth_system.py $SLURM_NTASKS 3.118135599766271 4.1023693723394405 3.9069159012070918 4.058077899133902 0.16027809148282704 0.15101374966351067 0.7369393518895798 0.22095955804114414 0.14251377070886243 0.2852092882946498 0.30675565967168017 0725 -python ../Main_earth_system.py $SLURM_NTASKS 2.2395517993344036 4.1166417736345196 2.14070629635925 3.529395664256766 0.16205905516670946 0.22187727623751788 0.4034601764464383 0.12110389710140956 0.12078686911969418 0.8809630476429159 0.20669400219241824 0726 -python ../Main_earth_system.py $SLURM_NTASKS 2.2472358951836013 4.225416428529547 2.344119912488668 3.8416594683921947 0.14550218183299946 0.6965792553945246 0.7113900206197102 0.2650072932528692 0.10582115959551992 0.5751212919124917 0.13624958267492854 0727 -python ../Main_earth_system.py $SLURM_NTASKS 1.6991840608557562 5.640009972408981 3.6444725352765586 3.9774450564843464 0.11073929838414485 0.8794812909245554 0.21805402568044754 0.23058196380133414 0.13906869025764787 0.544848862067511 0.17687286690651613 0728 -python ../Main_earth_system.py $SLURM_NTASKS 1.7020234561273957 5.5820692740878615 5.006890916478297 4.015972896425325 0.18383750910716123 0.22498461812409634 0.7286809089253727 0.2583719044254439 0.1087243259185413 0.8610287831385317 0.18482112530097383 0729 -python ../Main_earth_system.py $SLURM_NTASKS 1.1423731391625607 4.601322219723117 2.4396757260411492 4.360968725201479 0.11907372729555912 0.9401537231910768 0.4055787778216642 0.24955312670193008 0.12406955336508925 0.7629335594041482 0.15842367076163147 0730 -python ../Main_earth_system.py $SLURM_NTASKS 1.6047961710585552 5.396212438304021 2.781796008196576 3.5475239340682063 0.10976953275426872 0.5653693533850249 0.8160488331894497 0.1474695325214196 0.12571925719359586 0.2872896095117954 0.10304510685848059 0731 -python ../Main_earth_system.py $SLURM_NTASKS 1.390157786371327 4.429742239994613 2.8474514407514597 3.8295210921035134 0.1942848907439938 0.6954712772863085 0.78674061699328 0.2739692059114268 0.14562944321265198 0.2208910604426359 0.1226900660338218 0732 -python ../Main_earth_system.py $SLURM_NTASKS 3.138422106573344 5.448526163985221 1.9248141634613423 3.9582881736774675 0.14118330362414874 0.3040594891932504 0.8305912822093974 0.14339051558067387 0.10741101278924153 0.21531336355485753 0.3346699103360713 0733 -python ../Main_earth_system.py $SLURM_NTASKS 2.708062477772332 3.6832994820833744 1.056423492438328 3.6667809906034896 0.14909526906283388 0.8667489475202504 0.6887527125386697 0.1534120831589808 0.10406944773743036 0.24528650906474717 0.13867409884956977 0734 -python ../Main_earth_system.py $SLURM_NTASKS 0.828251601105034 5.477064384645263 1.6988837037975584 4.012451413633741 0.11195643841681038 0.7818620749617551 0.7746987580628876 0.12878241105134647 0.10932175381228024 0.3700776424303416 0.22559178880216993 0735 -python ../Main_earth_system.py $SLURM_NTASKS 1.8951917992945255 4.343525833139311 5.17679820227439 3.9811831141670275 0.10920964541987391 0.2902672405745568 0.8708683215405503 0.23208891770321008 0.11914014375799352 0.7361167051360701 0.21698487896570656 0736 -python ../Main_earth_system.py $SLURM_NTASKS 1.1365664124649957 5.643839845525578 1.608784218599065 3.8068360671385477 0.14835125958019685 0.9250228946841401 0.6993814531709522 0.2505246611961389 0.13100811946429647 0.8469011519715668 0.1450718545847566 0737 -python ../Main_earth_system.py $SLURM_NTASKS 2.900045941805959 3.5853199544158425 2.1297913951092378 3.9374716659193814 0.13196128257546075 0.14447261595015626 0.44972500007403315 0.2871414319746337 0.10567192050149928 0.8779921645108754 0.2400453762941494 0738 -python ../Main_earth_system.py $SLURM_NTASKS 1.424393520198339 4.856720774070142 2.9324017918389975 3.675226953135532 0.10649343619702108 0.4936417531957059 0.8935273156897698 0.16387638101277918 0.12301159136662451 0.7024980475471275 0.24168050432500013 0739 -python ../Main_earth_system.py $SLURM_NTASKS 0.8238450532636894 4.393439447019065 1.50001540270398 3.963244619722258 0.1635469479001571 0.5996116376553609 0.49435666384385146 0.24597465668929686 0.1364696604495606 0.31966247474800014 0.2541992137150608 0740 -python ../Main_earth_system.py $SLURM_NTASKS 1.9211530408818966 3.51459825182719 3.4223555661070097 4.217652682629947 0.1691638972022511 0.23043672393378534 0.6153272312976409 0.24628188463386597 0.10826136234184484 0.20506634175233768 0.3680312389662278 0741 -python ../Main_earth_system.py $SLURM_NTASKS 1.8349056240759873 3.7391061775490173 3.682719952104243 3.590523338147032 0.16460112448355152 0.8127747896162788 0.27429343868030187 0.1479574814134865 0.11780413293744602 0.7503979551730824 0.28233074630205796 0742 -python ../Main_earth_system.py $SLURM_NTASKS 1.11970941047653 4.514577534205592 2.959109715566272 3.967162788705809 0.10349808850664606 0.7606871286124696 0.42571389894443323 0.19111174931590963 0.1244346980607539 0.48218929350754314 0.38138819464572304 0743 -python ../Main_earth_system.py $SLURM_NTASKS 2.668234731097541 4.931393764629355 5.1918450440556425 4.498281444883581 0.11230720421586665 0.5358483454368975 0.8354850362282917 0.2616049731761295 0.12536061984708952 0.6599710340712227 0.251622681713131 0744 -python ../Main_earth_system.py $SLURM_NTASKS 3.127303408863063 5.602467136426201 3.2140594119413075 3.749213539703483 0.14224092419955084 0.8493448899220479 0.6163240971725682 0.2774417284657972 0.1426150417638244 0.5086736545566483 0.24108279911380043 0745 -python ../Main_earth_system.py $SLURM_NTASKS 1.5302024384011457 5.737481935764255 2.8867374227735443 4.004443303397713 0.10598437744724218 0.2382137638151525 0.5349568184512867 0.1361005786621439 0.14342779607197248 0.6465431133366147 0.33022449502044926 0746 -python ../Main_earth_system.py $SLURM_NTASKS 1.2221966811682736 4.664841128220832 4.987121882656891 4.419450263465766 0.199772963380195 0.21776627125603903 0.720545065586551 0.2003456452095701 0.12297744377354972 0.2013947283243489 0.13757970954225152 0747 -python ../Main_earth_system.py $SLURM_NTASKS 0.8968294420074752 4.161197306230848 4.149501343708554 3.7919064016347788 0.10419515524223492 0.2862495447534936 0.9946487194397001 0.18598557593611126 0.13976755570972332 0.2809323606141878 0.35523694168944553 0748 -python ../Main_earth_system.py $SLURM_NTASKS 1.8969548948140438 5.606830876625061 0.8719240016797772 3.69963967571555 0.19861299371698413 0.29341701853527824 0.2645677118715002 0.2810837471340462 0.13840992783211023 0.6221307803826751 0.26158013157604554 0749 -python ../Main_earth_system.py $SLURM_NTASKS 2.6449715703848025 4.350568514586579 2.225562873442049 3.7104729339423494 0.17178193040082618 0.9292715298490906 0.9155246576105518 0.2452482142111473 0.10988435872237672 0.9236370141365904 0.24141911063031965 0750 -python ../Main_earth_system.py $SLURM_NTASKS 2.182528523503488 5.664264416463013 2.5022230322113703 3.880785684712133 0.1665373266612803 0.18227527422830347 0.20461110469990262 0.2535086835307568 0.12481560850484094 0.8191712169419991 0.18111399215592627 0751 -python ../Main_earth_system.py $SLURM_NTASKS 2.7216426732206402 4.785936044905149 5.1004461369728356 3.900217814317857 0.12989739022650248 0.27548965090961497 0.35620185613107225 0.15601913028862058 0.14179564932348984 0.48677848018773584 0.1612745757688119 0752 -python ../Main_earth_system.py $SLURM_NTASKS 1.668016469485194 5.393981503467952 2.062583025097211 4.10146582217015 0.14054092269859167 0.7111368265163717 0.46190617791801847 0.23153636713580408 0.1135783162612948 0.40639047952748153 0.1371435976659307 0753 -python ../Main_earth_system.py $SLURM_NTASKS 1.704998074473296 3.8362264845542566 2.954852484013247 3.5487376744910035 0.12632284723367465 0.5345540763641659 0.8666320329529673 0.1072728081295986 0.12199289621416252 0.9344343425569459 0.36943260660805677 0754 -python ../Main_earth_system.py $SLURM_NTASKS 2.840144501910091 5.4967052017506814 4.616433391441553 3.6629591402720294 0.19087023315334686 0.8210445524853218 0.32826133728150164 0.11056025385718105 0.14738622203894663 0.631183454259244 0.15680405073420664 0755 -python ../Main_earth_system.py $SLURM_NTASKS 2.6532286943841212 3.6113686778524867 2.219695176641186 4.003568560758391 0.12175407018400655 0.7879078200596693 0.40601896690418793 0.13980846572876876 0.13604710964689384 0.312865357234416 0.13581402613876414 0756 -python ../Main_earth_system.py $SLURM_NTASKS 1.3348643610955846 4.8741388478707925 1.3490461948175911 4.404911381861516 0.1147815033878181 0.6399085428009569 0.993703274850389 0.12707276145777002 0.12644799291173078 0.33227166436628575 0.3427866051824957 0757 -python ../Main_earth_system.py $SLURM_NTASKS 1.9832348334546286 5.722019365254651 4.975985416811077 3.772287967217336 0.14737429987974524 0.8554058101108545 0.2681396236094923 0.18813762193587613 0.14369257941775443 0.1938797963363849 0.35088972856316303 0758 -python ../Main_earth_system.py $SLURM_NTASKS 1.5730855655833471 5.318474953219765 2.2815744115767664 4.402571470717313 0.1396941032384116 0.7074381951932802 0.4447162546475092 0.15508433430107613 0.12103535606020291 0.685012853313738 0.16667439303735132 0759 -python ../Main_earth_system.py $SLURM_NTASKS 3.17421028971238 4.054607051056374 0.8369718112552419 4.389394366074154 0.19915307912812358 0.6022100665263886 0.829506870781982 0.23328147319852513 0.11426828314160584 0.7552403742484746 0.20761144213030894 0760 -python ../Main_earth_system.py $SLURM_NTASKS 2.611428941001493 4.060025812485889 2.3342968510042597 3.6482061133800903 0.12348561068515315 0.7875206928672032 0.6008851404522215 0.2828347119009983 0.1189786641954364 0.966166910108434 0.14840925029493124 0761 -python ../Main_earth_system.py $SLURM_NTASKS 2.8713307493243816 3.7814364744562803 5.150500930926587 4.3734416911270175 0.17895644394126453 0.1750752219740061 0.6328677713540279 0.25372911999009956 0.14485826159491502 0.9628005946358523 0.15038493073531148 0762 -python ../Main_earth_system.py $SLURM_NTASKS 1.8069621347557914 5.776513686972838 2.53933490052259 3.8570096317323657 0.10765735302946766 0.6310569030078775 0.7265466545671792 0.21938009638202716 0.10234205807137324 0.8097442232650759 0.3758779644149757 0763 -python ../Main_earth_system.py $SLURM_NTASKS 1.8501800405011326 5.247878318822658 5.225212079757501 4.036846863382136 0.18706463711473942 0.1531881017390458 0.8284213941196454 0.18390058228275485 0.10180328689560261 0.6254845477726088 0.13926542978016843 0764 -python ../Main_earth_system.py $SLURM_NTASKS 3.055169191175205 5.671169218888851 0.9465030526440754 4.48271337500017 0.10384422067038482 0.3195559882145449 0.8690777705780602 0.13549627397171943 0.13631824224944059 0.3963944487630642 0.11564336823563283 0765 -python ../Main_earth_system.py $SLURM_NTASKS 1.5393626513002043 3.7472109357779773 4.395254110493796 4.250966351770996 0.17742929144182085 0.6453880523296532 0.3449249993474003 0.29132668984217625 0.12388772178971981 0.9643399453733026 0.27439897567858357 0766 -python ../Main_earth_system.py $SLURM_NTASKS 1.6386803457708063 3.896143106382918 4.84734814624 4.4145501662630515 0.18051814380546988 0.510543057782137 0.5250448360791479 0.27490077458190354 0.10623008016411732 0.8892992584211783 0.2846715254149025 0767 -python ../Main_earth_system.py $SLURM_NTASKS 1.951366601272119 5.450816910011707 4.563377808927815 3.9041140942213066 0.10088050677063447 0.21229019031259913 0.30017729436052404 0.29887848844809367 0.14381990213039125 0.1934242853813266 0.15424123093657896 0768 -python ../Main_earth_system.py $SLURM_NTASKS 2.2128025294882194 5.023223047255203 1.714995163200809 3.6115566461830957 0.1859447277942988 0.4961688425490418 0.584784638201786 0.19550578290114184 0.12517145858737988 0.4703939360995014 0.2694859628488353 0769 -python ../Main_earth_system.py $SLURM_NTASKS 1.2635051552427292 3.6185322830056244 1.1368091344976703 4.396778468627277 0.14309348955246667 0.5353268485736918 0.5141544497494381 0.13412799515310048 0.12418104193532359 0.21901212612970877 0.2749054824395055 0770 -python ../Main_earth_system.py $SLURM_NTASKS 1.5968738103951923 5.094723942823611 1.5205468719577684 4.417793334892604 0.16393042913756242 0.5328389812156892 0.25433273507290755 0.15082872643746176 0.13778577182157714 0.6904770701785182 0.13197277118097098 0771 -python ../Main_earth_system.py $SLURM_NTASKS 3.0172921827629233 5.174904606403501 2.0319509477177404 4.153822852527767 0.1441603221861672 0.5952282557927754 0.2031009657156454 0.19754205732452923 0.13671526429192715 0.9210934175270791 0.3973584464951051 0772 -python ../Main_earth_system.py $SLURM_NTASKS 2.9165433771416227 5.076507100999898 4.84536077680148 3.5388484474874735 0.17239564343636526 0.9631502736198607 0.6356912737886206 0.21750040479739147 0.11922492703776055 0.30929638374235824 0.10577008820481133 0773 -python ../Main_earth_system.py $SLURM_NTASKS 3.0514949441348076 5.5730909942948985 5.482706690097901 4.171684644606595 0.14979611880171545 0.33176429522859896 0.3702700284390631 0.2229808342070374 0.128925042178568 0.8721805934226373 0.17307165400122426 0774 -python ../Main_earth_system.py $SLURM_NTASKS 2.843654620758416 3.5447173405807852 1.2885538968103636 4.381099956780106 0.10563564103533682 0.481021483154775 0.779408158437747 0.10118862268793398 0.10322058756479771 0.1579968943555913 0.38815097740913784 0775 -python ../Main_earth_system.py $SLURM_NTASKS 1.126350457658849 5.42889200740751 3.7805379041911715 3.632511433259948 0.1267580251684418 0.2360052016576083 0.9000830092423132 0.12647883052426656 0.13743342256843732 0.6278946887753641 0.38736171690292265 0776 -python ../Main_earth_system.py $SLURM_NTASKS 1.4070833820228381 4.770520946645236 1.3276038645494719 4.441993908606411 0.18149682589068078 0.17205947116605635 0.38436254042335616 0.2443468634793416 0.13420284836835752 0.10419428719856719 0.134369498238937 0777 -python ../Main_earth_system.py $SLURM_NTASKS 2.055135103011035 4.900719695191267 3.1736933550539943 3.7834448635494815 0.139322004698897 0.21045264036847527 0.739254144241523 0.26033596499013156 0.10030499904854037 0.9713275350271607 0.14267588549645135 0778 -python ../Main_earth_system.py $SLURM_NTASKS 0.9135366045716374 4.4360770467817865 3.4128458351433375 4.47771047106758 0.118326531088046 0.7980106950223826 0.4087474775280715 0.11695026928381767 0.12423115555858924 0.608405408185771 0.24943933839130367 0779 -python ../Main_earth_system.py $SLURM_NTASKS 2.6017686259379253 4.472570844604611 1.9759322109435418 3.767340762281789 0.1958335009750173 0.8630805372289381 0.437785261186454 0.23991960787635982 0.13316880090889666 0.22164429395535218 0.10032287805510696 0780 -python ../Main_earth_system.py $SLURM_NTASKS 2.275385155278729 4.194192842708453 3.902935760991146 3.780947434372729 0.11269913829219874 0.19901466776109883 0.20357996794637184 0.13501760571438226 0.14434977507522967 0.17030368354145947 0.22127531837625422 0781 -python ../Main_earth_system.py $SLURM_NTASKS 2.603994599075837 4.564609946398392 5.087896769124067 4.075841080049235 0.12825992493412983 0.8840130764289533 0.8029937435493696 0.23767794594228986 0.14003265787112232 0.43275519905400894 0.2013678336477433 0782 -python ../Main_earth_system.py $SLURM_NTASKS 1.5443352952903806 5.213991055916415 4.811112718959832 4.093858647827856 0.13252319505262505 0.2237077315606159 0.710592367756987 0.16127538573176767 0.1084126291778192 0.7220993739866483 0.18020558104113116 0783 -python ../Main_earth_system.py $SLURM_NTASKS 1.6372911505529333 4.5545053287959085 1.1868969278404573 3.5066306427649434 0.1326795387716754 0.39621955123861186 0.9560766144992119 0.2805166354127171 0.14363818064943693 0.9291920274930332 0.29226980719621715 0784 -python ../Main_earth_system.py $SLURM_NTASKS 1.9255869543641053 3.8176978739913787 1.7672906017185759 4.343906675338612 0.15447706308958908 0.38708805120300516 0.7085660113383692 0.13701446296443356 0.11833896568649115 0.7672498301782001 0.11698255386055101 0785 -python ../Main_earth_system.py $SLURM_NTASKS 3.169553794252508 4.20256739811968 5.018053704032676 4.384495335357316 0.1681582820092793 0.18027423066623627 0.8590781890882507 0.18652086528537504 0.10781838922651862 0.44998759736999105 0.23609428939466118 0786 -python ../Main_earth_system.py $SLURM_NTASKS 1.689008525242048 5.440263306391237 1.586519643212526 4.269219424972683 0.11554044829201049 0.8966005896368842 0.19703226326398643 0.1224135696945629 0.1338402072071056 0.1871599144451649 0.2072614867838259 0787 -python ../Main_earth_system.py $SLURM_NTASKS 2.683066881674989 5.769566644579134 5.409158467902234 3.744832173518909 0.18555319805406142 0.5519209479963735 0.5823123882209562 0.231028003554983 0.10309811793213854 0.6486647582373682 0.16716114779830954 0788 -python ../Main_earth_system.py $SLURM_NTASKS 1.003865735874823 5.5232088288844885 1.5695309901549033 4.137945013966309 0.1628773519024851 0.8818440633399092 0.9535323142262366 0.11250515032352046 0.1334824762257501 0.9274989602756439 0.38872160194313354 0789 -python ../Main_earth_system.py $SLURM_NTASKS 1.414450937304149 4.009774709627832 3.0499025721578583 3.6544506306584035 0.12443497237764413 0.4264845029376093 0.3157672368008053 0.17158448278870322 0.11512074384712125 0.8794690041026086 0.17529511849140839 0790 -python ../Main_earth_system.py $SLURM_NTASKS 1.9291891801599004 4.220520460733235 2.6661631085748008 4.24835193688229 0.15858129895653955 0.3262161099993717 0.17903525700066397 0.162251669111117 0.10452082052287867 0.9465815148388791 0.3684739215938998 0791 -python ../Main_earth_system.py $SLURM_NTASKS 1.216612772883404 4.182162830276221 4.4190724991090224 3.5082110947017906 0.10668046569644024 0.21896323705879878 0.4929011665843749 0.2251847956819257 0.11954359952998733 0.17721754548214488 0.23157431391546202 0792 -python ../Main_earth_system.py $SLURM_NTASKS 1.2698213039320443 4.578310938144422 1.3009161751876452 4.200478768001592 0.1607830447564471 0.27639379498625666 0.6557133938462882 0.23004431948696696 0.13596038092092214 0.2869225542286443 0.21286903419198755 0793 -python ../Main_earth_system.py $SLURM_NTASKS 2.5903158245331257 4.372525246135612 5.100916036591868 3.9746581808055668 0.17255630179722026 0.4749896443980838 0.4857673413158433 0.10240275409058719 0.13092949619430583 0.5189399691546535 0.32381742231235017 0794 -python ../Main_earth_system.py $SLURM_NTASKS 2.376157796924244 4.2361876944956895 4.622223897244571 3.802941093179683 0.11333037908579456 0.1620678479743793 0.9876575486688007 0.17601770068878259 0.10014648420164883 0.5267764164590485 0.1311383670855211 0795 -python ../Main_earth_system.py $SLURM_NTASKS 1.9609690483500384 4.992852418446163 3.4442264414784454 4.348057776453172 0.11871421422482296 0.6097202372502163 0.47713352416154686 0.1018395510523984 0.11248137141743705 0.5550603131388496 0.32517952757492996 0796 -python ../Main_earth_system.py $SLURM_NTASKS 2.661088399037525 4.311405698746885 1.6018581635771052 4.215328450262822 0.10717525105686848 0.24885248866459042 0.5049056694622597 0.14931925909580773 0.13826879530418124 0.5154402349862942 0.27803778272607377 0797 -python ../Main_earth_system.py $SLURM_NTASKS 1.383897382266646 5.261355587917741 4.6338456770779795 4.4543344793037045 0.11373579283844149 0.7765794979770163 0.18561003140172186 0.21213153865086548 0.12404575180108471 0.457993588892607 0.2724227341816601 0798 -python ../Main_earth_system.py $SLURM_NTASKS 2.299346512088972 5.514098411759697 3.802450130020694 3.7503687872689095 0.17787781956608775 0.15135259104879176 0.8435604766256753 0.1504344965655659 0.10687198465402105 0.6549419776149908 0.22823011718978972 0799 -python ../Main_earth_system.py $SLURM_NTASKS 0.877285198387261 5.554223054463898 3.131010716735087 3.669797323856276 0.1458668260583054 0.32807107729708107 0.7060494767668798 0.205102979478121 0.10091753060360988 0.5259975984548619 0.12115461896732925 0800 -python ../Main_earth_system.py $SLURM_NTASKS 1.9390217239105212 4.922616425776305 0.9793890219747181 4.374925195374464 0.17214959885729392 0.7377044013580488 0.928370451138948 0.259548012970955 0.14287680926357066 0.600313938239111 0.1431465771587423 0801 -python ../Main_earth_system.py $SLURM_NTASKS 0.8629617634239006 5.612038081175981 1.8583684708943253 4.193863719138571 0.13289784302924396 0.3994268579639957 0.9662268559510817 0.2525301231321692 0.1490388389994168 0.23269422310299168 0.16498826955845233 0802 -python ../Main_earth_system.py $SLURM_NTASKS 2.0569512872911853 5.325030944840246 2.9273216609426242 4.088752024695422 0.12469743637079936 0.1423958326502536 0.3741691424933996 0.1095519824330849 0.12040659560620859 0.3070193201445801 0.13396918003927388 0803 -python ../Main_earth_system.py $SLURM_NTASKS 1.6123214274321074 4.2471456145652 2.9422794320428505 3.583451656985449 0.1754163094589846 0.5444736188715794 0.34959096896122493 0.1409738896763026 0.12226418785012423 0.40541782437727736 0.32094655480777684 0804 -python ../Main_earth_system.py $SLURM_NTASKS 1.1401201740401756 4.644233565502708 4.780502109889516 3.562420738556514 0.10739447084647646 0.3461936154977363 0.9293675613979951 0.14157364475094142 0.14840101429477795 0.9540701506136708 0.3026179575523598 0805 -python ../Main_earth_system.py $SLURM_NTASKS 2.917907367737259 4.597031672922161 3.0836813876499827 3.5959460375429315 0.18370082240920832 0.44087420817754897 0.9037740971167686 0.27226158411647705 0.14539815833097866 0.9073696923818477 0.30060692009684525 0806 -python ../Main_earth_system.py $SLURM_NTASKS 2.486694520520821 4.178021679118226 1.3578032881108641 3.94532703201647 0.15270292971643143 0.8949124359120875 0.9031982079847245 0.1246429061647532 0.10046745014884846 0.4538566053616202 0.22118158358384316 0807 -python ../Main_earth_system.py $SLURM_NTASKS 3.148216465420031 3.9848696660336005 5.263530311465624 4.094365733223912 0.18501350781642628 0.6285756661678391 0.4933440092235747 0.2704508707674276 0.13643372399107329 0.4797730687646179 0.1683618536354501 0808 -python ../Main_earth_system.py $SLURM_NTASKS 1.9084930511644402 4.4157077124010105 1.4418834139777634 4.424869683634001 0.12392746270009294 0.8319589902934177 0.6122672334638479 0.2568953597816722 0.144672762570076 0.9320360768059346 0.36059229648790325 0809 -python ../Main_earth_system.py $SLURM_NTASKS 0.8509111289815813 3.5970663785077215 3.3533986980271706 3.8643133283396227 0.161642212881119 0.5696438101589709 0.5062500549920693 0.19692517186806008 0.11229400021967871 0.5667353753930513 0.29358735614646897 0810 -python ../Main_earth_system.py $SLURM_NTASKS 1.8327979977056745 4.018082823161177 4.439214057370904 3.653800751945569 0.1427146011965487 0.1477487433659896 0.20645457085095073 0.27762080158038466 0.13031904809223388 0.14832812606286763 0.12090625353464068 0811 -python ../Main_earth_system.py $SLURM_NTASKS 2.586064070588879 3.7124757027472484 2.496889049620596 4.456421321170112 0.1512043704693359 0.18798218257404528 0.1449867512821114 0.2162206492583298 0.10915473593435163 0.20382563884253185 0.1607416487503231 0812 -python ../Main_earth_system.py $SLURM_NTASKS 2.2688502999682125 4.430211077061305 1.30601752558198 3.845074486952314 0.10585292603628943 0.8309660380748654 0.5664018753130549 0.21260139900123043 0.13064275076717136 0.7860367092566496 0.16628847794133345 0813 -python ../Main_earth_system.py $SLURM_NTASKS 0.891915346668058 5.7461988745558585 1.3668402784750007 4.18133023143024 0.19168829142275823 0.13572318526232177 0.4123786414959765 0.21889731716790733 0.13201087653985158 0.38771896381106163 0.10915258884623505 0814 -python ../Main_earth_system.py $SLURM_NTASKS 2.4276851363581327 5.3422090235939255 3.5909124861609527 3.742273479453349 0.1825964528753859 0.3473453973750073 0.7738312781334707 0.1511823471189938 0.13208812160153088 0.41601634906710405 0.3215308010689265 0815 -python ../Main_earth_system.py $SLURM_NTASKS 2.031511648684457 5.169468530387553 3.8364153813153337 3.544383126568929 0.1961457476251339 0.5843005218873066 0.344478999775801 0.19067313082220927 0.13524901108117185 0.5480837466876259 0.11928204868777692 0816 -python ../Main_earth_system.py $SLURM_NTASKS 1.4209828300011704 5.841574050305798 3.3125184036216577 3.605982701712391 0.15392361088222015 0.668174498340836 0.21054083688314984 0.15638049755999503 0.13759638338972485 0.383058496672976 0.3411465872563266 0817 -python ../Main_earth_system.py $SLURM_NTASKS 1.2976606508438522 3.9396770204648517 4.8645476415877384 4.346343996119893 0.11688329014098865 0.41406802104668483 0.15233533900408552 0.13389819547963278 0.14553258586096496 0.14586903257819744 0.144579535112724 0818 -python ../Main_earth_system.py $SLURM_NTASKS 1.6548846662354117 5.2731237672233835 3.65780480808726 3.5368510939338926 0.18332041153411197 0.2347663238156871 0.3832240617108663 0.18061644943876914 0.13781970576934874 0.373277878105266 0.35028723947165064 0819 -python ../Main_earth_system.py $SLURM_NTASKS 1.122524331185461 4.609692860815928 5.072077548643499 4.147037744828458 0.17436037968439025 0.40041762368468026 0.9194507476862467 0.16987055311783827 0.13446989197262177 0.18896406986269482 0.11550713674030985 0820 -python ../Main_earth_system.py $SLURM_NTASKS 2.957566304015187 4.465408750946695 0.9420472698853246 3.660325736477508 0.1297416925221591 0.35159202051539107 0.4918126515751683 0.28815419865934666 0.13379783040377546 0.8370472708289591 0.3818471663750367 0821 -python ../Main_earth_system.py $SLURM_NTASKS 2.592270339599461 3.7904324273437355 4.014274340970045 3.5017755510580093 0.19662358716179282 0.36734051361111075 0.9390818085846304 0.17294744219297287 0.14940295408465226 0.6677370985259157 0.3390697524852716 0822 -python ../Main_earth_system.py $SLURM_NTASKS 2.3843626056958027 5.8741917631273175 2.490751942640868 3.9142320664601176 0.16963743776188783 0.1977611443941511 0.25611746355653475 0.11984901866623965 0.1270198230780672 0.2830343232180335 0.14941986599422588 0823 -python ../Main_earth_system.py $SLURM_NTASKS 1.6876243649874465 4.291017651519208 4.9204081552380075 4.3275783968469765 0.1301247883595486 0.9128197309241194 0.8126686713768556 0.21028083999961641 0.14046236658705313 0.12925476202721373 0.14359492485451378 0824 -python ../Main_earth_system.py $SLURM_NTASKS 2.7056483708217867 4.158938672199587 2.707169780021535 4.152107422712022 0.19191522647054418 0.37668807674286453 0.35905952636399774 0.11454715069096409 0.10267471565842053 0.4801480850608514 0.15564180427917088 0825 -python ../Main_earth_system.py $SLURM_NTASKS 2.4933679579303467 4.28878484778989 3.385041225099651 3.659554499016113 0.12213697320105348 0.8577838573908152 0.22557793354307837 0.16198668692087026 0.14084700146760434 0.7833818108406366 0.34701976784051125 0826 -python ../Main_earth_system.py $SLURM_NTASKS 1.0853472752197617 5.825636192753218 2.465925974789262 4.017872977710591 0.196061894474053 0.3002018020249915 0.33474739795605224 0.11011992746257 0.11048909917192945 0.4228855284840116 0.17107880610830273 0827 -python ../Main_earth_system.py $SLURM_NTASKS 2.2456164638155185 5.235270076834009 2.0383352955329017 3.663479442029261 0.19247233264682043 0.6110430646742017 0.9323917353609638 0.10763358826003243 0.11995748117693003 0.704687990592153 0.2676349251623962 0828 -python ../Main_earth_system.py $SLURM_NTASKS 1.1877131314107576 5.904215156804084 5.1139271806882265 3.842735957162316 0.14436245942227077 0.280210766838661 0.8532129298312762 0.12163500270996791 0.10112102159020224 0.6119113884923331 0.31464262574301194 0829 -python ../Main_earth_system.py $SLURM_NTASKS 2.6791832488188234 4.697459573715339 2.0462701259851186 3.6835863470855843 0.19726993015136146 0.8771260532432692 0.29235078061406267 0.1543933797340899 0.11364443705176283 0.4919325266281128 0.1910209032126307 0830 -python ../Main_earth_system.py $SLURM_NTASKS 2.923714735276861 4.633463524166647 2.9687894511256907 3.7257418055727802 0.16879811365373323 0.6805890845100833 0.2146974201658129 0.2468090569819785 0.1291943793935687 0.28925326833512066 0.11369108167765365 0831 -python ../Main_earth_system.py $SLURM_NTASKS 3.082794174977912 3.9528126821648693 1.4773967605443379 4.403759634864504 0.14033488537919375 0.5078580830723614 0.44878482271305964 0.2284027801703097 0.12220694592226022 0.13816921681993263 0.32271684096999276 0832 -python ../Main_earth_system.py $SLURM_NTASKS 1.373996968395344 4.230624372417409 1.311440373680366 3.592088057255294 0.1522629902570684 0.7911164920497197 0.376645105729554 0.21598727563807857 0.14143222651595466 0.5734538783079521 0.2710564984267827 0833 -python ../Main_earth_system.py $SLURM_NTASKS 2.3581846885530044 4.408569457860338 1.4851866942213343 3.9697218362198727 0.12613939610734784 0.49162913043765655 0.346220157833544 0.19976088717120988 0.12991037407096306 0.5375863542893305 0.3927298818692885 0834 -python ../Main_earth_system.py $SLURM_NTASKS 1.3809207233276712 3.824963205766435 3.986911600935418 4.336933856095283 0.19172418408491165 0.46238010400922214 0.17388856353804513 0.11620974944167187 0.10823599518300865 0.8150679656259993 0.3424138551513662 0835 -python ../Main_earth_system.py $SLURM_NTASKS 1.3721244161010389 5.578858752953398 1.2109708729041917 3.861428495345109 0.18578087049537073 0.7777986722469938 0.5757566454882441 0.17251906334273753 0.11587095149474166 0.17519249175209523 0.3938450282417374 0836 -python ../Main_earth_system.py $SLURM_NTASKS 0.960777960598006 4.79286825013189 1.6286962933692526 3.9235426816430645 0.17050616935365578 0.5498044063989568 0.7408237248321136 0.1358398083712634 0.11719795501732803 0.3816420286130239 0.39249109978710994 0837 -python ../Main_earth_system.py $SLURM_NTASKS 1.3002254694924151 5.132581106322121 3.3417592455752487 3.5565720874907574 0.15594192358274017 0.9611926170283379 0.7380328378000683 0.2787247159998629 0.10833676860258137 0.5127479244275099 0.26310301887900966 0838 -python ../Main_earth_system.py $SLURM_NTASKS 2.6426878973037953 5.347273783100252 4.445960353531181 3.792652758426114 0.16444708598148408 0.26783954160211243 0.7016642864771382 0.19287109359937327 0.11462208458060628 0.44692665084048266 0.22781676576438545 0839 -python ../Main_earth_system.py $SLURM_NTASKS 2.2281046722212774 5.908223845368255 4.690273896590272 3.907008918262219 0.156400835406053 0.5038123030258742 0.45792168469080696 0.19836092220943852 0.12158779567077077 0.7435029306968252 0.37617042909814846 0840 -python ../Main_earth_system.py $SLURM_NTASKS 1.9622268922977633 3.724658702173645 1.0671418470337999 3.7840102149816395 0.1491100936136982 0.46782809975152384 0.9273669095696413 0.16294974524509015 0.12971420126423316 0.29164463108577954 0.11841690409311599 0841 -python ../Main_earth_system.py $SLURM_NTASKS 2.480635660476307 3.9862857229920876 4.914744560629527 4.186483398552899 0.14687678358550454 0.2535937767826456 0.20745268554049615 0.1140384689409763 0.11633495777678438 0.5563644371573543 0.3274250973895372 0842 -python ../Main_earth_system.py $SLURM_NTASKS 1.6086623151466686 4.150874473047019 1.597948427656368 3.6866839954495747 0.143329488747891 0.5840867932893503 0.5108042720519539 0.23919291070653417 0.14216401996075462 0.6307992938452875 0.14391455522409052 0843 -python ../Main_earth_system.py $SLURM_NTASKS 2.4627657104692027 4.454261154463855 2.2085609220261917 3.755224509466144 0.16015405858327322 0.3088212875919804 0.3528552744271015 0.16696651913663052 0.10008434750518709 0.9233691103943047 0.23373410360581887 0844 -python ../Main_earth_system.py $SLURM_NTASKS 1.9733846080417028 3.506763898591046 1.0012764600475343 3.6782073781759164 0.13393529019621703 0.12583646380347271 0.7400852422123846 0.14401328842110275 0.12186327964034466 0.6508024353590004 0.1882401167655388 0845 -python ../Main_earth_system.py $SLURM_NTASKS 1.0442884717352598 4.536394105919067 5.420847883035417 3.8621773485820334 0.16863169971338676 0.599171503041457 0.16358895737872167 0.24835152787362602 0.11133661863243971 0.6239043206148506 0.3898577408342434 0846 -python ../Main_earth_system.py $SLURM_NTASKS 1.0504135767731557 3.57264528543117 3.5502822052743808 3.552779724283396 0.15374384507771588 0.12811425697975476 0.18463856990617544 0.15243648864048004 0.14778288218127106 0.3767759044828486 0.13349846607481064 0847 -python ../Main_earth_system.py $SLURM_NTASKS 2.1952432833306403 4.114066006763007 4.958695134406752 4.338615923514983 0.17007735570173366 0.4888146858474449 0.6543888195419828 0.24027284460172016 0.13936066440292139 0.5388568724849943 0.33668569527947845 0848 -python ../Main_earth_system.py $SLURM_NTASKS 2.7887579668730766 5.5088399727459425 2.155373704156082 3.964353359286271 0.1365806468122935 0.49245825121240316 0.11108689814236879 0.23501830743197075 0.14868572553850795 0.23443943645944415 0.15721519191377442 0849 -python ../Main_earth_system.py $SLURM_NTASKS 1.9053716456596774 4.149032347495362 3.686991882492758 4.110326997808887 0.10610356319253898 0.7589835309687666 0.7553748046914723 0.28682357690605664 0.10616152941586897 0.4029802919350014 0.23512537679564446 0850 -python ../Main_earth_system.py $SLURM_NTASKS 1.891949358843915 4.68929614055796 2.880470853251194 4.258735707237063 0.1920712634922317 0.6466464077779113 0.47091470027012605 0.1315347269557476 0.13406543663317327 0.7193998547741856 0.2991776991044298 0851 -python ../Main_earth_system.py $SLURM_NTASKS 2.02780286738206 5.334419671157285 2.6639014322017616 4.288307712014017 0.11815098868788225 0.1163915329594668 0.694946199028027 0.1844473479330449 0.13948163686079412 0.24445943371405537 0.2727592502462175 0852 -python ../Main_earth_system.py $SLURM_NTASKS 3.1572729128508694 4.497605920385223 4.526853591887686 4.18238959292017 0.11203823472784458 0.6428873689554614 0.32551082863621184 0.1583535070119733 0.1316046400023548 0.5146933201439116 0.25601052960761866 0853 -python ../Main_earth_system.py $SLURM_NTASKS 2.8880750786920695 3.715197677079602 4.204153936145095 3.7380744383205897 0.18960310659857027 0.6254999339179648 0.9912842605074438 0.29321861613604916 0.12347364333402538 0.40708998310110023 0.312043163698696 0854 -python ../Main_earth_system.py $SLURM_NTASKS 2.768850765423765 3.8865814122571614 3.862719861660638 4.089514057717061 0.14259784577628543 0.6822965003108398 0.30447010677359265 0.1893990024221323 0.1256236234205272 0.8496018118071794 0.34628097264227325 0855 -python ../Main_earth_system.py $SLURM_NTASKS 1.5262231852735337 5.629240114510086 5.394877059771499 4.204980893622325 0.12604905052608792 0.893157199516535 0.11367631828443929 0.23365313802810353 0.10570460812778998 0.5072195887694323 0.3825897374387246 0856 -python ../Main_earth_system.py $SLURM_NTASKS 2.4447655088451197 5.757527193256678 1.2355356595734162 4.133628952244534 0.17681652760024105 0.8175217863090111 0.5183713389451841 0.18174436071092162 0.14793699924544362 0.7709470428991899 0.2016609630177107 0857 -python ../Main_earth_system.py $SLURM_NTASKS 1.735397709715544 5.19558676889344 2.1614634477524186 4.17012918477621 0.12856186312535486 0.35908496673562773 0.5576123577852472 0.14632674253334513 0.11769169007934874 0.626611308075471 0.30707428338791765 0858 -python ../Main_earth_system.py $SLURM_NTASKS 2.7507395603392455 5.7895246013685115 4.858410309318327 3.953600289618416 0.14153151756909355 0.5970047333640702 0.6323320057069396 0.1908747184602288 0.125226066257681 0.2956764609882786 0.33557017568400427 0859 -python ../Main_earth_system.py $SLURM_NTASKS 1.6507611134720612 4.3452952165220395 1.4343177004855177 3.9761521775492077 0.19948150848506874 0.3577443077700465 0.9826648995687489 0.15018705016685183 0.1343824285015387 0.23032450429903759 0.30428133443592786 0860 -python ../Main_earth_system.py $SLURM_NTASKS 2.8587258873279486 4.0491617205608605 2.561735175668458 3.541735760513427 0.13635837637707143 0.933866253014784 0.3010210753878919 0.1990480048819171 0.10443491693310399 0.7049479439814734 0.2091069674677591 0861 -python ../Main_earth_system.py $SLURM_NTASKS 1.00752105544905 4.646666316875322 3.3007069051137066 4.207994267724558 0.1599403166737725 0.15460710570196554 0.5892818588393391 0.2427160046216144 0.14158567784060916 0.5882085405218878 0.2235300748161637 0862 -python ../Main_earth_system.py $SLURM_NTASKS 1.9257047607025581 4.947997764423917 2.240806799687996 4.47469676154975 0.1890432794819423 0.9277345410463628 0.3536254834243494 0.18982548343227054 0.12512359663185427 0.6637404350917439 0.15952140883101318 0863 -python ../Main_earth_system.py $SLURM_NTASKS 1.080936762449163 5.230467785872565 3.4971653186861884 3.834949378623957 0.16647332126621775 0.93724777187657 0.37564218370946845 0.20958939960262996 0.10314249612792648 0.5304115967803237 0.17533091224458974 0864 -python ../Main_earth_system.py $SLURM_NTASKS 2.646330641988432 4.386068734478634 1.8208118294123679 3.6952661825503275 0.1276751227308684 0.46934674051300673 0.7218198063909925 0.24859033670352387 0.1241279656218088 0.5111879796018662 0.23781963830191213 0865 -python ../Main_earth_system.py $SLURM_NTASKS 1.740124731856245 5.716347969009699 1.993150435524073 3.9083599830246123 0.11728065824408682 0.3845803375578253 0.18867082779204486 0.24314456029535325 0.12716196945049604 0.6350376580580189 0.3073419721473186 0866 -python ../Main_earth_system.py $SLURM_NTASKS 1.3450436075406444 5.997568667940392 3.508323245223858 3.735853569940515 0.138854676740523 0.19176557654412058 0.43920176984036974 0.28542056822406126 0.12745761503060044 0.21845884563007487 0.3455056791466319 0867 -python ../Main_earth_system.py $SLURM_NTASKS 1.095555423786534 5.541048102227679 1.4583566694467383 4.308698608481189 0.186186803703763 0.8861901447162885 0.756478915525861 0.29553277478289935 0.12450346439563889 0.3589804734160883 0.10670231059254752 0868 -python ../Main_earth_system.py $SLURM_NTASKS 2.243288969690071 5.808643759994051 4.033159715394578 4.1501682142632 0.14524281066026457 0.16981637326117405 0.32434820227665767 0.16842328692979947 0.11341551389162534 0.4423954284210867 0.30490417374221046 0869 -python ../Main_earth_system.py $SLURM_NTASKS 0.9968192782059815 4.348711007920461 1.2545609795097836 3.6763979150363397 0.1666626052112548 0.8500726179810909 0.6285915992746637 0.188420253448496 0.13665018612267943 0.8301753790447521 0.34684115466580984 0870 -python ../Main_earth_system.py $SLURM_NTASKS 0.8213751261940603 3.8041108170371873 4.665896012383663 3.5549865364212403 0.1695270619707792 0.7428564722836493 0.12452171407910663 0.22031200299441417 0.11955627262720842 0.9374752960663639 0.2956406312197989 0871 -python ../Main_earth_system.py $SLURM_NTASKS 1.0669437723118762 4.380823726686609 4.064111553229266 4.49737750484188 0.18921689984334533 0.4501457708544815 0.8921117173232703 0.146794705028371 0.11270722590068659 0.500891206215125 0.34573819073667245 0872 -python ../Main_earth_system.py $SLURM_NTASKS 0.9920137172752386 5.790473305057727 3.545666151067855 4.145807901740786 0.18785192545467658 0.805766658804209 0.7663571951200873 0.1743478447523361 0.1294767385207507 0.5703187475444131 0.1505988977699405 0873 -python ../Main_earth_system.py $SLURM_NTASKS 1.5518856950785036 4.629090338345069 1.006358650501456 3.6080961863456102 0.17917848683906512 0.7549866751912856 0.7834463877171648 0.1952972344005398 0.11794530489579831 0.6618596847854932 0.3094547883370091 0874 -python ../Main_earth_system.py $SLURM_NTASKS 1.6150753774029591 5.702036230101477 1.729710913971794 4.399160499487868 0.11277031473562095 0.5628203220694723 0.34813886947978634 0.20203218578785748 0.14258200487986972 0.21736105917701998 0.3478149247806287 0875 -python ../Main_earth_system.py $SLURM_NTASKS 1.4992745234181695 4.74439137114666 5.199271329148369 4.069281577557237 0.1922174060300579 0.9389514696468354 0.8154997779960655 0.18157723385104851 0.10185653060450721 0.43650553662644553 0.21047109264924993 0876 -python ../Main_earth_system.py $SLURM_NTASKS 3.0419939240299723 4.399473633069815 3.933319927718955 3.7580207442357296 0.13184177902399274 0.5811159079177237 0.9347888946770054 0.23530923539638016 0.10070003385444568 0.8590118709360572 0.2660436302131646 0877 -python ../Main_earth_system.py $SLURM_NTASKS 0.8108403109736343 5.17680637453998 4.096557540903132 3.9063656397941706 0.10791690911842951 0.23876193951912095 0.6546362327439852 0.24460543230210385 0.10449629782922183 0.36225719243255516 0.15614669195933906 0878 -python ../Main_earth_system.py $SLURM_NTASKS 2.4899122549281802 4.264373994293896 4.338119712099827 3.737323066012628 0.11626079909281102 0.39875340280792804 0.5998906476762403 0.10167353880024034 0.11106673676257557 0.9140072797458477 0.33506093131010606 0879 -python ../Main_earth_system.py $SLURM_NTASKS 1.6766748229095887 3.8377603256152932 2.4011880703676383 4.306097357491191 0.18215589300422608 0.9576352967487092 0.964168679149913 0.18355074102140195 0.13720702297049947 0.40843080230473294 0.22750787756702684 0880 -python ../Main_earth_system.py $SLURM_NTASKS 1.792706999409798 5.15907181358824 3.194305627109686 4.278471122859422 0.160501367926941 0.13167605925466863 0.6824400556058444 0.1573774546874328 0.13685232629248523 0.9690736813781503 0.1278708842547616 0881 -python ../Main_earth_system.py $SLURM_NTASKS 2.3247534229029294 5.098127293908395 2.4493764752381733 4.285728375984735 0.19518291940379162 0.7177074823202599 0.416547103301649 0.2592252145494015 0.10628852505420996 0.33347767727905087 0.3572863033827274 0882 -python ../Main_earth_system.py $SLURM_NTASKS 2.039909348415579 4.266881664909813 2.592778465323409 4.282150870092164 0.13294231045053123 0.331099582148183 0.8002142406814675 0.20413760329438418 0.14992247272834192 0.42689427311678785 0.18514784858686523 0883 -python ../Main_earth_system.py $SLURM_NTASKS 3.023162995770858 3.9566254173451076 1.4120891553512993 4.010341128694085 0.14352595711968152 0.34266035068762835 0.5150716102734147 0.1757934531621476 0.14095203156793357 0.5680422597977578 0.3269975418142224 0884 -python ../Main_earth_system.py $SLURM_NTASKS 2.1887613070950023 3.8758123162431346 1.7617824152601123 4.1890417931288075 0.1463787978732156 0.3722326331682575 0.6201733052744443 0.23066072588637604 0.13983316858394224 0.3146599409279178 0.37704763313036627 0885 -python ../Main_earth_system.py $SLURM_NTASKS 1.6103851523016974 4.241852070620849 0.9531297008793863 4.316498601605815 0.1392675702686571 0.4540597414355183 0.8730766860523175 0.14276432828799002 0.11128005616556066 0.34014305921990673 0.2051832630569577 0886 -python ../Main_earth_system.py $SLURM_NTASKS 1.4981477801757097 4.234853727414566 2.6188885766281436 4.165911844418195 0.16489011347868465 0.47424975350670784 0.6634499077151594 0.22589377063529914 0.12269078075446621 0.18512140124395027 0.12731838948883417 0887 -python ../Main_earth_system.py $SLURM_NTASKS 2.460719905493346 5.122903625664335 4.762828859348431 4.468105433286654 0.1563696852335332 0.21277601735363916 0.24624483936778474 0.15784230263615412 0.14388997614292148 0.9114399671219575 0.14770105513154722 0888 -python ../Main_earth_system.py $SLURM_NTASKS 2.539724485659586 3.8091473218474423 3.3057033794869044 4.393347088050715 0.146631376752083 0.21485899591554414 0.3270280079866158 0.20303238443665483 0.1042575826498347 0.36285808473938297 0.20983622701723081 0889 -python ../Main_earth_system.py $SLURM_NTASKS 1.8385290811387989 4.422410802391896 4.936167146749341 3.7156854483212634 0.18910891985818795 0.5635066284367323 0.6882050548621936 0.2550725214019406 0.10296244620745393 0.3271555114430703 0.25676577969624614 0890 -python ../Main_earth_system.py $SLURM_NTASKS 0.8877634273582455 5.558692610712515 3.097522620722854 3.7655561971832587 0.17200371783090318 0.2423942141640738 0.3945306115769275 0.18563661979491997 0.12986903018376347 0.7952965822748175 0.2518147348561332 0891 -python ../Main_earth_system.py $SLURM_NTASKS 2.1510614961736723 3.935801141745402 5.219251929998211 4.2168132738796835 0.19367448313809535 0.7669854112316029 0.8082874660787176 0.27465278289326467 0.1471753355205201 0.5717389413072614 0.12707667213719454 0892 -python ../Main_earth_system.py $SLURM_NTASKS 2.547402468538946 3.6174479955273964 2.1932193028651232 4.100565531975277 0.12890407213484534 0.18365151591064172 0.46131159734902727 0.12662049072228304 0.1399247316277194 0.11704776693715854 0.21354233405698786 0893 -python ../Main_earth_system.py $SLURM_NTASKS 1.0357000595495005 4.6175738219179845 3.851365380855704 3.7620554196832674 0.16826286791278272 0.9954902989199156 0.10999402123103415 0.14393080666550057 0.1306780545014108 0.8873939281945578 0.1893713761811569 0894 -python ../Main_earth_system.py $SLURM_NTASKS 0.97595131138642 3.811094311218032 4.244685955951698 4.341609277412624 0.10156839767954187 0.43299556842321585 0.10384478799305745 0.15755700420810953 0.11087147186414725 0.19011997398559743 0.3408628806757096 0895 -python ../Main_earth_system.py $SLURM_NTASKS 2.214349123778481 4.8835269193717785 4.495678820027048 3.8274684246758777 0.15918866445692484 0.5600643909215328 0.5394537471176363 0.2814588841833072 0.1099487771381035 0.5654148359526447 0.17670654926350876 0896 -python ../Main_earth_system.py $SLURM_NTASKS 2.834324353672957 4.046419492567843 3.8417577491135475 4.00799084658207 0.19289849391122332 0.8230692252596185 0.9725697862783835 0.2292655698467734 0.13659007511736126 0.1918163835674524 0.1658286515580384 0897 -python ../Main_earth_system.py $SLURM_NTASKS 1.6699982010140486 3.53906611428011 3.9412769678787116 4.225246278085718 0.13910700271379473 0.1017035001232534 0.3403156703292515 0.1191238469661482 0.11564015473244457 0.6163667375595301 0.21181638250021007 0898 -python ../Main_earth_system.py $SLURM_NTASKS 2.2922648439730846 4.540066498175257 4.570799300052262 3.589459365198529 0.1807652805908952 0.8980148327617651 0.6905651539581041 0.2827696636563304 0.1258501810726736 0.6479702073776795 0.22578392508998016 0899 -python ../Main_earth_system.py $SLURM_NTASKS 2.5100586683777357 4.5347865178673885 4.293566520530666 4.091807448596422 0.14939720909778473 0.42379512476733905 0.14110438700555897 0.15559454707037726 0.14694755224728018 0.7402306551506173 0.31103027118515514 0900 -python ../Main_earth_system.py $SLURM_NTASKS 2.45694638420008 5.69825803571906 1.516196516444501 3.8599022313899987 0.10396201120387819 0.8350725813946135 0.5361360908405259 0.26911399968982563 0.12354333964112546 0.2742201383536855 0.2733132946256063 0901 -python ../Main_earth_system.py $SLURM_NTASKS 1.7445278971374263 4.788449190452893 3.0376632356526967 3.9344640940188915 0.12436004410163598 0.14512158446068335 0.20886703595333234 0.17028333403377457 0.10301926915992206 0.2822708864016509 0.29013044589400144 0902 -python ../Main_earth_system.py $SLURM_NTASKS 2.773455472812584 3.569984983806724 5.25830627602219 4.257609739866828 0.17118382170366014 0.12063901198130673 0.15208478007221007 0.1826223881927523 0.137743955337916 0.42820722195718874 0.35066098769474285 0903 -python ../Main_earth_system.py $SLURM_NTASKS 2.8921530405375853 5.806294714602522 2.724008821099564 4.111300564999155 0.1885078527475355 0.6572035306407201 0.9834092537716346 0.2226008217674889 0.10147603454259677 0.754994347181261 0.3611927853443878 0904 -python ../Main_earth_system.py $SLURM_NTASKS 1.408781998105796 4.022400512153024 1.0376724637692367 4.138782805394171 0.18642644687721105 0.6613774927518404 0.30764181183449346 0.17200153403432084 0.12939029024639653 0.27256158582634377 0.22083420099099654 0905 -python ../Main_earth_system.py $SLURM_NTASKS 1.8576722222041488 5.4993100413010865 5.466143537650299 4.334248555966804 0.19963766250392523 0.2573557214411963 0.789696160308255 0.16354587921335687 0.11122053987219735 0.19130756415779515 0.14909588464043072 0906 -python ../Main_earth_system.py $SLURM_NTASKS 2.7556160541185584 4.200850829530508 5.231537711253379 3.9754971798512044 0.1872317300316314 0.7401893020493907 0.81142878476086 0.2638422915737385 0.10430011816046848 0.4619780246849451 0.3677850932964335 0907 -python ../Main_earth_system.py $SLURM_NTASKS 3.149751106920635 4.8926726564071945 3.7109222596235423 4.142741967619495 0.14164610459114224 0.1984835885994889 0.6248584838603581 0.1577848701937872 0.1452755116960813 0.7330756019566808 0.2653056600855339 0908 -python ../Main_earth_system.py $SLURM_NTASKS 0.9215068318008104 5.510471411147199 2.3389143615994783 3.60081151420951 0.15485771437125107 0.571181246659427 0.6225693693087839 0.295929748091508 0.12379351921369126 0.7492522351263088 0.10775739338369031 0909 -python ../Main_earth_system.py $SLURM_NTASKS 2.599431638187104 4.686158491064191 3.166368370704423 4.398662281078141 0.15304299214957756 0.7575483396935162 0.1256122605243473 0.2519315531955373 0.10133800697809937 0.25300994476312666 0.2554213974423616 0910 -python ../Main_earth_system.py $SLURM_NTASKS 3.0185423510724068 5.897928246503861 2.76418857680638 4.219547552359706 0.11699991007516747 0.8260307597057415 0.3324784513276313 0.2147813150896759 0.14881078201229006 0.522336046181608 0.1980339791278225 0911 -python ../Main_earth_system.py $SLURM_NTASKS 1.506820261459863 5.066485856526324 2.3172694786941452 4.387429696114845 0.14510945518739454 0.36427720308612765 0.30881438133242034 0.22217729971043843 0.11934857331125656 0.8382559944672052 0.1406270534499011 0912 -python ../Main_earth_system.py $SLURM_NTASKS 2.390201557415664 3.8051201356036817 5.29770236665773 3.511903634023921 0.19981860003348853 0.21591333986921635 0.95564821579316 0.14125614461545194 0.11485867457430016 0.8827439479861846 0.3254393674679986 0913 -python ../Main_earth_system.py $SLURM_NTASKS 1.5697746973397035 5.2000857577475506 3.145780480519993 4.476680272340947 0.17615448021765998 0.8454672418368262 0.634384416560327 0.19352057179117232 0.1341802771927453 0.6921556231841693 0.25130215652047155 0914 -python ../Main_earth_system.py $SLURM_NTASKS 3.1824767052134533 4.84640348030709 3.3630137347223066 4.3154131672211795 0.16903202235697262 0.8052084668131196 0.14984035059726547 0.24864737103729298 0.140585056591583 0.6828919444594284 0.24894239019353706 0915 -python ../Main_earth_system.py $SLURM_NTASKS 1.6945174998837031 5.621006923051324 3.3571198733256464 4.030993113655513 0.15979956544746401 0.2494540409757319 0.631298507909211 0.1161019495691142 0.13051101194868464 0.5574365136337016 0.28558677266156823 0916 -python ../Main_earth_system.py $SLURM_NTASKS 1.3289380494147638 5.3232525713569405 5.471665286618333 4.070865339468213 0.16995288820373905 0.44444022924525084 0.27952331342621184 0.12744305054238925 0.10488121338747498 0.943234273511439 0.16955882586152146 0917 -python ../Main_earth_system.py $SLURM_NTASKS 2.3740389710430883 5.872206474899441 3.7882960087157755 4.352485766828363 0.15920445006172287 0.164118950042413 0.4867909773237835 0.14992090258644533 0.13079710548272508 0.8118255007867763 0.22445367615870915 0918 -python ../Main_earth_system.py $SLURM_NTASKS 2.9550187003463098 5.645667600502067 1.9843972146720816 4.109196480583607 0.19481766481554275 0.4725874012253909 0.320228309267263 0.2461997862116954 0.10878662467965752 0.4287198239708149 0.2308653042453048 0919 -python ../Main_earth_system.py $SLURM_NTASKS 2.6484542022514628 5.361016037205982 4.883822137108593 4.205125478858771 0.10302495971881526 0.45528515334182407 0.18337385456026872 0.2907543231772473 0.13484210222836152 0.505755289016419 0.3524240752857576 0920 -python ../Main_earth_system.py $SLURM_NTASKS 1.6164623688295467 4.295445599029324 1.8669609887815934 3.9930383055072225 0.1653598048244485 0.4205866034480228 0.7297609961590822 0.29671257385860905 0.11901090897280614 0.7175503935340197 0.29079100092773114 0921 -python ../Main_earth_system.py $SLURM_NTASKS 3.0772821932321532 4.338375846238463 2.7657330138458507 3.9574092946157284 0.10219258019996605 0.2652825226162087 0.12380294227853296 0.2711578216629834 0.10350391724862384 0.48260035124234923 0.17740243172620565 0922 -python ../Main_earth_system.py $SLURM_NTASKS 2.317043889621627 4.792271121768482 5.0014122658520614 3.853197506893895 0.10754966268763862 0.9777938657099006 0.3163043945060873 0.10584414088580246 0.1216398149711291 0.78068657619623 0.2504279153425062 0923 -python ../Main_earth_system.py $SLURM_NTASKS 1.6401687392571813 3.887717915492771 1.1619999006477344 3.8677771092504285 0.1731216447409461 0.12707060741101361 0.3061248826846749 0.1033623648026022 0.10377181098900778 0.38067255254403387 0.35879675798083877 0924 -python ../Main_earth_system.py $SLURM_NTASKS 1.710694537385276 5.166507440700112 3.9954524044995186 3.5507591503986315 0.1949274048819525 0.8708638631235773 0.5788749068896513 0.21486723109578088 0.14544829316071084 0.5955393698729042 0.36560560314753643 0925 -python ../Main_earth_system.py $SLURM_NTASKS 0.9878448612249714 4.778009135987903 1.4059588880534808 4.253704249983158 0.12296078716373193 0.9213675041914157 0.7578740703391801 0.10788052747275201 0.14379139530424576 0.15622603400698773 0.3800894937632522 0926 -python ../Main_earth_system.py $SLURM_NTASKS 2.9341183892535874 5.453598331083177 4.819015702741448 3.705077753431146 0.10685292492732282 0.2722576926504412 0.9896177075889925 0.2713887630484171 0.14585047486682384 0.6206650169709732 0.15087783217703846 0927 -python ../Main_earth_system.py $SLURM_NTASKS 2.069639821650507 5.064512639034303 1.3861374669591007 3.9903798894218068 0.1503191814516902 0.5725417773596141 0.40791671171188026 0.27953861094907495 0.12599529928847775 0.8574374667589858 0.22713656010311634 0928 -python ../Main_earth_system.py $SLURM_NTASKS 2.4522425176038016 4.070328360824966 2.1152211742572664 4.233633559953119 0.12226758079464933 0.605859052787667 0.4723537793975656 0.19312087270363087 0.11978955313555062 0.9437250752757007 0.22866098204008745 0929 -python ../Main_earth_system.py $SLURM_NTASKS 1.718028759037715 3.500726690794184 4.367695417428734 4.1606850647259765 0.11705749081695864 0.721366378786846 0.3787144983142915 0.1481070412245197 0.13876924616580308 0.592020105994477 0.2585989236852454 0930 -python ../Main_earth_system.py $SLURM_NTASKS 2.0902794632661 4.973407614520238 3.7209190152196756 3.881185233919387 0.13740564053586207 0.7992176354916672 0.2516064434012031 0.1693381740018853 0.14436462538006514 0.9284064474817595 0.23538328496684985 0931 -python ../Main_earth_system.py $SLURM_NTASKS 2.392369082747618 5.142932313200131 4.138490198389855 4.044531830604997 0.10515493567647186 0.44953536432903285 0.6796388984887446 0.2882266214588764 0.10711552956076256 0.8076800782302832 0.18290026960843342 0932 -python ../Main_earth_system.py $SLURM_NTASKS 3.1128666669044707 4.132353661658824 2.635669871141415 4.002030139273944 0.15727686391590792 0.567799664866296 0.15949943705226366 0.25282118846508017 0.10457615365837387 0.449194398275092 0.26517247179644454 0933 -python ../Main_earth_system.py $SLURM_NTASKS 2.258134213769159 5.293648835686406 3.024859107982806 4.185106177949981 0.13662661217403474 0.4173141089888529 0.44695531042618997 0.2635921464558112 0.14164795968456872 0.18330623275440694 0.1347105502164605 0934 -python ../Main_earth_system.py $SLURM_NTASKS 1.645978091615861 4.698971376824897 0.8133909490702503 3.8011447132704737 0.1361587501918498 0.3228348042728672 0.28802115485118474 0.10910987270647086 0.1289758720525233 0.35458587515007156 0.2777249341646968 0935 -python ../Main_earth_system.py $SLURM_NTASKS 2.005629493924533 4.753237036298401 2.8977514464876117 3.631365600345405 0.130870040950636 0.6475638855338934 0.7627047001259212 0.18863740657029293 0.13512489006144035 0.44426519940015896 0.2979223361129963 0936 -python ../Main_earth_system.py $SLURM_NTASKS 2.078197100211408 4.188335142762037 3.639476060609466 4.045577160065772 0.15606834989676824 0.820446262877282 0.8463027899507731 0.1547059883696053 0.1445953047367111 0.8106703074065089 0.1085625978502452 0937 -python ../Main_earth_system.py $SLURM_NTASKS 2.0141650821724353 5.592193606751577 2.583007406403992 3.78161492885272 0.18107663723898385 0.6355744465440994 0.8547909741611317 0.24645010648716073 0.14743445555341497 0.452777302771845 0.31420394728965473 0938 -python ../Main_earth_system.py $SLURM_NTASKS 2.39685073584653 3.6814501957998536 2.170673323847603 4.4353947714340345 0.18487111950834167 0.2030856245468768 0.7178435937628755 0.2346012808382244 0.12741642642074139 0.12081464879297882 0.2200297241945387 0939 -python ../Main_earth_system.py $SLURM_NTASKS 3.0482756335065044 5.692789048715721 4.296927351471223 3.9392217589233596 0.1404580420212761 0.9161635426693627 0.9509327375671741 0.24736052295185976 0.10663691602544727 0.23407021356131674 0.38917046270942945 0940 -python ../Main_earth_system.py $SLURM_NTASKS 2.977903389230449 5.136820125652604 0.806502885069422 4.104643733921187 0.15003496419065498 0.853304577444016 0.49918094311574923 0.12315816430500012 0.11919032597399098 0.6447284980205896 0.3282944520591861 0941 -python ../Main_earth_system.py $SLURM_NTASKS 3.106587450355698 4.005998919192236 3.4291294323979242 3.507569701914235 0.16218594324820723 0.7358382989649654 0.16739369184130826 0.13213647074758644 0.13275787878021963 0.47678936132028793 0.2758099984922671 0942 -python ../Main_earth_system.py $SLURM_NTASKS 1.4312673830841953 4.7389040166471705 3.488848156948647 3.5843754709558016 0.1460762373873094 0.9734582460420868 0.3304003773556704 0.16329308134186118 0.10960313058903338 0.34922177499773155 0.2915208714625856 0943 -python ../Main_earth_system.py $SLURM_NTASKS 1.3141548159858951 3.7213599863664113 1.8861095111750075 4.176091319601182 0.11619212030004816 0.6126722353888631 0.7141131469605868 0.10055264319075186 0.11526625784038652 0.8413452543397089 0.38042101110397986 0944 -python ../Main_earth_system.py $SLURM_NTASKS 0.996148303523144 4.621838178214293 4.375402075032319 4.20285065390606 0.10275252413168973 0.903228840749853 0.7582055978668685 0.10355031075737534 0.10294230781860904 0.5393057234301437 0.17907277705952301 0945 -python ../Main_earth_system.py $SLURM_NTASKS 1.2227272907718696 5.180092308073389 3.9752485794060997 3.599730065830088 0.164363209084596 0.9126724457087281 0.38459629973276865 0.15072096975145105 0.12193055126097792 0.6373665977391267 0.2553684685377281 0946 -python ../Main_earth_system.py $SLURM_NTASKS 2.744646384930654 5.675522696544387 1.9738658336278052 4.275882411551936 0.16807131514523815 0.378939938161006 0.6279663584744678 0.2970408823777766 0.14949645522960697 0.29639884711558373 0.17190938032273595 0947 -python ../Main_earth_system.py $SLURM_NTASKS 2.352816969545892 4.355060027805576 0.9196447740241369 3.50425923014539 0.18193923014777336 0.4599463376590466 0.3019948082327788 0.10368925442669896 0.14997311473508718 0.1893404994076217 0.3520777214748593 0948 -python ../Main_earth_system.py $SLURM_NTASKS 1.809020868936714 5.040568477566236 3.650611372373201 3.717199244360862 0.1580982768323796 0.7726022916134397 0.23649192657762202 0.28765039493259736 0.12000983242170632 0.21481513490265247 0.23112824923167258 0949 -python ../Main_earth_system.py $SLURM_NTASKS 2.34279781193976 4.917284542311466 1.9874852083456236 3.5233285029862933 0.19133582196790483 0.6932132448565287 0.7249631655874116 0.1009484211222558 0.1250479938990233 0.20989479231213382 0.3607758752648125 0950 -python ../Main_earth_system.py $SLURM_NTASKS 1.3956093929984035 4.918190952375152 0.8312683162407951 4.173459881017363 0.12373541280418467 0.5214177440503937 0.5121625953033492 0.21128100657377796 0.13241205615637086 0.9168784066645153 0.37395198114721206 0951 -python ../Main_earth_system.py $SLURM_NTASKS 1.074048253311326 5.638062722246238 3.060892021841328 3.8898324368527613 0.18664107395036317 0.5516827110357941 0.6777027539118803 0.18186481329005544 0.12883826392641004 0.39372323596299963 0.3420288252153471 0952 -python ../Main_earth_system.py $SLURM_NTASKS 2.466120943349819 4.905839406253722 1.4484275299961165 3.863800083987085 0.1738603113430554 0.30309714185348235 0.13664614566985325 0.12026014310585031 0.1462977226669328 0.9264048054011444 0.1656578147030192 0953 -python ../Main_earth_system.py $SLURM_NTASKS 1.9329076219700245 4.034233116566133 0.9857907911258601 3.933663458698446 0.11773665282034416 0.10203860800898494 0.24396541670047103 0.17739863997474514 0.1075627486644632 0.619018932972322 0.37092669062353545 0954 -python ../Main_earth_system.py $SLURM_NTASKS 2.51225064145145 5.58995471516503 3.4718915245906476 4.448616986610695 0.14715027634070715 0.5778358504504627 0.6669549829217161 0.2852642841237697 0.11993118937595826 0.2312362714961513 0.13788917017902985 0955 -python ../Main_earth_system.py $SLURM_NTASKS 2.398715125671609 5.878311515457289 2.698423487277501 3.768468183245644 0.10999750756981123 0.7093005403978946 0.8448347173588626 0.263655191945853 0.14515708272380468 0.49602595319581566 0.2767029664640883 0956 -python ../Main_earth_system.py $SLURM_NTASKS 1.757636373956724 5.739822599669402 0.8386654298787014 4.024424188976586 0.1464558361745508 0.6562125971494991 0.8242571279143072 0.29960796203898654 0.12904933815990752 0.6607611577155409 0.2741720662638052 0957 -python ../Main_earth_system.py $SLURM_NTASKS 1.4774333639308042 3.857540912420893 4.747178406968702 4.124003513196147 0.1888774559024716 0.20387738219011456 0.5476311390079583 0.2433504522680887 0.12797664049429688 0.7789985706595217 0.18900527275740514 0958 -python ../Main_earth_system.py $SLURM_NTASKS 1.812294445260946 3.6718048563411685 3.6381002047968334 4.264820808102095 0.11883907549525186 0.7085887901012736 0.3960738570750454 0.23631726155507862 0.10165038419505854 0.9023646334000032 0.1840839288178974 0959 -python ../Main_earth_system.py $SLURM_NTASKS 2.997280636726356 5.501774290030443 2.827993291584252 3.9320737981555727 0.16039692575631664 0.11776313978896427 0.7842855682408475 0.1774460761866944 0.11839008106099476 0.9751404699062355 0.3748382084040741 0960 -python ../Main_earth_system.py $SLURM_NTASKS 1.6655406711845475 5.5284797375507875 4.969323165169588 4.061870872236402 0.13102607765742685 0.3528267776601294 0.11676315642670185 0.11164205332947788 0.1386969546396094 0.45625219914210313 0.3308272921842833 0961 -python ../Main_earth_system.py $SLURM_NTASKS 2.363561071900408 4.833350603391535 1.7785597833180584 4.079977198421956 0.13558563386107206 0.5500233829323755 0.6183292025856748 0.24126356398293805 0.14066463920390593 0.7668153554636747 0.18439630209922764 0962 -python ../Main_earth_system.py $SLURM_NTASKS 2.093243559536954 5.709214019783225 2.0844784093819295 3.522814308514323 0.12969250486751308 0.41208824622098816 0.41391238613764936 0.17790419700762333 0.13266484775790705 0.603655032810677 0.3704190033432565 0963 -python ../Main_earth_system.py $SLURM_NTASKS 2.180445078669076 5.7814716676614495 5.046699723945776 3.7574883891801725 0.1608230352412425 0.9045086881117758 0.7767700739727128 0.14053186206926382 0.14196658397249193 0.6685250964111055 0.1366140126142181 0964 -python ../Main_earth_system.py $SLURM_NTASKS 1.2727444395490999 4.892090325041342 2.293763216333727 3.8108607303112843 0.15151867916159892 0.9315535759145571 0.3937882755167088 0.17323348792770363 0.1016073816683793 0.9823043212379808 0.27135975489014774 0965 -python ../Main_earth_system.py $SLURM_NTASKS 2.1436034328568194 5.991085349280114 3.886221127838847 3.9879686076188774 0.13824310452706143 0.7533184438597692 0.4458902578858106 0.19599854491486318 0.14658714218145819 0.8174741571268751 0.352683410023084 0966 -python ../Main_earth_system.py $SLURM_NTASKS 2.109957840279428 3.561624435450203 1.8997382771769427 4.492591535089909 0.13242998892882626 0.10460508536941793 0.4404991516549832 0.16868206245852008 0.12486950449219239 0.5414648098170839 0.32316815196472104 0967 -python ../Main_earth_system.py $SLURM_NTASKS 3.0988684757987297 5.813870522207853 1.1027099154753666 4.21153805890674 0.11186492656974162 0.8154585357042896 0.9496250354113663 0.2283956349423005 0.1356970153000772 0.1549347059744511 0.3631206677271436 0968 -python ../Main_earth_system.py $SLURM_NTASKS 2.0640359760355187 4.857887622835915 3.5141206930114146 3.6715661009480995 0.17538540618057957 0.7254509712033131 0.7942429419343284 0.18248397987766896 0.1486189549038554 0.29340531103670797 0.18048821769364806 0969 -python ../Main_earth_system.py $SLURM_NTASKS 2.424901506722963 5.2905487778611695 5.160070407425098 3.9973383625373575 0.19408636652874314 0.8527779600404204 0.5717861949344554 0.10574036264976187 0.11185981052703005 0.6056199446151227 0.16844501473938717 0970 -python ../Main_earth_system.py $SLURM_NTASKS 1.0008633143591452 4.4443368003059485 4.197020083997318 4.009748704707565 0.1767638250539681 0.5280029748889771 0.5203828706108359 0.1322971680379045 0.14981454909871905 0.7843230704355202 0.22919703437240713 0971 -python ../Main_earth_system.py $SLURM_NTASKS 2.4405695694103358 5.161207719313552 1.5384969951184386 3.598385213455541 0.17692116994912954 0.7789162655001272 0.2986949393141163 0.10031661465736821 0.13440691401320914 0.727937321486217 0.11510741851541759 0972 -python ../Main_earth_system.py $SLURM_NTASKS 0.9413266884936571 3.651445923322767 2.7919246034996767 3.8360465508608264 0.1523510263536015 0.8791103901483205 0.7904592009325089 0.25527446338120563 0.12497965676438391 0.7930803172004589 0.10971751103746209 0973 -python ../Main_earth_system.py $SLURM_NTASKS 2.5185538693386302 4.878403085575611 3.795686285053713 3.817079645323112 0.1760213162131536 0.9508284013770048 0.9933765835736575 0.11062603427444771 0.11303997295258919 0.2241086305111447 0.24346269280641872 0974 -python ../Main_earth_system.py $SLURM_NTASKS 1.2372379592255045 4.212109171773712 1.9129877798771604 3.8483950543118803 0.19878508652992483 0.21845268142724178 0.6191399224988898 0.1727277095460591 0.11518079603483825 0.9338493129412768 0.2617080012523161 0975 -python ../Main_earth_system.py $SLURM_NTASKS 2.5297320877693297 5.681475123606102 3.748887537343399 4.249294934257292 0.15018334164740368 0.24644349916244496 0.9803596682582167 0.21251332090083808 0.13708080865675432 0.5930561730164897 0.2762006265360526 0976 -python ../Main_earth_system.py $SLURM_NTASKS 3.0937565379457537 3.5219229061238644 2.5775470309081454 4.395181566460853 0.1989180650324905 0.3812040345428037 0.1605554774199908 0.15374699508438572 0.14788910365075675 0.4213920891307348 0.2109258137902169 0977 -python ../Main_earth_system.py $SLURM_NTASKS 2.9137816240644074 5.4937671678828846 3.704313944862278 4.290616156840523 0.17576503014150702 0.414943203584609 0.13364899378756795 0.17196169457292645 0.1139859305569368 0.7887618298618109 0.11994729597359804 0978 -python ../Main_earth_system.py $SLURM_NTASKS 2.832514640774521 4.944688514862452 1.39132480124841 3.6651049416923334 0.14787080541092937 0.9066801523767829 0.11831131687095474 0.13007644276524297 0.1102403212042574 0.7650267938191925 0.3314806551288281 0979 -python ../Main_earth_system.py $SLURM_NTASKS 1.6728110224758248 4.270057196903891 3.9851503412620266 4.294586291615509 0.15668142391024745 0.9940153442866084 0.3912019055506214 0.16088192207393215 0.13728368279149558 0.9586425813519753 0.24701214261254548 0980 -python ../Main_earth_system.py $SLURM_NTASKS 1.4136199216293848 5.730481737161395 2.7191927821364406 3.7416490672093365 0.18677506405007505 0.33753294898597297 0.6507157379512004 0.2598517126822677 0.11887479902832113 0.5962976730637042 0.39109875506818803 0981 -python ../Main_earth_system.py $SLURM_NTASKS 2.2370230886791633 4.190214000878108 5.171586704691599 4.314312785502126 0.15347312052172757 0.5408706631778195 0.6653434063464475 0.18519284715229872 0.11625931269992258 0.9299664116720975 0.14342504122377248 0982 -python ../Main_earth_system.py $SLURM_NTASKS 1.5181740034699476 5.335972029557373 4.7901306969629545 4.2874780031502056 0.14096034077247793 0.4470787674578185 0.6525062084650302 0.27219740875287823 0.1318164425865776 0.9524187223005823 0.35919638396800146 0983 -python ../Main_earth_system.py $SLURM_NTASKS 0.985541202369442 3.5090377220940834 3.578986831784629 4.293383795432078 0.17796606355280875 0.289137064908112 0.7827607342434703 0.22974027891543256 0.11655554261412474 0.6576197185896775 0.18804134425871769 0984 -python ../Main_earth_system.py $SLURM_NTASKS 1.035002840415705 3.9147409804719207 1.525903590093621 4.144667706216054 0.1506141132237474 0.9648317474121483 0.549503498701489 0.20011406029857914 0.10229581407549987 0.34406486457257635 0.286721831149124 0985 -python ../Main_earth_system.py $SLURM_NTASKS 2.719664424965453 5.374540656300758 3.7637314084174314 4.32509232322776 0.1198518119924718 0.3386403653346325 0.769472503953004 0.1749131371471982 0.11182404259833413 0.590719731342553 0.3009413401298747 0986 -python ../Main_earth_system.py $SLURM_NTASKS 3.0503493322406303 5.667841376350535 2.443249209152029 3.5421029878329584 0.18973701428175316 0.785070229284066 0.22890847000233489 0.1713429611871767 0.10924693444274466 0.9870945729942802 0.2601321404450829 0987 -python ../Main_earth_system.py $SLURM_NTASKS 1.1710763938677178 5.24701713545495 4.596453542187629 4.375290679273587 0.13682898972866547 0.4330854070480141 0.7350457854590627 0.20326785732345973 0.12039891509570452 0.5544503763914624 0.13552592847579342 0988 -python ../Main_earth_system.py $SLURM_NTASKS 0.8485151164413779 5.037511763358653 1.969932971907495 3.546277899604796 0.15986810672616858 0.5096740564443655 0.9909889605385325 0.20399183248683703 0.11647683018753935 0.49351099428378664 0.19416150119317327 0989 -python ../Main_earth_system.py $SLURM_NTASKS 2.9098972584915375 4.330588673191997 5.417255474992073 4.354521181133402 0.16607253647348785 0.6075980990113083 0.732328985533467 0.16378353720268807 0.1288788294599766 0.3383356067120642 0.3783208347369985 0990 -python ../Main_earth_system.py $SLURM_NTASKS 2.864682814226879 4.814031352964218 1.8658660227127073 4.359663985053471 0.12015094412087829 0.2715952610166267 0.17760640265353683 0.15886579372081538 0.11543255870732627 0.12644855450746068 0.25246053448065725 0991 -python ../Main_earth_system.py $SLURM_NTASKS 2.8479318235640596 4.614862985531226 2.611689703670533 3.8462763269560023 0.16456681763294523 0.9705826850766104 0.4248389628400736 0.19276951812368537 0.14762984721226297 0.46433919403071 0.3018824721163734 0992 -python ../Main_earth_system.py $SLURM_NTASKS 2.015192342332107 5.851626330166739 5.489535291291396 3.8510694524996487 0.1570045889539911 0.8341565079335763 0.825165385907782 0.19447481617960538 0.12786803644564324 0.9260571218902397 0.3136370337832466 0993 -python ../Main_earth_system.py $SLURM_NTASKS 2.1188355560339094 4.838940475229371 4.459875388646573 4.489966338915571 0.1854091952634281 0.1624264476431136 0.49667713915769696 0.13861114306209288 0.13920983819321275 0.7295493461967595 0.19246272252619487 0994 -python ../Main_earth_system.py $SLURM_NTASKS 2.0747331248217806 5.328434291972727 1.604961989020126 3.9618640194264403 0.1636559838534985 0.36102864058257933 0.19321745374577498 0.13459786937205373 0.10329863320133094 0.2517533062599658 0.2473651476205581 0995 -python ../Main_earth_system.py $SLURM_NTASKS 0.8582899205832173 5.347714594112604 5.240997079253442 3.816402196825301 0.1755020986051839 0.4651202411990132 0.7623934816614218 0.20650980610046987 0.14041585919966604 0.7827716741560856 0.18318311560085637 0996 -python ../Main_earth_system.py $SLURM_NTASKS 3.004856618965544 5.364794345610223 0.9624303230484141 4.158262205541621 0.10206484768026075 0.8485353986270244 0.9326372692670026 0.10006527771914478 0.1258175536947295 0.24238650173358633 0.3037187776657773 0997 -python ../Main_earth_system.py $SLURM_NTASKS 2.202288833744471 5.929820550355005 1.5498277509163443 4.371295561862153 0.11402585571046675 0.43979263450202866 0.9421374532610217 0.16806295397910953 0.12549502013663838 0.7563663883126196 0.3430581509161969 0998 -python ../Main_earth_system.py $SLURM_NTASKS 2.6514424841902144 5.596372010573317 2.104372877752691 4.020987488611448 0.14283208462827476 0.257872869924783 0.7604681970392123 0.2217947167910621 0.10363248006819575 0.9917744236168253 0.2637818078204178 0999 diff --git a/earth_system/lhs_preparator/latin_sh_file_save.txt b/earth_system/lhs_preparator/latin_sh_file_save.txt deleted file mode 100644 index ffbd291..0000000 --- a/earth_system/lhs_preparator/latin_sh_file_save.txt +++ /dev/null @@ -1,1000 +0,0 @@ -python ../Main_earth_system.py $SLURM_NTASKS 2.241961283016736 4.690622821301434 1.4159411909227195 4.102480797163987 0.19309698390040142 0.5780331277664367 0.31200890950255655 0.11975402592062362 0.1316699858272922 0.27059650762351767 0.3715199043381331 0000 -python ../Main_earth_system.py $SLURM_NTASKS 2.1558506258075005 5.226118589584062 3.857259330281635 4.463155615986821 0.12306069975124836 0.4420520820628321 0.4394691642486326 0.28084529284261517 0.14333612282539868 0.17625028251684766 0.39810443821102803 0001 -python ../Main_earth_system.py $SLURM_NTASKS 2.557592367099789 5.050407687568924 3.6573285548770222 4.4339243389902165 0.10175436891595502 0.7710448504418758 0.2403435240951488 0.1832003130893285 0.12168245588890425 0.7620056616514667 0.21248702139804648 0002 -python ../Main_earth_system.py $SLURM_NTASKS 2.151372455649378 5.608738768762068 3.2959519122925602 3.658686756175488 0.14945599284227304 0.23681159406081792 0.7758401473290019 0.22180280171946376 0.1464101466910571 0.13332055445425905 0.32947567820292234 0003 -python ../Main_earth_system.py $SLURM_NTASKS 1.2936883722720194 3.9763758675647747 5.050149116775495 4.0262040253089655 0.10253215708684489 0.43479086391696964 0.885739369875221 0.10688273280433946 0.10481787492043323 0.9894735280347784 0.19125684604916451 0004 -python ../Main_earth_system.py $SLURM_NTASKS 1.1956331369323965 4.875302815816437 1.0189560964294382 3.5145706633369467 0.11961312300404812 0.8550909378222497 0.13804289031328515 0.2210031177346552 0.1106779967287986 0.22625900276358354 0.21938904002691384 0005 -python ../Main_earth_system.py $SLURM_NTASKS 1.9643771086257389 4.064666295400497 3.6251026871869447 3.8000621944483304 0.11741120146808959 0.8329894635195714 0.6354836989051446 0.26476073534652456 0.10926072160757255 0.3313849201464385 0.24250412295344964 0006 -python ../Main_earth_system.py $SLURM_NTASKS 1.8468807893736068 3.89465393701074 3.8802686064346377 4.323437580755631 0.19739575285089186 0.40956712999245837 0.503409996560821 0.206884837561473 0.1413754946473199 0.5499421032384443 0.13037421243737765 0007 -python ../Main_earth_system.py $SLURM_NTASKS 2.987211843430332 4.8021018282236705 2.3481216823717226 4.105619914222631 0.167211040282046 0.6673619633976304 0.8737612451068553 0.2374811113547012 0.13835387636099558 0.8565401025703913 0.2621236090034065 0008 -python ../Main_earth_system.py $SLURM_NTASKS 0.8416870442233543 3.74145177709342 3.731953514281143 3.71922882487237 0.18731289972812767 0.7461918160364991 0.43444944191252666 0.2926663467936653 0.13001988122217462 0.8520268291457761 0.2559363351220342 0009 -python ../Main_earth_system.py $SLURM_NTASKS 1.2536403447795201 5.83659348936224 1.8080740917654565 3.9198694323503473 0.1974972199966101 0.9197469955779446 0.5434759418232572 0.16113023579277325 0.1283594094195524 0.15095803896112006 0.3022846424317748 0010 -python ../Main_earth_system.py $SLURM_NTASKS 2.0621849874657032 4.157108577521786 0.8618029007601955 4.041181852348354 0.11796608327508544 0.46619842422342594 0.3179172300385107 0.11585557248794315 0.13764976689550693 0.9942525366727164 0.1400881360039429 0011 -python ../Main_earth_system.py $SLURM_NTASKS 2.4384390070182818 5.648785724269732 2.1072591184987197 4.484864034135395 0.16503056727498788 0.16077295576193532 0.6752399226876512 0.23555064270791015 0.12909500910834226 0.6137735432712415 0.2640151040698909 0012 -python ../Main_earth_system.py $SLURM_NTASKS 2.950614839699556 3.6648851084767835 4.322237239324378 4.136317606465854 0.13838483528482506 0.2683176079745825 0.7784481826850913 0.10265907827256716 0.10138149237594173 0.5003623411937864 0.3603678904837275 0013 -python ../Main_earth_system.py $SLURM_NTASKS 2.8520307332377826 3.8540826348757733 4.034978491085282 3.8747966654967003 0.10846677418358266 0.47151211944475435 0.2788842536034275 0.2935429130517333 0.13682297857156533 0.29509524236919715 0.13008358378830637 0014 -python ../Main_earth_system.py $SLURM_NTASKS 2.406100974019362 4.749573280170183 3.2631071770616256 4.169996588981394 0.18945886773379988 0.393390003389799 0.4528642373984493 0.28405546991932706 0.11381996831145436 0.895755963827139 0.2320237025819818 0015 -python ../Main_earth_system.py $SLURM_NTASKS 1.3234446567937002 3.7264237464751853 1.093630720825176 3.94052940696096 0.1904172957835118 0.9546276431058793 0.8412424499424355 0.16064912932952752 0.12980145853942565 0.8630643200064855 0.3465142028908696 0016 -python ../Main_earth_system.py $SLURM_NTASKS 1.99616176457786 5.355805125998257 2.626828437276184 3.6739667061248302 0.19217445009815848 0.6668775429169479 0.5507076802740033 0.1282173287157237 0.11013312496872232 0.9846193042816999 0.23896694882220834 0017 -python ../Main_earth_system.py $SLURM_NTASKS 1.819516136028436 3.5305768429626636 4.2225243581288705 4.319121347985077 0.11177942500389292 0.7017396759797756 0.5648071964530724 0.13495242166815805 0.11458113518043404 0.8243275632051396 0.32201382356949726 0018 -python ../Main_earth_system.py $SLURM_NTASKS 2.3135878231877376 4.485171065714626 4.874992687523104 3.6518199250525827 0.11599035869468963 0.5425353460037358 0.3187872019961965 0.10649586310176658 0.14060561682408823 0.38460315437598624 0.2667395203416081 0019 -python ../Main_earth_system.py $SLURM_NTASKS 2.565143203053366 4.278162717757178 4.015489405518562 4.195750718127492 0.1252485713277325 0.25282787505084303 0.26718199433631973 0.2778016549934361 0.12874953601838068 0.4040525467546886 0.18133393901019562 0020 -python ../Main_earth_system.py $SLURM_NTASKS 3.0078211355735327 5.378245104747503 3.030329105032867 3.723731012654174 0.15209845614944717 0.7147714851976801 0.6628251698216867 0.22894676673982056 0.1495405513430983 0.4589322835887467 0.2633008897260233 0021 -python ../Main_earth_system.py $SLURM_NTASKS 2.322989003092319 4.552497508671667 5.146485898131271 4.135568807027722 0.11082285540147888 0.6372914474317194 0.4540011802394994 0.1544741307345462 0.10698970359204407 0.41727340256694223 0.14411474646234373 0022 -python ../Main_earth_system.py $SLURM_NTASKS 2.3336737518913617 5.855105076323721 5.34148926716088 4.267397131674547 0.15216251238879536 0.5963833199263453 0.9669163239829468 0.14912234278374153 0.11863472746320364 0.8578866795097534 0.2115543662388981 0023 -python ../Main_earth_system.py $SLURM_NTASKS 1.279494698183027 5.357626903627736 3.6213450699690135 4.302392189534777 0.12148691860775193 0.7644188156860322 0.24099746641935335 0.2995407539809937 0.13627085785301477 0.2661017683222608 0.1447039316488838 0024 -python ../Main_earth_system.py $SLURM_NTASKS 1.1811098510832165 5.6611073160879 3.8273228316875567 4.221854188154082 0.16098552665965127 0.38736227451466143 0.6931144212299553 0.23487824661288068 0.11499671756078816 0.322061367474318 0.23253146156619325 0025 -python ../Main_earth_system.py $SLURM_NTASKS 1.43773285651082 5.062378186492705 1.835821540043837 3.897509938300686 0.14409492119327005 0.5166224018344364 0.39990022319208096 0.151643569841226 0.14912338123720062 0.7457227845844016 0.27848117691821994 0026 -python ../Main_earth_system.py $SLURM_NTASKS 1.13006824912936 5.029963684093451 1.4297058498912503 4.194275244623143 0.15870850478984064 0.7566726350565595 0.8584557858780416 0.24927499531469582 0.11449995294675151 0.6012155567152906 0.1735884636672597 0027 -python ../Main_earth_system.py $SLURM_NTASKS 2.532680144322425 4.293663864435212 3.3680649115210297 3.955244131646046 0.171659901176541 0.9566809395825885 0.12923995541447136 0.11768885518220026 0.12340890312811706 0.9155402681104073 0.21202347097762136 0028 -python ../Main_earth_system.py $SLURM_NTASKS 1.6313398400196018 5.343979328710601 2.373800432685824 4.499762489037617 0.12164560221828888 0.6049386067865192 0.9383990365958695 0.29087400573290734 0.14674663416294098 0.7142693262475328 0.13934500276248799 0029 -python ../Main_earth_system.py $SLURM_NTASKS 1.288116686331986 5.617995643696651 4.1982847303346595 3.728674532292509 0.17156656512480467 0.5298872204305441 0.19047328603582148 0.26292410117383935 0.1262629381366928 0.6400192030805709 0.21957149741702287 0030 -python ../Main_earth_system.py $SLURM_NTASKS 1.2037470845885534 5.300621605073812 3.599286439359357 3.732894750425574 0.18421584243175515 0.8268610352509851 0.6260897007037567 0.14167317822522058 0.10632521781458587 0.9962709572264101 0.26414541110229717 0031 -python ../Main_earth_system.py $SLURM_NTASKS 1.858431409013254 5.002281403806856 3.0524217063383476 3.5742166634659345 0.13778675396410509 0.5263753649405427 0.2548615794774843 0.2254614593232238 0.10245261513049435 0.5984838065285052 0.15278686847094994 0032 -python ../Main_earth_system.py $SLURM_NTASKS 2.9940785829574823 4.57700170730948 5.014764592578372 3.9248150752990716 0.1153163715274816 0.22019123376609007 0.42062027301069804 0.12336833759140398 0.11482921881384285 0.39570670665976015 0.31807257154598556 0033 -python ../Main_earth_system.py $SLURM_NTASKS 0.825275026799941 4.640306262618403 3.727670300681954 4.4445047517342 0.1389266830805037 0.2729122382994072 0.6236598720035104 0.2824992408952477 0.13806238360547163 0.43960232659699927 0.12885148222296924 0034 -python ../Main_earth_system.py $SLURM_NTASKS 2.6840631779118205 5.2048342683827356 3.3448221009543007 4.465735374701679 0.19265051594153604 0.7389645165979901 0.20572462808351435 0.19736119149904957 0.14654418865198193 0.4094986932872261 0.10111973450630699 0035 -python ../Main_earth_system.py $SLURM_NTASKS 0.9161855910596558 4.835072011650209 5.447889696346503 3.984704939517436 0.11488398302542512 0.12146015385080233 0.8554604476084237 0.2813066544296342 0.11176711977262853 0.4977753087216934 0.1373783715335324 0036 -python ../Main_earth_system.py $SLURM_NTASKS 1.1356798400998311 4.481681228381487 5.354449471317118 4.06831378632299 0.1043376715874191 0.719719566059555 0.31755720564805806 0.15030297209649432 0.10371545387874609 0.5769270143768731 0.3600425281109433 0037 -python ../Main_earth_system.py $SLURM_NTASKS 2.068349590331347 5.090660542991938 1.4346216044337492 4.053702509522381 0.1975552973983919 0.6781002792113481 0.3362937721737354 0.26999884270876867 0.14409139704042773 0.7229436050102164 0.1798716547178934 0038 -python ../Main_earth_system.py $SLURM_NTASKS 1.7976068142703205 5.371127928226123 4.475857711400168 4.0848398319154455 0.13866904564533863 0.3342229217388386 0.9211319850172218 0.1615513536824706 0.11420310747868573 0.18392411115166934 0.1094515986670034 0039 -python ../Main_earth_system.py $SLURM_NTASKS 1.4265207058441594 3.549649222169444 1.2065650791924256 3.9121081973395118 0.10336648411706392 0.22772064956615357 0.3860574121009288 0.16174664174841014 0.1457703739005517 0.11263664376142161 0.37566823739287136 0040 -python ../Main_earth_system.py $SLURM_NTASKS 1.390449024654612 3.6254597827684982 2.9510549953916367 3.8211198986316868 0.1970122790252563 0.3695917772481756 0.4892416856952003 0.23286991357628412 0.10555383136824642 0.12005331204979575 0.20209930558359251 0041 -python ../Main_earth_system.py $SLURM_NTASKS 3.0384964794626192 4.2425056442485305 1.3379248087548785 3.644566434429956 0.19655011502538494 0.395249083588465 0.5739102027650286 0.1334757266161793 0.14323799837038145 0.734882917765594 0.2716518890864092 0042 -python ../Main_earth_system.py $SLURM_NTASKS 2.0805017319878845 3.7987924353089597 0.8817336790812331 3.9609394865508847 0.19907327102960398 0.24172407486382205 0.9763001441379355 0.1763925996986118 0.13374664468709976 0.2291708500095372 0.32335155340238964 0043 -python ../Main_earth_system.py $SLURM_NTASKS 2.8291087832529715 3.5907216912647684 4.828947001046277 4.266177988829728 0.14810192896150037 0.6917192035847266 0.9477313683501025 0.29285012971076135 0.12445762092409887 0.6382072919295815 0.2794492030426329 0044 -python ../Main_earth_system.py $SLURM_NTASKS 1.513987879836118 4.817187947343964 1.8761337299578191 3.916419007400163 0.10428050745489795 0.8902422692582662 0.609641570994155 0.22498481597700679 0.13575735300346214 0.919163764803899 0.12671464207627905 0045 -python ../Main_earth_system.py $SLURM_NTASKS 1.402149203439964 5.969451997215242 1.2972405503086906 4.190902987613017 0.11821698313377216 0.9821584038236034 0.5267922042449198 0.21672021780059197 0.13157031173957032 0.7148767136159118 0.17424229435868088 0046 -python ../Main_earth_system.py $SLURM_NTASKS 1.377681023879381 5.4116779954921705 4.178450158974461 4.0651473843102 0.1474513558086011 0.7138702161827372 0.351420343801507 0.2025054294230289 0.12177171946799417 0.35703184597117577 0.3201357863081994 0047 -python ../Main_earth_system.py $SLURM_NTASKS 0.8545003842345924 4.820879445692469 5.08585187197154 3.531908475671816 0.1952959724644742 0.4285170721296866 0.5568197326473232 0.13740687376668986 0.1051984033043864 0.48541182136693295 0.34745978100781794 0048 -python ../Main_earth_system.py $SLURM_NTASKS 2.524989650319185 3.50451865274563 5.039249417178822 3.748192887707581 0.16698184293837498 0.9793164736280543 0.3223928771145499 0.2514517289066589 0.1220261697992337 0.6213670894498534 0.2110865021595873 0049 -python ../Main_earth_system.py $SLURM_NTASKS 2.179321629955422 3.556632263746593 3.459248748576403 3.7765050581087625 0.19101264538381318 0.5646128903882179 0.10650998067405401 0.2556927196409747 0.1446492193133847 0.5891451872550607 0.12151106501066379 0050 -python ../Main_earth_system.py $SLURM_NTASKS 1.0533554004645223 5.481721762445996 0.8467037237429437 3.875599838292599 0.150759294660737 0.3701481371749272 0.2701336055933764 0.1306350121303304 0.13745101760661932 0.34228293671235177 0.3267409964204733 0051 -python ../Main_earth_system.py $SLURM_NTASKS 1.0200879768341533 5.086494295258873 4.093467441228394 3.5278093421353423 0.188925526209053 0.37127661613939833 0.8136304643728518 0.2234795563436225 0.11479457078076874 0.38372062296276344 0.3827963516192767 0052 -python ../Main_earth_system.py $SLURM_NTASKS 2.146112852108697 5.760463930726196 5.004884041141892 4.413693126453198 0.18356216785780818 0.7999286205832326 0.45635040857544873 0.16469265664153623 0.11570319597694526 0.5275264255767933 0.19007707792989673 0053 -python ../Main_earth_system.py $SLURM_NTASKS 0.9434146858877505 3.7053385966732333 3.8719470369330837 3.8047011153668624 0.15258465994230605 0.856005389097089 0.3627539169144377 0.10532464421252485 0.14273451174214788 0.46810150985225984 0.19338903062088536 0054 -python ../Main_earth_system.py $SLURM_NTASKS 2.137349237247215 4.682556150102044 4.753807356040884 3.707814017695681 0.13215046267745412 0.5134718175735219 0.14036551353333931 0.24490163973443344 0.1410959174590707 0.623373861942123 0.35463893900213184 0055 -python ../Main_earth_system.py $SLURM_NTASKS 2.268649378355999 3.5598590090374307 2.3764379823455206 3.9022265864902765 0.15401950342608597 0.6118639161954296 0.10545169580937143 0.18424100791104675 0.12680616839923475 0.8545185438435904 0.11869365064296025 0056 -python ../Main_earth_system.py $SLURM_NTASKS 3.014864836024506 4.682171956722119 1.1532034341620025 3.693633989521641 0.196308944828085 0.5428263936293453 0.24699281606577692 0.10451311900169566 0.10815898380859765 0.4780675351042786 0.36429443276560136 0057 -python ../Main_earth_system.py $SLURM_NTASKS 3.028412399204923 5.987416809417034 1.4103737156006773 3.9096296476871295 0.10020305658958058 0.35920932066219524 0.2807664779167949 0.24886787650162925 0.11193850953757795 0.2732184881569114 0.3423508339845657 0058 -python ../Main_earth_system.py $SLURM_NTASKS 2.593853448734497 3.757303826239024 2.9783631957253025 4.074292993614773 0.11243361561968 0.3571579020935669 0.7130066888091663 0.13173307076147683 0.14228434127637551 0.9859105258300805 0.32414735504688863 0059 -python ../Main_earth_system.py $SLURM_NTASKS 1.7232498239747507 3.7017234729062745 5.287182033372546 3.9881817941475775 0.11023126568174318 0.24575511300611777 0.1838338858871143 0.2947548439754538 0.12558191402099744 0.4773981720499628 0.32064577016447837 0060 -python ../Main_earth_system.py $SLURM_NTASKS 2.5446695981357816 4.636464014937222 2.1802142586711275 4.092121892645907 0.12815279211401234 0.4157374575630719 0.28815530988127114 0.274599918129666 0.10041617142006377 0.4875422221083455 0.10648343732788267 0061 -python ../Main_earth_system.py $SLURM_NTASKS 3.0964035643295302 4.313781282464023 3.5418349273216796 3.7758423632906797 0.17295656843214727 0.5451887552891709 0.9768574648084949 0.2133242529424741 0.11148838583648973 0.8004299587825935 0.37787304449107983 0062 -python ../Main_earth_system.py $SLURM_NTASKS 0.938819310650755 3.902201498077925 4.283010057779748 3.5723809733319456 0.17270333636377033 0.10012923548324565 0.791223522418956 0.15180554082316614 0.1239063127124862 0.26499409314757905 0.31390533784602176 0063 -python ../Main_earth_system.py $SLURM_NTASKS 1.2851852561417563 4.565723151175495 3.210845055494989 3.63543618035706 0.1461463360986312 0.7391550795396652 0.8819979571344858 0.1042566157697091 0.13832738632692118 0.8951905149665087 0.33829088396975915 0064 -python ../Main_earth_system.py $SLURM_NTASKS 0.8026295785217389 4.624038859307741 0.8192054058729 4.157619173209066 0.15189410911944326 0.9330203820174836 0.8400590586276176 0.20812437875550913 0.11804944586252361 0.3036817717487553 0.3967294422007457 0065 -python ../Main_earth_system.py $SLURM_NTASKS 3.1533860874114756 4.174018986409162 1.2501835830461896 3.7522073170854213 0.15778214968997026 0.6713608911220847 0.9711638434700197 0.2419243151423461 0.10602434603827285 0.6900568428189385 0.3249143560324491 0066 -python ../Main_earth_system.py $SLURM_NTASKS 2.7785402349444417 5.767267563623012 2.0034392951117796 3.9201090066434023 0.1306681361278575 0.9182293773662653 0.3237852590381781 0.20049704309871508 0.1284715688149382 0.3676635044040174 0.2222033511098801 0067 -python ../Main_earth_system.py $SLURM_NTASKS 1.8926035136177937 4.361236206899321 2.9186447273515403 3.6466107257337415 0.11543295806037143 0.8192569518955013 0.3112147059965631 0.2547888006765766 0.14609972652731645 0.3003201242384774 0.13642311764354703 0068 -python ../Main_earth_system.py $SLURM_NTASKS 2.102590403373637 5.812495358309915 2.384533687295585 4.481028003210031 0.13144973773984225 0.5176753943068545 0.8781768966621948 0.2597485493374992 0.14768463309995972 0.10954171786648245 0.1760664961184361 0069 -python ../Main_earth_system.py $SLURM_NTASKS 2.7985316436960677 5.783703096713111 2.2375034197470716 4.021709898942465 0.16327341876636992 0.9615071217639704 0.24504758370495766 0.25088302682880437 0.14750214875402218 0.3023458524538528 0.32040034870447903 0070 -python ../Main_earth_system.py $SLURM_NTASKS 1.2339811255582611 5.562166198846475 5.197840976475545 3.9664328762243173 0.176284319178722 0.7722818026935048 0.2200452394514311 0.10872384828028918 0.1144089498243238 0.13765805211503007 0.254728504157253 0071 -python ../Main_earth_system.py $SLURM_NTASKS 2.131775719651343 5.417619866647641 4.070713615039645 3.7777505926530153 0.19436997533961145 0.7932783542316296 0.48010501576798326 0.11147907777898704 0.11569604223938221 0.3777185607255453 0.39493778503980315 0072 -python ../Main_earth_system.py $SLURM_NTASKS 1.7561096887563405 4.19975797934693 3.715072261017192 4.260852341665155 0.17455816424634701 0.9869503254755854 0.21564721337661852 0.2706526187443685 0.12975197066578564 0.2775283309169124 0.38482412094142826 0073 -python ../Main_earth_system.py $SLURM_NTASKS 2.6128725454992106 3.6304198295703833 1.4571705636258938 4.083926805287226 0.1413075828846888 0.14991774289457188 0.41928338752960304 0.28739764674715174 0.10051018925276374 0.5215375159600338 0.2992052696472851 0074 -python ../Main_earth_system.py $SLURM_NTASKS 2.3575007483769017 5.9753120533924395 3.283837989796136 4.4787856964434685 0.15165315350897104 0.6161673982208266 0.827818398814867 0.14223201806167213 0.11943004572826334 0.3529002714824472 0.3080058993828606 0075 -python ../Main_earth_system.py $SLURM_NTASKS 2.692817358039548 4.602979968443544 3.814302041772237 3.7994417788848347 0.12888557044608367 0.41120942460003496 0.9862251592945668 0.11191838594291229 0.1272485528053089 0.9980271725517061 0.2598560965240567 0076 -python ../Main_earth_system.py $SLURM_NTASKS 2.5629091561017754 5.8764876259943115 1.9578135570315258 3.5281537382822026 0.1311613382282955 0.9677374793100516 0.42022722013388836 0.19985762943944899 0.12662934515906232 0.853505515165572 0.3712400636217613 0077 -python ../Main_earth_system.py $SLURM_NTASKS 1.1963770131739233 4.589498009966689 3.2331216933478277 4.392656998142186 0.15325610158835512 0.8701750587412391 0.42910751751973475 0.14598284602083822 0.14686618961031883 0.7968719584915902 0.15521075172677 0078 -python ../Main_earth_system.py $SLURM_NTASKS 2.041323944553172 4.639279401491857 4.930643207362657 3.8913668227786817 0.17903117174895616 0.4257915139978684 0.2392500316029975 0.14521697828599514 0.13477650592349566 0.43929183750678424 0.32916089759715006 0079 -python ../Main_earth_system.py $SLURM_NTASKS 1.719247819454596 5.885977358575708 2.117482089913831 4.430573964392958 0.1822155196247683 0.14619037172712157 0.25329983500914854 0.2920305024719432 0.14822157647734782 0.7718794129464878 0.30917682742201363 0080 -python ../Main_earth_system.py $SLURM_NTASKS 1.7251605845949096 4.703062169644812 3.5034524859614065 4.175134905785917 0.11756430893326782 0.16673480817455122 0.7524582399147249 0.13673941141319285 0.10882139707958473 0.6298821285049576 0.3044443589775685 0081 -python ../Main_earth_system.py $SLURM_NTASKS 2.305143256361305 3.785247223795125 3.2159471814368894 3.726497043653965 0.19575054339506487 0.15562055441114192 0.23453240196007255 0.2063487702590649 0.11326046194531302 0.17459451542318155 0.1486364430291331 0082 -python ../Main_earth_system.py $SLURM_NTASKS 1.566947557655502 5.9498033630234985 1.7911510513400188 3.8825754612042864 0.1995378879446484 0.5210821261405423 0.3492288209359985 0.2903097063883904 0.12425561174932276 0.8345660981543268 0.17953579777349488 0083 -python ../Main_earth_system.py $SLURM_NTASKS 2.7578693115138795 4.227704880293484 2.919994619242317 4.3472299373683585 0.12909347381564376 0.638472639895061 0.5931569313620111 0.2256967889035224 0.10465126295857383 0.9993789369500615 0.13515120556822513 0084 -python ../Main_earth_system.py $SLURM_NTASKS 2.5746841751034326 5.266649782551701 3.96031249177378 3.9835654474603945 0.1865915737131963 0.6329899375718798 0.8259854285307359 0.14295385149942258 0.10476051688250168 0.1996117408900186 0.2531606005565795 0085 -python ../Main_earth_system.py $SLURM_NTASKS 2.5519642807711285 5.4129457018827996 3.9516700353008423 4.320697088192984 0.10530313718705511 0.7030993127636461 0.5689210746902766 0.27890084635793233 0.1353179748519294 0.6523646731998775 0.10712525022784371 0086 -python ../Main_earth_system.py $SLURM_NTASKS 1.6486505253407215 3.6035070176522614 3.48023755974582 3.8266353873929377 0.1964842003091976 0.4025921283725563 0.7817720739792294 0.14428397971280738 0.12490633088233437 0.8840903154676045 0.3533156567015051 0087 -python ../Main_earth_system.py $SLURM_NTASKS 1.3805927954845023 5.08835176153592 5.3046949874109695 4.400819691873521 0.10185464888626578 0.5538285803673026 0.6390355251482334 0.260621003018106 0.12398240356532386 0.6431926318090269 0.33600075728555445 0088 -python ../Main_earth_system.py $SLURM_NTASKS 1.2281272116355504 5.220648140315147 4.636021951837129 3.7027066351895286 0.10463017367619862 0.49004559798486624 0.36702622682464214 0.17683225172445197 0.14484885150350632 0.2139272050175855 0.11074413635990249 0089 -python ../Main_earth_system.py $SLURM_NTASKS 1.657441401117374 3.873665856571603 1.8029618626437307 4.470604278236301 0.16427869813732793 0.5187883914283382 0.2959735868001152 0.12294836445618744 0.11823388450158923 0.6026039655756832 0.26827780556517133 0090 -python ../Main_earth_system.py $SLURM_NTASKS 1.6850195600073008 4.3638955412756495 1.8338810629165503 3.5870098877330796 0.1993928351819353 0.40546549163650825 0.4734911976146152 0.13781445111029586 0.1080518254881076 0.6775684300573324 0.18664493325760662 0091 -python ../Main_earth_system.py $SLURM_NTASKS 1.0095043325966178 3.7036262992377926 5.02138623272713 4.154075600209129 0.11678073250613849 0.7691631745643334 0.6832433014365957 0.21501398099955354 0.10893353473740199 0.9876328098493075 0.2983461012745267 0092 -python ../Main_earth_system.py $SLURM_NTASKS 2.6188249487187463 5.435897331970532 1.7948504274065373 4.155029486965737 0.14028412976554178 0.5379733448267194 0.9303019516382665 0.274205618511944 0.11152004765074898 0.22489001239321832 0.33966966697340073 0093 -python ../Main_earth_system.py $SLURM_NTASKS 1.0901965437324754 3.607113749431278 4.183999327447734 4.067909219360125 0.10900480364862175 0.42405351005329917 0.8059401529978368 0.19031840379259635 0.11367073523046599 0.8189469347623987 0.37907826832767855 0094 -python ../Main_earth_system.py $SLURM_NTASKS 3.144803607053845 5.455277230608158 3.691259710346495 4.1179347885184026 0.15789766793161894 0.4295452444188609 0.27705904371117246 0.26772822597944934 0.14847666883389032 0.7318463294892802 0.10391421782490157 0095 -python ../Main_earth_system.py $SLURM_NTASKS 2.2721097558573313 3.7959619298364524 1.8789365772434685 3.847850233861574 0.19888290242135656 0.7969964620819621 0.9448115707422369 0.24383629830905648 0.10667422515324108 0.9034653729403064 0.2706936445839939 0096 -python ../Main_earth_system.py $SLURM_NTASKS 2.5257259142406188 4.12603564764737 3.8218937317976254 3.8378893989474534 0.13221279422470308 0.20482116865373656 0.5369971001877631 0.18834130793359544 0.11666611104098064 0.8926410300401103 0.22396542879804432 0097 -python ../Main_earth_system.py $SLURM_NTASKS 2.811387893368499 4.965504194793244 4.1014248464362515 3.788654123426016 0.13071955707008148 0.8104497507357677 0.4023598866421487 0.2709082070559068 0.12310668633185959 0.7993165647305793 0.3399464866592016 0098 -python ../Main_earth_system.py $SLURM_NTASKS 1.0488590329361336 5.233706882280812 4.906435940596746 4.241325747539671 0.17411074391598563 0.9097686308439609 0.36805224495742794 0.14834900148362337 0.13559083699940805 0.8970894827366771 0.21751890030536478 0099 -python ../Main_earth_system.py $SLURM_NTASKS 1.1556182444043333 5.400015144083838 4.087749007034965 4.179849144332941 0.11943048219205117 0.15260643487556558 0.5972841925836663 0.2545966623660274 0.10724764066548018 0.6504326482895265 0.15906599767400356 0100 -python ../Main_earth_system.py $SLURM_NTASKS 1.0469163045782115 3.9448144261203835 3.8665921988568153 4.485807422584952 0.17346101897378513 0.9979192535346734 0.887201373414585 0.1677928447314588 0.14593855295015354 0.5604765857762729 0.34839987472677336 0101 -python ../Main_earth_system.py $SLURM_NTASKS 2.815052051747016 4.968078808651184 4.825252965147329 3.543183097485464 0.10837721730226256 0.6899551530962903 0.13932722858050034 0.19468292595128545 0.1008545911063072 0.7927425922666629 0.20841669709832028 0102 -python ../Main_earth_system.py $SLURM_NTASKS 2.713934608438036 5.4694890411956125 3.7090633930687558 4.272910980109619 0.1786654824056729 0.6863152150444246 0.18028278259269964 0.12519438215131742 0.133229818377544 0.635789914536344 0.29658341243726966 0103 -python ../Main_earth_system.py $SLURM_NTASKS 1.1064803160160581 3.534240818014465 5.106844147778162 4.3902897175160405 0.15588253122067558 0.5875475424764758 0.9518942079243667 0.2066788581557549 0.11599625990617525 0.9454800548833927 0.11261740330776422 0104 -python ../Main_earth_system.py $SLURM_NTASKS 2.4326937712806567 5.890170556760395 1.688637085864319 4.461209694642434 0.13810160665975826 0.23367733655734974 0.777624334245898 0.17504262093218126 0.10401929133370887 0.31660538569076857 0.3085382335049076 0105 -python ../Main_earth_system.py $SLURM_NTASKS 2.687220898968355 3.8562015837305905 2.802070397420655 4.3697244650175655 0.1205834820175494 0.26168979977942625 0.15795377644691594 0.22949608681982853 0.14569496798549306 0.941218592804908 0.37208052012240866 0106 -python ../Main_earth_system.py $SLURM_NTASKS 1.0381625171855653 4.144610319793903 5.318882849819775 3.928235206530022 0.10036983315639521 0.29783314752373546 0.14597541181476534 0.20459074837149488 0.12604314639168637 0.8036421715597761 0.31580741120120015 0107 -python ../Main_earth_system.py $SLURM_NTASKS 0.8336152333104554 5.24475047152676 5.092735211266343 4.3444844289260915 0.11858639713225809 0.48566024298455635 0.9232768384107608 0.22607269965118065 0.13036581705410671 0.7874446875156013 0.35532418458495385 0108 -python ../Main_earth_system.py $SLURM_NTASKS 1.2736123769345196 4.6700428803440355 3.9714894938233423 3.597604217731273 0.13338323744011668 0.47801781828816825 0.5687094026616347 0.2018788005049308 0.13189078591739284 0.9984017410953833 0.13131396645157536 0109 -python ../Main_earth_system.py $SLURM_NTASKS 1.8033533288225785 4.666376251565825 5.379456847549658 3.5261876449662255 0.16778705626739093 0.7477235820037971 0.8054677858096946 0.211780480665754 0.13293763927026175 0.23979590709316903 0.35302822665867173 0110 -python ../Main_earth_system.py $SLURM_NTASKS 1.0290108231421273 3.554752444423488 4.6868794730079175 4.276774699945287 0.1418420251375155 0.2631170496319146 0.6682089216601522 0.16560682073376606 0.12095220862966946 0.7639514604193324 0.2607044653979816 0111 -python ../Main_earth_system.py $SLURM_NTASKS 1.38793043060251 4.370736431166338 4.00188879512782 4.289698328402098 0.19465816826335766 0.3253833513023744 0.915325919619711 0.279603185498958 0.1105793950720796 0.2086350809252706 0.15002668121513812 0112 -python ../Main_earth_system.py $SLURM_NTASKS 1.2073752243814018 5.303811458495137 3.937269910064014 4.077965533855226 0.1112672538900283 0.9148308498005412 0.8744023329354857 0.10663331902336583 0.13297479586461827 0.5992238289561946 0.24238838502609183 0113 -python ../Main_earth_system.py $SLURM_NTASKS 2.7383108139310695 3.8415217741639927 1.1295192327116164 3.950447750605149 0.11653586416765566 0.9788016023753932 0.9243329506997335 0.2075962496538079 0.11210558340619572 0.11487107492305283 0.14150425709094874 0114 -python ../Main_earth_system.py $SLURM_NTASKS 1.9165253564141915 4.184163454868246 2.973677048298911 4.184101135697921 0.15656081520592435 0.7639539655968861 0.6024124757773989 0.22874851333801866 0.10157322363261907 0.3140108846585712 0.16116991771322609 0115 -python ../Main_earth_system.py $SLURM_NTASKS 1.6288944468615418 5.532804589091028 2.8761962631611615 4.131146953331672 0.18360522409747798 0.4802556513760362 0.868356378092833 0.28300108364219473 0.13015728644758168 0.8224679138118647 0.17018836900979173 0116 -python ../Main_earth_system.py $SLURM_NTASKS 1.070253262106554 4.651366880348748 2.1902821163383575 3.9363071012466877 0.12121645681252309 0.19259240110960174 0.9589198286153047 0.2819578747627446 0.11218973746444774 0.8525266045073275 0.28351366903755704 0117 -python ../Main_earth_system.py $SLURM_NTASKS 1.772009126089181 4.652601701914695 4.5743232674768395 4.168333987380695 0.17583464426002626 0.3303264952058786 0.7050214459508981 0.17161049791724642 0.14520296185542558 0.4002347855321706 0.29474955902895744 0118 -python ../Main_earth_system.py $SLURM_NTASKS 0.9021348852926973 5.279524412542326 2.1447865997526554 4.246002165297882 0.14809027570802077 0.4276098863056199 0.16454168963553661 0.21148175967665134 0.14907485843524954 0.4317620704168952 0.3982082053719811 0119 -python ../Main_earth_system.py $SLURM_NTASKS 2.450597871963251 5.963514720210442 5.121787230098379 4.214857316545194 0.1511690723962846 0.8244860681186921 0.1018998371611845 0.18484772601319016 0.10120175704827633 0.23687268433640896 0.10540593558284372 0120 -python ../Main_earth_system.py $SLURM_NTASKS 0.9077076931662995 4.123768988077002 1.6345846833669762 3.8159716114542412 0.17335190945846557 0.27425231713353787 0.5747357660328458 0.23974524352177765 0.13639411817666267 0.45500610863957935 0.12793377390409494 0121 -python ../Main_earth_system.py $SLURM_NTASKS 2.0022784188726765 4.011454008171521 1.577379026991373 3.972963256342746 0.12620055216229395 0.6425119773015998 0.3817919978457881 0.28205876175723865 0.12998001993829134 0.7091024768174247 0.24933347746848025 0122 -python ../Main_earth_system.py $SLURM_NTASKS 2.224814120681568 4.468273788070663 3.2551865633749966 3.839697575818613 0.10452301346494146 0.5682439726931308 0.6999387409207405 0.15813920523766456 0.10575020947345364 0.1345320321352327 0.1772001123677661 0123 -python ../Main_earth_system.py $SLURM_NTASKS 1.5032599545746588 5.018415559065529 2.856620311255228 4.02847244585034 0.10573062517062376 0.11864773406188506 0.8802728013676422 0.16451945371807977 0.12959216146594277 0.8820596030556033 0.37475316154709404 0124 -python ../Main_earth_system.py $SLURM_NTASKS 1.7795256109390625 5.056687274151365 4.770430101978383 3.5308466590422154 0.1937320551920206 0.44571957212725954 0.8895595106740741 0.1460535483002466 0.10551792559240826 0.7982653163134608 0.1286331299905921 0125 -python ../Main_earth_system.py $SLURM_NTASKS 2.8603326093445522 3.580681302539661 3.0593909576330507 4.425958320111306 0.14345863460671665 0.7750352481798086 0.5837509569167861 0.238011771468312 0.11799863857281497 0.37257235284299817 0.2126580364551346 0126 -python ../Main_earth_system.py $SLURM_NTASKS 1.1906959081933595 4.167708241116333 1.1995956360260243 4.120146883138137 0.10324715073823981 0.3416092050557503 0.6577133652472809 0.12532833297354645 0.1315098956017708 0.4345570937190053 0.33520529791165743 0127 -python ../Main_earth_system.py $SLURM_NTASKS 3.0917784330626006 4.5019686147779385 3.088556216254201 4.471811837075017 0.16132808434070076 0.8417430957327091 0.8878269875078572 0.13724974737792267 0.1017400260190017 0.8692742789136954 0.26497071604240785 0128 -python ../Main_earth_system.py $SLURM_NTASKS 1.4700414265527693 5.296739386450801 3.7922161126695597 4.1805512044733435 0.1803347293098328 0.1406770850519201 0.39166648226704104 0.266859881899917 0.13350144034229877 0.6104928448426381 0.30898691820515356 0129 -python ../Main_earth_system.py $SLURM_NTASKS 2.8770913994298946 4.317887854040077 2.0084450445805073 3.8497925959465986 0.16751959181351272 0.5754546389001621 0.6035075488008715 0.11228502076047404 0.1025055081854776 0.7486847049245908 0.29107708600701915 0130 -python ../Main_earth_system.py $SLURM_NTASKS 1.8870490378730242 4.077991843231734 1.3163030135183582 3.8684796505268184 0.19182805622472518 0.41654240617431715 0.8675823537292742 0.27624676824571714 0.13223689923329637 0.11922854426880208 0.1905476092378263 0131 -python ../Main_earth_system.py $SLURM_NTASKS 1.1094490679393472 3.6401593200747397 2.2893564822489623 3.6492889091211973 0.1875296786310079 0.6325034391945876 0.9163175520186198 0.18092273404213927 0.11240076492813561 0.787815226199519 0.31266141420452187 0132 -python ../Main_earth_system.py $SLURM_NTASKS 2.76652450429974 5.1094348419595725 1.7065137696467736 4.252467946504298 0.15104852200687638 0.4021950680483384 0.3877678317543881 0.26941543022803166 0.11601436907749692 0.7605285359178156 0.24477036407665953 0133 -python ../Main_earth_system.py $SLURM_NTASKS 2.9634071024402644 5.763279538244092 2.6856105031967576 3.7637468589193688 0.10559322057920723 0.5745247626872539 0.5781152883304387 0.2957131071974939 0.12463528183556036 0.1489059667142352 0.2737481057364517 0134 -python ../Main_earth_system.py $SLURM_NTASKS 1.8210764483697024 3.9634472219827526 4.142212474849835 4.378367049453727 0.11008350018997594 0.6400574991612867 0.6622714386425249 0.24207307499608163 0.11018129237084301 0.8992328496953889 0.157741080307489 0135 -python ../Main_earth_system.py $SLURM_NTASKS 1.1791523016729109 4.925707968838205 5.243484848058359 4.192021517615714 0.13509394027465513 0.5013485853755292 0.4705035675091488 0.16897718717488408 0.1133648531581985 0.44814388115742587 0.2249216404296625 0136 -python ../Main_earth_system.py $SLURM_NTASKS 2.3003432985000614 3.5191841123470717 2.1659173547359263 3.712977076643178 0.12798640032409114 0.3757682967944518 0.1570338602314283 0.18472340394303993 0.1398846177084832 0.7542632368072014 0.16209123411644616 0137 -python ../Main_earth_system.py $SLURM_NTASKS 1.4046567333808015 5.882809647387351 4.712186074124285 4.407922301057555 0.1258844938415463 0.5863144256469616 0.6930808247173462 0.1970925361068664 0.12815000698351353 0.13192321753841707 0.2047162292859435 0138 -python ../Main_earth_system.py $SLURM_NTASKS 1.2103014859634351 5.819240423690294 4.892452602014844 4.33161358767504 0.1938202259461123 0.8406921484179019 0.8761246035774878 0.20124674762550726 0.1330179254423829 0.8896280295304823 0.11084633917679954 0139 -python ../Main_earth_system.py $SLURM_NTASKS 1.8782092122015108 4.811487202953938 4.2753226455677185 4.13961423018575 0.14966692045428653 0.530334039509008 0.9138020397458115 0.20564057391227836 0.1454969859416939 0.5034893425082232 0.32990155962073026 0140 -python ../Main_earth_system.py $SLURM_NTASKS 1.7493390236324196 5.959626548191429 2.2571754883378645 4.496421494947156 0.13354433551798206 0.18657282379812926 0.4668507965983415 0.15581111442827644 0.1380213681136336 0.9394806714592409 0.22282753899452812 0141 -python ../Main_earth_system.py $SLURM_NTASKS 2.1589799606593507 4.630321679590173 3.9448373814595703 4.408248486682371 0.11646441911795125 0.48669876751086805 0.5961606695145857 0.28392634908672937 0.1129641315437602 0.8831855045326454 0.3654277314551637 0142 -python ../Main_earth_system.py $SLURM_NTASKS 1.06471900730744 3.5502114893645467 1.961743563410232 4.1412812739546885 0.14867547676508733 0.4634480573921571 0.5175404048358795 0.113107468451765 0.14506392345656172 0.32877408392454777 0.1453708025875129 0143 -python ../Main_earth_system.py $SLURM_NTASKS 2.827239738460057 4.529992336439092 2.8711606777232523 4.039256370385015 0.10015949031995135 0.5819526883420556 0.47587239352533894 0.22384068402503116 0.1031703979058278 0.9512961739769614 0.26636428529889516 0144 -python ../Main_earth_system.py $SLURM_NTASKS 2.043237911848218 5.015225348493805 3.673581572180776 3.56980836129401 0.10317912095520028 0.6455729078975099 0.393243243027394 0.2701697535048194 0.12064729353273594 0.989088812276794 0.10730581430994048 0145 -python ../Main_earth_system.py $SLURM_NTASKS 2.7524934611815204 5.906261425015595 1.3209591931765772 4.127173296430161 0.16704629571816015 0.11280331929060429 0.2575337026057686 0.13805597643476802 0.13288740275023386 0.8022354715484322 0.12998858261444798 0146 -python ../Main_earth_system.py $SLURM_NTASKS 1.0619112878194372 5.68326620008483 1.174995091239259 4.34555375323341 0.10779387012378312 0.9743900368424997 0.397603851060368 0.20299597656774715 0.12082960268398102 0.1658701024567792 0.30611592192778964 0147 -python ../Main_earth_system.py $SLURM_NTASKS 1.476575378243099 3.6279489609886255 3.7602102373719353 3.612065325214323 0.15463979588062635 0.7918905597427892 0.8234468668003442 0.12494558774300615 0.12686776169280553 0.798884360169595 0.17853381051753858 0148 -python ../Main_earth_system.py $SLURM_NTASKS 1.0550578844316756 4.4063210265966735 2.533179177537169 4.279306623666671 0.16124611084866686 0.3247628355069508 0.7638771400228754 0.18122849206116068 0.10959936159647293 0.8792563652378351 0.1763917126261306 0149 -python ../Main_earth_system.py $SLURM_NTASKS 2.2556998554998673 5.526685798632263 1.9952737625827308 4.483961617217076 0.11211509903645439 0.7328519632700672 0.5013242609799534 0.24506182488294256 0.12607025575721495 0.4757284393265868 0.25007588374662015 0150 -python ../Main_earth_system.py $SLURM_NTASKS 1.080031914331495 3.6662676714635345 2.3813177108914827 4.17292143706557 0.12660216998452142 0.618166729321494 0.995925455286508 0.14895220626924366 0.14837014200809837 0.5133511664766599 0.12555965136804215 0151 -python ../Main_earth_system.py $SLURM_NTASKS 2.2656903276340654 5.2523770894663 1.6817775121720868 4.415571606606274 0.13474387568779408 0.7654274614414592 0.48399925652519027 0.18968018682278584 0.11156455800478954 0.7741050950514364 0.12403640566780633 0152 -python ../Main_earth_system.py $SLURM_NTASKS 1.1734076909925837 4.5080026636243815 2.4610340313779133 4.300727244620739 0.13726960346488698 0.9829987511890813 0.451080784599877 0.18748903474130002 0.1311376758523551 0.5713340652353307 0.3549678612695273 0153 -python ../Main_earth_system.py $SLURM_NTASKS 1.7880820744320176 5.1511679005565485 5.452966877971761 3.9139504751582956 0.19010691879803385 0.827913047999051 0.23373002908451873 0.22438112436965696 0.10280511176172952 0.14279568468010218 0.3537934111600415 0154 -python ../Main_earth_system.py $SLURM_NTASKS 1.535391437922767 4.487549917940728 5.334645362514886 4.029896641472192 0.13405331404772805 0.7130144549440012 0.469499110715479 0.286121642769784 0.138646020269337 0.6121609474761747 0.14598067565637943 0155 -python ../Main_earth_system.py $SLURM_NTASKS 1.9204294520466227 3.777251061083461 3.956665910800048 4.284055812533889 0.17220442377279435 0.4755729927474932 0.45884471383122494 0.2847382896519399 0.1366131986493354 0.357644150131776 0.1874223171799577 0156 -python ../Main_earth_system.py $SLURM_NTASKS 0.8684950451545865 3.632795513269446 2.7122498954515173 3.8504741660583375 0.15087812368317832 0.3502490303557152 0.3611157274795672 0.27030591197595566 0.13811011099461626 0.24968382549068974 0.34037962323927645 0157 -python ../Main_earth_system.py $SLURM_NTASKS 1.2404565198400535 4.213850249130537 3.371678881390598 4.239581959994419 0.1574352079192483 0.9199942284809726 0.5386602737533989 0.2580241372244173 0.11377437498568249 0.5900879381834544 0.17217349928793707 0158 -python ../Main_earth_system.py $SLURM_NTASKS 0.8012226328623399 4.256249018306979 1.493805967081149 3.5166614254545343 0.10195266603265543 0.6493548574797448 0.5134195295585918 0.1527429457682686 0.14471133931344213 0.12258835429082487 0.12667556160045082 0159 -python ../Main_earth_system.py $SLURM_NTASKS 2.025969700636696 5.966325038952728 1.2787182263967285 4.431299212124327 0.12263850409431899 0.699845390077839 0.4519982750040493 0.18898434359093852 0.11741738517389555 0.8600220680695004 0.2969786467823455 0160 -python ../Main_earth_system.py $SLURM_NTASKS 2.9299374450107942 5.013319092087832 3.5543867133266094 3.94702893858852 0.14316387184752025 0.20215837234402917 0.7480999228517421 0.15940525030773692 0.11118685572477145 0.7157701449294713 0.31688001759345696 0161 -python ../Main_earth_system.py $SLURM_NTASKS 1.1167041594443694 4.342205441728602 1.5315418900459117 3.5393245877490824 0.14440605830249797 0.8945566760072177 0.6865517072999774 0.25732264432685636 0.11687689266541425 0.2790006717850234 0.1113358411683985 0162 -python ../Main_earth_system.py $SLURM_NTASKS 1.5589118121606553 4.274808370204475 3.3775785331301753 3.8880398859125256 0.15797321228006986 0.9304629393398458 0.13167908985391263 0.22244667232962329 0.10212438837644842 0.3118506120816056 0.2371621744441603 0163 -python ../Main_earth_system.py $SLURM_NTASKS 2.7854481861145377 5.785387541974834 4.054437229475571 4.495210304082443 0.17462817030167138 0.9140796012166803 0.16989290981623148 0.22734955673453508 0.1173568532188235 0.3448071933897441 0.30664109087089875 0164 -python ../Main_earth_system.py $SLURM_NTASKS 2.6152144457895448 5.916231462428296 2.4096144004980395 4.033506861181982 0.13441997704276218 0.19331118945626224 0.2006017569877035 0.10752529435739752 0.11138254677660288 0.25930366217829626 0.11772998040043542 0165 -python ../Main_earth_system.py $SLURM_NTASKS 1.6015114834842765 4.414056169955616 1.0714858470396105 4.032374330338809 0.15950490453686855 0.7600084161777949 0.23819575360142092 0.1828557341380322 0.11283437871191292 0.8919274099456668 0.3879526886485901 0166 -python ../Main_earth_system.py $SLURM_NTASKS 3.1339704306325373 4.470614882311956 3.7661605191568803 4.261851138562204 0.18437640819303705 0.5587633136790969 0.7333450275688621 0.14450990872316866 0.14449899746765046 0.9102631748931362 0.39015916362626046 0167 -python ../Main_earth_system.py $SLURM_NTASKS 2.44759200868167 4.899211842426947 4.246761139620541 3.890303230361358 0.1806472193650644 0.941320975205969 0.7421319915750256 0.13843316544683787 0.1301414003480854 0.10245810979918729 0.19554892570685078 0168 -python ../Main_earth_system.py $SLURM_NTASKS 1.3416393606426715 5.421399251000599 1.1908010629194632 3.8954039899260167 0.13734908237573457 0.9587432106171431 0.14864829458503281 0.13368544127487275 0.14353424719902447 0.5117204788599922 0.3832329778941209 0169 -python ../Main_earth_system.py $SLURM_NTASKS 1.976561354287583 4.082639510707241 3.3341692383011567 3.7968819414920936 0.11666605238562627 0.4038894768012702 0.9454855246590833 0.1995255772740715 0.12124753558203681 0.9833262801137901 0.2974872542638778 0170 -python ../Main_earth_system.py $SLURM_NTASKS 2.514906841057795 5.382337991882345 2.55645102286082 4.349389968059398 0.15694674776700482 0.5042242284476895 0.5762267127531648 0.1569753384481294 0.1429956320794734 0.9934264102420813 0.12435996436631544 0171 -python ../Main_earth_system.py $SLURM_NTASKS 0.8902176674552804 5.116006833070003 3.0342472339226445 4.231613082333436 0.1626823171404299 0.43484154918143303 0.4229254225894088 0.11271142735485032 0.14827915626618288 0.741028492252432 0.24218914548083675 0172 -python ../Main_earth_system.py $SLURM_NTASKS 1.8406263434644416 4.735050603044316 3.6122121225546 4.011139269550214 0.18716793411047522 0.23191401742414144 0.768141469887734 0.21065612572614034 0.1011625341322221 0.7472028264237768 0.24414482214018862 0173 -python ../Main_earth_system.py $SLURM_NTASKS 0.8619756315449083 5.316862510741362 3.1404903706227536 3.7134382211647154 0.13490044290255615 0.9010880352080516 0.3083837138666795 0.29688804828057447 0.11968845050415981 0.47132866168603604 0.33440351076134417 0174 -python ../Main_earth_system.py $SLURM_NTASKS 1.309509830120246 4.375883009791532 4.169925144028645 3.509294196282857 0.12565179307301777 0.31648915815216216 0.9269118720070878 0.25065149945463905 0.14425468029816946 0.4599871753140151 0.28895563709744143 0175 -python ../Main_earth_system.py $SLURM_NTASKS 1.2317932574639716 4.28430892034056 3.6191568269529517 4.4275015814354335 0.17961400723128568 0.12319288630771211 0.21322858252104382 0.19659108927746036 0.149317666634227 0.3979251089011947 0.15227039258247893 0176 -python ../Main_earth_system.py $SLURM_NTASKS 3.1300294649869462 3.6894789223415 5.027635266402951 4.434636274628156 0.10936609737635808 0.29221432570342354 0.7547615772424786 0.16427959101888184 0.14327115463604828 0.24882100022058276 0.27007925106522207 0177 -python ../Main_earth_system.py $SLURM_NTASKS 2.931964320295932 4.223457276102372 3.2292891441990834 3.730769118405629 0.13301457710978662 0.44777152066107395 0.6711404945664647 0.24670400334397954 0.12677526538223302 0.35058815681934774 0.2707351428630333 0178 -python ../Main_earth_system.py $SLURM_NTASKS 1.4795926891066966 4.610056975151641 2.406702392259216 3.5193558217229346 0.15843967070968631 0.6279113448150137 0.5051793210036533 0.2732132098244281 0.12569986909032496 0.666946911464163 0.31922594246084635 0179 -python ../Main_earth_system.py $SLURM_NTASKS 2.401070793523997 5.815486310361122 4.483474491058301 3.9982374099738975 0.1582937494457847 0.2778820269357689 0.8042975339767116 0.22760007845048943 0.1431406034817002 0.14672090281352032 0.34901989257093874 0180 -python ../Main_earth_system.py $SLURM_NTASKS 2.337893497748757 4.208448202046051 4.8009733714400395 3.959249448623927 0.18414794500723594 0.22517412353201072 0.7540008119564592 0.1667123706767896 0.12649653312791512 0.773772624938777 0.3688153798226854 0181 -python ../Main_earth_system.py $SLURM_NTASKS 1.590142725649713 4.105619280498676 0.8150248580065006 3.655088094556923 0.17649146005626326 0.47774071373499627 0.97007789256751 0.18691825890513536 0.13925660669340467 0.42124142009923016 0.2878429998934654 0182 -python ../Main_earth_system.py $SLURM_NTASKS 2.0353678601389067 4.721792111705313 4.120633139950762 3.843908546710429 0.11368613661450619 0.6307609931426953 0.33532778179914163 0.24710827759215065 0.13020297187355936 0.5637636593811077 0.28526852563751065 0183 -python ../Main_earth_system.py $SLURM_NTASKS 2.6242826645196375 5.666017023872226 3.4851810954054665 4.2434636128261705 0.19819053354961638 0.8657181916419935 0.5932272780833271 0.19766414315476494 0.13769187240438957 0.33400263581577183 0.3853901423116386 0184 -python ../Main_earth_system.py $SLURM_NTASKS 0.9686090287540127 4.997218216313296 1.0611329319274592 3.970127344906814 0.1798720310337276 0.3125007349473389 0.5699802094147254 0.17360989044826658 0.14664418691035946 0.8558879211770091 0.14218609288246875 0185 -python ../Main_earth_system.py $SLURM_NTASKS 1.1461303461612034 3.920470514450161 1.9390621798957406 3.6198554007357067 0.1739618534540389 0.6697039835871473 0.48855080268665896 0.14359967770022214 0.1283070425354078 0.6888055941680018 0.293185772436436 0186 -python ../Main_earth_system.py $SLURM_NTASKS 1.0858098260009 4.040288977434917 3.461426598226839 3.9499923660107013 0.18150790667897043 0.4605949168475625 0.8835011684483457 0.1541364816252789 0.11434599665710093 0.789538196002427 0.24996071330478484 0187 -python ../Main_earth_system.py $SLURM_NTASKS 3.16269617233361 3.623354993444178 1.2696147201975476 3.8704442332723428 0.1744389505955517 0.5667873443370789 0.7121984173308779 0.10414039476351221 0.13074130358009034 0.35218849852200784 0.13060331005533404 0188 -python ../Main_earth_system.py $SLURM_NTASKS 3.1860037242867776 4.016739953937984 1.1205747691859762 4.449776295351555 0.14494000271473834 0.49486096050185413 0.8541132151249604 0.2212251538495567 0.1427679741853944 0.8740613085334699 0.14965524094077992 0189 -python ../Main_earth_system.py $SLURM_NTASKS 2.349289976795612 4.958383247568062 2.67316348114685 3.8778305542787033 0.17472259682905217 0.3185353871480566 0.5557424301444865 0.2070416035116513 0.13540590220668575 0.7253038163289399 0.31020362630940124 0190 -python ../Main_earth_system.py $SLURM_NTASKS 1.4222918915509941 5.082629083796462 3.439551610987282 3.5884625392406293 0.11447916523697174 0.9383944996829436 0.6603920036740297 0.26803474650135173 0.13385743435716732 0.1546591095854366 0.31512384483710826 0191 -python ../Main_earth_system.py $SLURM_NTASKS 1.3592281878703325 5.545502473181538 5.310830615019778 4.487942694118091 0.11143753929766913 0.2789758996658427 0.16798727152134624 0.28373473534943433 0.10645635528613524 0.7204874156663175 0.10246314631875098 0192 -python ../Main_earth_system.py $SLURM_NTASKS 1.5014717510418403 3.8977019189797595 4.353974814213624 4.423385484345677 0.10816732402626526 0.9892505075741443 0.9366401382525088 0.20924317181769508 0.11026129406731365 0.9816623216624466 0.3246050747135356 0193 -python ../Main_earth_system.py $SLURM_NTASKS 2.656216180064057 4.9084254982535995 1.279660852971967 4.377596919904336 0.11358735039656617 0.156624904492878 0.3596814436402722 0.21522464523454277 0.14559239772782037 0.4406724331638404 0.15292352776301424 0194 -python ../Main_earth_system.py $SLURM_NTASKS 1.4301786020622043 4.186269525525216 4.020660850237458 3.6878556876611 0.158688212281687 0.9355423192735602 0.24305678658776222 0.14846702687388458 0.10057690402497298 0.26342365998598744 0.2912887569362476 0195 -python ../Main_earth_system.py $SLURM_NTASKS 2.1982754237435222 4.447047507983563 4.908613042544137 4.055402854795067 0.12073173305470265 0.8717927791375807 0.6671629294420054 0.19161141697208478 0.10532055309913783 0.8329061275804859 0.2933051371609002 0196 -python ../Main_earth_system.py $SLURM_NTASKS 0.9099204981719837 4.863596318094395 5.4399843337343325 3.9186282348009245 0.11137185049904053 0.922814443534134 0.7980515344914673 0.12589207382816964 0.12674047870438757 0.3373853670021164 0.1919748246913982 0197 -python ../Main_earth_system.py $SLURM_NTASKS 1.9102976448752897 5.833850221041971 1.7696659972204785 4.1489974880227205 0.17283018112181636 0.2704321070660052 0.8767960527590474 0.2532507476986713 0.10474160665464725 0.6692884429438721 0.11312274517539525 0198 -python ../Main_earth_system.py $SLURM_NTASKS 1.5583492958553928 4.028930628586545 2.2159202894979595 3.540308615022755 0.16556363360169168 0.733612712393644 0.36591617446941016 0.2156105166086185 0.10526916246051606 0.8675352169135434 0.14709426762660155 0199 -python ../Main_earth_system.py $SLURM_NTASKS 1.8522296350267515 4.249401241818376 5.134492500531427 3.535635696884104 0.18310275455104327 0.3155532031429919 0.7225437623179715 0.1862819223294442 0.12823260959553215 0.15369995166902697 0.3476679951748968 0200 -python ../Main_earth_system.py $SLURM_NTASKS 3.062378382295609 4.170859795270665 3.7383535353141664 3.766191872388532 0.14018970292369287 0.4584491748325613 0.6367959581856631 0.13193178379780568 0.11771586797097787 0.6072404259689305 0.3751943999458235 0201 -python ../Main_earth_system.py $SLURM_NTASKS 2.6073899768679274 5.027463285856265 3.0687954420196553 4.270454557515002 0.16258841551555875 0.3634176586708131 0.9687454869537667 0.19633531740314503 0.10023026646217963 0.1964755808798706 0.38568484184319196 0202 -python ../Main_earth_system.py $SLURM_NTASKS 0.9521416004634431 4.219183248689054 3.3509447300695356 4.222812709589126 0.1925814307083751 0.6868010285245904 0.6246970935069972 0.14551836460513387 0.14223556393990977 0.7126713612118938 0.11342917653975206 0203 -python ../Main_earth_system.py $SLURM_NTASKS 2.8029776741168453 3.669285506535208 4.076974827028097 4.30720788759011 0.1654716918339829 0.11950079194032392 0.2613609070322892 0.140387583561173 0.10982886432774064 0.8215513446351347 0.3487083246639674 0204 -python ../Main_earth_system.py $SLURM_NTASKS 2.132715942542047 4.882150798132056 5.328267824621172 3.759828290168189 0.13038805059221692 0.25410887823856615 0.46085297522650615 0.14941253020743067 0.1348631003907158 0.4666962282763185 0.3776181971903865 0205 -python ../Main_earth_system.py $SLURM_NTASKS 0.8168409791323079 4.11202065489319 4.409194930775923 4.054293745815199 0.13235749824657106 0.1796971535840652 0.9988462253721186 0.18025690860850754 0.1311958359759028 0.1067112749586669 0.25710526477361273 0206 -python ../Main_earth_system.py $SLURM_NTASKS 1.4918056242973299 3.6585838210730732 5.353127511889414 3.8228050820548685 0.14393490886978744 0.1899340964368459 0.3416147920923407 0.15865471092465439 0.11726401510506354 0.212668341994902 0.28979800065422767 0207 -python ../Main_earth_system.py $SLURM_NTASKS 3.08716482267251 4.369710709945779 4.886698763531155 3.764903816746432 0.15712854403720503 0.506091845314446 0.1034248454805178 0.14763528239277698 0.11388486526362544 0.8685252992013152 0.34436151458545167 0208 -python ../Main_earth_system.py $SLURM_NTASKS 2.050544180699468 3.57938444087249 0.9030730626426894 4.453564883893639 0.16109409394265384 0.11259720771802803 0.4327853791346399 0.25307528616630004 0.1335830619995419 0.2001273939039101 0.2691892581432648 0209 -python ../Main_earth_system.py $SLURM_NTASKS 1.4545277332941868 3.8712798271839532 4.869920199187303 4.1679328231351835 0.10696272525006653 0.6487939205426528 0.9653036046338961 0.11530913409895964 0.12211999759561874 0.8642143609654325 0.30554896393825315 0210 -python ../Main_earth_system.py $SLURM_NTASKS 1.490836467249175 3.868939495150031 2.8390777691009026 4.422175557154236 0.16636738755282593 0.45244131910235375 0.7194220498416207 0.2923701237879639 0.11873261686655406 0.7072508471486002 0.10533677020941777 0211 -python ../Main_earth_system.py $SLURM_NTASKS 0.9277895326656098 4.122012036756631 2.3120260484388444 3.640070976509549 0.167982302962952 0.8924760131731815 0.21928747971285556 0.12768261352153196 0.13734501446211936 0.7468414810900357 0.19934080029626916 0212 -python ../Main_earth_system.py $SLURM_NTASKS 3.0108975858410414 5.734879032498524 3.4527619885794207 3.8923624625338773 0.1634216768522811 0.7463193807889223 0.26921047732578535 0.1071210178071374 0.12323721700508863 0.5097625653824215 0.16304607664474652 0213 -python ../Main_earth_system.py $SLURM_NTASKS 1.3946272383355636 3.9606656385279058 2.8172366117057956 3.703597836637174 0.1773305931742822 0.6688251441581153 0.5544153237196447 0.17764177861174077 0.1309628176446902 0.21186176972982157 0.15354253454380584 0214 -python ../Main_earth_system.py $SLURM_NTASKS 1.991682453884531 4.076982280455702 1.2224682452530904 4.121403550377594 0.12316641980356385 0.1571529072084815 0.7930358186359915 0.19508138091508181 0.11640434109973205 0.31825872924071075 0.15484572828992446 0215 -python ../Main_earth_system.py $SLURM_NTASKS 2.096739677976844 5.615278923741312 4.833025481990402 4.156542548215027 0.15550472299350265 0.23052434877409236 0.17953064108912886 0.22694784202587817 0.14963237414573238 0.7764113662060707 0.28033580978065537 0216 -python ../Main_earth_system.py $SLURM_NTASKS 3.087251951664416 5.691987622130759 1.6240487236826173 3.6723386435564684 0.10072804075845579 0.17162121457713198 0.5525103735863186 0.2911568138455217 0.12667234952964732 0.9223953388233027 0.2340136428948044 0217 -python ../Main_earth_system.py $SLURM_NTASKS 2.251149433592655 3.6373773784007217 4.505477001767095 4.44349531812508 0.18445087790040118 0.19080369481339696 0.9052166636365925 0.16912795577333134 0.14079033291505483 0.3235618384554233 0.36498619858155346 0218 -python ../Main_earth_system.py $SLURM_NTASKS 3.035257436585457 4.176229699460453 3.382543296811038 4.312542100167734 0.18690913971714654 0.7172810024242492 0.9098829584695378 0.19410397904032511 0.1464518128110287 0.8753621079745999 0.15197144420284497 0219 -python ../Main_earth_system.py $SLURM_NTASKS 1.9473173241990909 5.256926546564955 4.643891181830478 3.8998856888999445 0.1208172261452012 0.2824108733597413 0.41692430531227587 0.13107968685777924 0.11712846546700378 0.9361557639907964 0.2510455651730219 0220 -python ../Main_earth_system.py $SLURM_NTASKS 0.9126789218467545 4.490584416965097 3.291437228520212 3.9353169985620995 0.16220340950918946 0.39409258666576386 0.38131943546187874 0.2965405833413842 0.14859393595790066 0.8287606628682268 0.2550628663682255 0221 -python ../Main_earth_system.py $SLURM_NTASKS 1.4651145690570888 5.7953902989688055 2.6007061109714167 3.8653417540211343 0.16276946758862393 0.5533034140661396 0.4029470490213709 0.1678240562385075 0.12751751414311424 0.36549529989269736 0.23331203450820445 0222 -python ../Main_earth_system.py $SLURM_NTASKS 2.443000775354772 5.800246878817827 2.816204425252266 3.630428962588269 0.14247070961936747 0.7242622526076214 0.6532781147504523 0.2428802281221781 0.11960609195980679 0.5286437112148497 0.126070021698708 0223 -python ../Main_earth_system.py $SLURM_NTASKS 1.7660556495415984 5.830593917477068 1.0824172212382186 3.8547785392146343 0.18792157825340855 0.970268475946465 0.22301934989096597 0.21824605638503375 0.12218444089985667 0.6367444121373785 0.36691987607723064 0224 -python ../Main_earth_system.py $SLURM_NTASKS 0.9229612405430692 4.217279656007448 0.9073434034342576 4.04645405811146 0.1618621367050792 0.35525463808085456 0.9260905855647359 0.2615932077080556 0.11828050610103188 0.518121493221245 0.10383071205322426 0225 -python ../Main_earth_system.py $SLURM_NTASKS 2.5067203918633654 5.65981320706403 0.9292037403636806 4.321131532657673 0.16971472709005486 0.7962219349106431 0.2713475528471177 0.28596497016887024 0.14421329852814518 0.1304337010142921 0.33187240750130975 0226 -python ../Main_earth_system.py $SLURM_NTASKS 3.1098445349268475 4.388497408963188 0.9581286830862232 4.095452048327486 0.1935600333381559 0.8580450650026119 0.9967052915525315 0.28637317336508694 0.1497549555440078 0.4231720016326078 0.2882355948609394 0227 -python ../Main_earth_system.py $SLURM_NTASKS 0.946065084153933 3.990989939751944 4.4097362348656945 3.873184799789181 0.1098281588105579 0.9767423313238629 0.13107491147456934 0.25275504523050935 0.12111773992852763 0.9417428310992321 0.16269737752421798 0228 -python ../Main_earth_system.py $SLURM_NTASKS 3.179045447492509 5.803138195894443 3.242176624595376 4.064457214641463 0.11563558626647095 0.13688853476090995 0.6459073955538115 0.12808888934369705 0.106567289901609 0.8733096221510538 0.3449647595468208 0229 -python ../Main_earth_system.py $SLURM_NTASKS 2.7257686660648384 5.599258737747323 1.5141661580654238 4.023715799298919 0.1882467935735348 0.4642022963592509 0.8623958427788806 0.1923997514067562 0.14971833163293768 0.49318963995188414 0.3942793239180983 0230 -python ../Main_earth_system.py $SLURM_NTASKS 2.636661905454945 4.658279720034555 1.0239031918753934 4.464297613087837 0.13859504117971055 0.5195661909613793 0.36027694386685816 0.28011788047449127 0.14814367606407552 0.25299869795524804 0.19909898042615592 0231 -python ../Main_earth_system.py $SLURM_NTASKS 2.223151271115276 5.634614838405787 4.656254396960564 3.5611932157222785 0.11455560788202175 0.5394415254400878 0.9077014655394677 0.23956086893229622 0.1015393296541577 0.6089128129388376 0.33404920602084814 0232 -python ../Main_earth_system.py $SLURM_NTASKS 1.2960924211691642 4.72481356834076 5.479330319520767 3.8663241235116645 0.16047204812380753 0.2692504414175356 0.8905989844886312 0.13098020772673383 0.10499561736490796 0.7587120209969217 0.20815306275259907 0233 -python ../Main_earth_system.py $SLURM_NTASKS 2.0824615581247796 5.3051615560703675 5.438014165158296 4.013557113691602 0.10910693713645085 0.5946698161816971 0.6897536788498075 0.24575631058426978 0.11819011197422555 0.28895245434557637 0.13273331546904332 0234 -python ../Main_earth_system.py $SLURM_NTASKS 1.5934077287771093 5.408643650355222 2.821495468803575 3.956127160271513 0.10627695832475423 0.7419291572990264 0.37477106059872334 0.12410037744262317 0.13677974081632063 0.9733838806379791 0.10475595798025404 0235 -python ../Main_earth_system.py $SLURM_NTASKS 1.2584083087353002 5.723345375651598 1.5535162275071175 4.370817885515264 0.15027941605572936 0.6501876261431992 0.1767475194230494 0.25899267906962653 0.1296209688456884 0.73066334569176 0.264460231631656 0236 -python ../Main_earth_system.py $SLURM_NTASKS 0.8671201125591403 4.980897493724964 2.805565983947619 3.951019016589342 0.1629027434747783 0.6141571647924123 0.7101334499718441 0.17907257309116545 0.12374288980441833 0.679133607332048 0.11593438393116037 0237 -python ../Main_earth_system.py $SLURM_NTASKS 1.3585067359473335 4.984410260620901 1.54544189737409 3.736538263072842 0.10677182666653807 0.10750712873363817 0.9738756414137808 0.2410352935887339 0.14020113780754798 0.5832395023012229 0.3724924067069767 0238 -python ../Main_earth_system.py $SLURM_NTASKS 1.823356668759598 3.815272325906821 1.666693271595022 4.440313201087622 0.17241928521180439 0.3891585932896058 0.565974993995087 0.17012658517315585 0.11439380265096066 0.5461788454100798 0.10023934085085574 0239 -python ../Main_earth_system.py $SLURM_NTASKS 1.8164076789839427 5.0202384374400255 1.0325818343473014 3.740878814190926 0.15812231295448803 0.18492826137517857 0.9617185450732704 0.24770952766053025 0.12334324220127924 0.39033869591995796 0.17036806961908185 0240 -python ../Main_earth_system.py $SLURM_NTASKS 2.759108920966391 3.85105707156508 1.6716590164524416 4.475811658460019 0.12231149890104796 0.5154540126719126 0.4336700014791893 0.265572855772379 0.11760541519843465 0.2506449943774383 0.18627643757978102 0241 -python ../Main_earth_system.py $SLURM_NTASKS 2.4983516511173285 3.8330974812945495 3.1245840827784477 4.005766288000737 0.19854723568542548 0.21405108011648358 0.1936016450998992 0.292402582064556 0.10766577629335404 0.29932522487275537 0.2487648771307264 0242 -python ../Main_earth_system.py $SLURM_NTASKS 2.3768416598637714 3.6958160624224288 3.5329220021005705 4.016966138770282 0.12683561335482582 0.25649744111366257 0.2634564763738445 0.27531979487408553 0.14103481359311806 0.3790879048982513 0.10888809315266643 0243 -python ../Main_earth_system.py $SLURM_NTASKS 2.62766492600815 5.794674338685722 1.721670046225893 4.203278180607791 0.1472286706971664 0.2604868446978308 0.9360899514021113 0.22468073380102355 0.13584843925007317 0.5949692226164837 0.15986764923231786 0244 -python ../Main_earth_system.py $SLURM_NTASKS 2.487706031366363 4.036995222859789 4.516723872602203 3.706511419188736 0.12694582208207092 0.36823957202209434 0.9483408118517478 0.17844170329918072 0.14870966995339274 0.5845237779528885 0.21455761512698138 0245 -python ../Main_earth_system.py $SLURM_NTASKS 2.837367697960783 5.1456505400268355 5.0762468977785495 4.113247194221919 0.12158220482916154 0.30146875912540916 0.6117968154648384 0.27513796922845946 0.11650742097133032 0.6957786799564009 0.3989332679666816 0246 -python ../Main_earth_system.py $SLURM_NTASKS 1.9804532581153864 5.188853845826104 5.347993363987994 3.852928126087781 0.10821980040510502 0.545716403561737 0.22686253305063317 0.20769805885969514 0.11002980691482576 0.36612300071655157 0.19281452617009848 0247 -python ../Main_earth_system.py $SLURM_NTASKS 1.869268040517149 5.1644940826617685 4.736414539884119 4.212983552380634 0.134159403499607 0.945331407666545 0.8066844665862127 0.1755953170838288 0.10411891952976556 0.9045850973667616 0.1078179787537451 0248 -python ../Main_earth_system.py $SLURM_NTASKS 2.728717799344553 5.254126317522664 1.1459726468764821 4.226679726084738 0.18478153344525142 0.6561435648795886 0.182548464441055 0.13032821641379086 0.13519368800990533 0.9122257251240954 0.22322311591727276 0249 -python ../Main_earth_system.py $SLURM_NTASKS 2.004319981449405 5.3982249843568235 2.1004314798880737 4.367664380996235 0.1950373310387796 0.3607630565516561 0.6437099858084915 0.2674893283124224 0.1026424469977172 0.16323699497936878 0.21723077916542521 0250 -python ../Main_earth_system.py $SLURM_NTASKS 2.016915800844539 4.660448914508034 5.236387215988675 3.871466258920395 0.12948137144499983 0.1659450604456736 0.7172807161370527 0.16656831381420936 0.1461475822628264 0.3670912162554756 0.23829575174795115 0251 -python ../Main_earth_system.py $SLURM_NTASKS 2.553692952357043 5.974868714730675 1.8398228212204955 4.1629371278735645 0.13678376073278675 0.11539297666044881 0.522447065928373 0.28931170593943156 0.11392877032542505 0.14108616874254556 0.18707213450757273 0252 -python ../Main_earth_system.py $SLURM_NTASKS 2.9835848963054854 5.566468698250535 1.1156281902810286 4.208112093714471 0.16381651978770162 0.1312745391648785 0.8912170129972095 0.22900457013931008 0.11197764740201897 0.7798612569850182 0.377220191267291 0253 -python ../Main_earth_system.py $SLURM_NTASKS 2.4137408835306444 4.5602100982216776 0.9936410104307345 4.368666869741459 0.17367532720605572 0.5931570807234238 0.30412820686311637 0.12699887968002493 0.1408716062891967 0.8054016420957265 0.33711683107668655 0254 -python ../Main_earth_system.py $SLURM_NTASKS 2.6897195800221363 3.9096540167635125 4.898561891320055 4.391620206134134 0.12048795813559648 0.8804806683588177 0.4564463565645084 0.2338028136125673 0.14124259990314514 0.9652963665805846 0.23979252864786732 0255 -python ../Main_earth_system.py $SLURM_NTASKS 2.1414012970281604 4.207424545958664 4.057749137595568 4.457559030986143 0.10862611702718537 0.730291939148957 0.8785105328735261 0.2567335296409836 0.136095524841393 0.5168673433665029 0.38665201990743125 0256 -python ../Main_earth_system.py $SLURM_NTASKS 2.5329176666029714 5.068805137616595 1.3616441258017513 4.1030305934436555 0.1274669283444756 0.7203238907647731 0.5918919382717467 0.2271665003665887 0.11312481814799442 0.8172920932798349 0.3998171686791149 0257 -python ../Main_earth_system.py $SLURM_NTASKS 2.020334135309797 3.9154913645049723 2.2006200043416353 4.082085079008281 0.18634088426665643 0.10309022819605947 0.8808638345038429 0.11800390563829147 0.10899878572100762 0.6585395995137617 0.15453659020587057 0258 -python ../Main_earth_system.py $SLURM_NTASKS 1.5887606540956691 3.564229263702122 3.1882138798627464 3.5134912143866672 0.16945312027239104 0.8095825079855953 0.12739610771596768 0.2422324468329295 0.10731972651301147 0.4614675505356589 0.29965935939323624 0259 -python ../Main_earth_system.py $SLURM_NTASKS 1.9871205764477722 3.767491941252568 2.0549327352562514 3.500048553143908 0.10441278204557229 0.13279784830003405 0.24144762007459034 0.2521331089270812 0.1265869403360694 0.9312309873106227 0.22986613352992283 0260 -python ../Main_earth_system.py $SLURM_NTASKS 2.902499444541532 5.2295341716253105 2.7436063470875123 4.491485978278049 0.13318098339493625 0.8426232030289369 0.2962553728389594 0.12843385217460884 0.13796128752766132 0.6156604040831075 0.20375303602992878 0261 -python ../Main_earth_system.py $SLURM_NTASKS 0.9776722980861249 5.626943911031317 3.6683105125061877 3.6779129968478945 0.17954788284635148 0.2280087654033048 0.22124727880765976 0.23889543547743353 0.14834053030401384 0.562320838705928 0.373824374529649 0262 -python ../Main_earth_system.py $SLURM_NTASKS 2.8089796001604217 5.517289405674359 1.088470165743305 3.746673095874798 0.19345241977727223 0.39081927444705544 0.9583811433607098 0.22623581547862476 0.13311011152407895 0.21655022935173418 0.2151584602210378 0263 -python ../Main_earth_system.py $SLURM_NTASKS 1.3181080762857453 5.331766130841375 1.6542490384022344 3.7207118049208243 0.1146049600630076 0.48795091293571824 0.31296446229234165 0.20967056808427886 0.1461972629568456 0.2581974087851018 0.3860891507359191 0264 -python ../Main_earth_system.py $SLURM_NTASKS 2.937429902065155 4.783798781715298 2.5711035252039185 4.119259692038488 0.16512672148351398 0.5255871435562495 0.3133721635555572 0.12560959201539063 0.11522645887988293 0.3029937512267307 0.23571317060146307 0265 -python ../Main_earth_system.py $SLURM_NTASKS 2.2311787233299967 3.772710313129594 4.698760302794626 3.6641146789740544 0.19152891625105262 0.40992300668000636 0.8454019335190603 0.16746855468688981 0.11805217390258041 0.975875324058168 0.36350707199185095 0266 -python ../Main_earth_system.py $SLURM_NTASKS 2.887007812016888 5.8239848574480755 5.429848474525665 4.273684545691172 0.1886750614531638 0.4179803353999667 0.9067705589517769 0.16038107663121903 0.12282026449677357 0.39085790811340293 0.36703313112231406 0267 -python ../Main_earth_system.py $SLURM_NTASKS 2.1216054616015594 4.448875363329668 0.9897815368295653 3.8868885295324933 0.1678862946348066 0.6617410591136599 0.49599246849102807 0.2570281330066335 0.1395378671995497 0.7431943422479099 0.12163844608353212 0268 -python ../Main_earth_system.py $SLURM_NTASKS 3.1936166692430863 3.9290799121209474 2.56458332889341 3.7744126720750883 0.13566783235531807 0.5571973602023423 0.9529532689416952 0.1853011434034782 0.11220817100330142 0.8850647454065105 0.16284637679109454 0269 -python ../Main_earth_system.py $SLURM_NTASKS 2.4777978763045407 3.541527318609078 3.5922291688644528 4.199803272189793 0.12327670063176116 0.12936072856971145 0.642065652310539 0.12888568580729756 0.10105724637541175 0.1238236631517747 0.23490556357185668 0270 -python ../Main_earth_system.py $SLURM_NTASKS 2.330363949536417 5.376403339236552 2.082244006656207 3.5533267711691137 0.1702201001489803 0.5577396804587961 0.47471704118937297 0.21945412787002413 0.14818711818275532 0.1216056515249313 0.10486452674465256 0271 -python ../Main_earth_system.py $SLURM_NTASKS 2.9733594690976766 4.66937712814863 4.127750061817624 3.8247611893275564 0.19316388664471457 0.2989583501086851 0.4154905038863853 0.15157616077385577 0.12828248004869205 0.48925238824512496 0.2388361426487206 0272 -python ../Main_earth_system.py $SLURM_NTASKS 2.8215768289741012 5.779829531745927 1.0475743071535435 3.941728099991055 0.14266278704631222 0.6340928561833019 0.8825147444480126 0.17300280292800435 0.13107626663810315 0.2618070179025668 0.1987439934036841 0273 -python ../Main_earth_system.py $SLURM_NTASKS 1.774947944419666 3.7627861868514376 2.4922840921366998 4.429742736217486 0.12093129193043017 0.6263390214010577 0.8508851548400467 0.17589118871443635 0.12093567162133875 0.46940415084784626 0.301109069197401 0274 -python ../Main_earth_system.py $SLURM_NTASKS 1.322668196658126 3.966766649830103 5.384160538743747 3.922873900135091 0.12429541606383152 0.6004410551521849 0.8212914972976076 0.19842188775264946 0.138748943267686 0.5369115403000504 0.3380182789893045 0275 -python ../Main_earth_system.py $SLURM_NTASKS 2.3163201722595153 3.958282370186593 4.050827401639463 3.931648073735663 0.11893885717223246 0.47307961118524766 0.900846572569227 0.18614480660729316 0.14570283788994096 0.20938754839690588 0.2946012138225351 0276 -python ../Main_earth_system.py $SLURM_NTASKS 1.3503959894240996 3.8783142975884872 2.84365891649058 4.365240862161118 0.10111742236944897 0.6749383081167839 0.6378152276549905 0.10896776649740514 0.14721901600358153 0.9483053001519681 0.22520885508490826 0277 -python ../Main_earth_system.py $SLURM_NTASKS 2.675566919135031 3.9038568795883233 3.187558683142786 4.342767806502571 0.17928550965832127 0.6270391230842548 0.42610802016666627 0.24091854907024343 0.1395612974139585 0.6182073003647316 0.25061011440498004 0278 -python ../Main_earth_system.py $SLURM_NTASKS 0.9488018498429975 5.311557622750296 2.357280360165093 4.416280130785274 0.1955303298213571 0.726263058999592 0.595491221354892 0.2245333692725553 0.11752130530841765 0.2610790817751146 0.2873610878407502 0279 -python ../Main_earth_system.py $SLURM_NTASKS 1.4830943178822462 5.944581453181115 1.7413226742026793 4.3107796326239365 0.17489817553577378 0.9503918472696348 0.6471723811166256 0.1745328721914312 0.14114423074499666 0.7752124489705049 0.27550167407444326 0280 -python ../Main_earth_system.py $SLURM_NTASKS 1.1671183112235606 5.72530482021118 1.9031289517019034 3.6565167669155105 0.14793166451329523 0.30708123686984556 0.60405046738475 0.11799497601692535 0.10191844733672181 0.508040834911252 0.3224252885812496 0281 -python ../Main_earth_system.py $SLURM_NTASKS 1.5843714741815944 5.539914489969913 2.728508517723926 4.4068094005073934 0.13437901602512414 0.3017757066904351 0.21382775754259098 0.23305041775200422 0.11879051621418661 0.5239803105685192 0.20638982718531992 0282 -python ../Main_earth_system.py $SLURM_NTASKS 2.846896682569046 5.86818674237511 1.735058407732712 3.7535911110593814 0.12912365632939826 0.9492262967077024 0.8571377381156176 0.20795857494759878 0.10208063956097785 0.41995143402849067 0.21319887480948801 0283 -python ../Main_earth_system.py $SLURM_NTASKS 2.468788884510902 3.744332364807043 4.083589303124546 3.5211659042597643 0.1000241155430201 0.12428600347705587 0.9976285283105545 0.20914971439488234 0.12866447488239188 0.5256797340044562 0.3185923251588402 0284 -python ../Main_earth_system.py $SLURM_NTASKS 1.0943138557464338 5.464539946342496 3.754416679536101 3.8117147079149487 0.16927863307258767 0.30971759127190224 0.4352957085071897 0.25226814967328987 0.13549893471016933 0.7908043850632029 0.25227278028226274 0285 -python ../Main_earth_system.py $SLURM_NTASKS 3.1986300999057438 4.538214021921084 2.7571334486113477 3.657516311063261 0.12577878654104946 0.400742273536952 0.6018096920760801 0.2940654226672931 0.11172701247788427 0.4294538046373595 0.16355302471484823 0286 -python ../Main_earth_system.py $SLURM_NTASKS 2.862730640174034 4.320253858393538 2.0296233951741636 4.085448344140165 0.1676939149968567 0.9535646325541517 0.8890819345973209 0.15392905619608435 0.12767475987065405 0.6140509016178178 0.2892399480059268 0287 -python ../Main_earth_system.py $SLURM_NTASKS 2.106646077419881 4.679334205020858 5.12672225093891 3.69863544376941 0.12645708373901907 0.7408106840351716 0.92242878435672 0.25386817055107425 0.11207915014267998 0.6535215165541591 0.13989500662710763 0288 -python ../Main_earth_system.py $SLURM_NTASKS 2.7367277712819096 3.524644503716012 1.1837367772106184 3.9481587614338283 0.166201012482309 0.7536370272062342 0.1723162030319964 0.23354593154121803 0.10847498177395012 0.8138164969185417 0.21039089615620585 0289 -python ../Main_earth_system.py $SLURM_NTASKS 2.3324389803708034 3.9977952901073617 3.1631453877545797 3.690292414342422 0.11867774299528121 0.7745298613577734 0.19145713440647222 0.2758792620670834 0.12272667753167031 0.9333583209825101 0.24777724439293025 0290 -python ../Main_earth_system.py $SLURM_NTASKS 2.282571237671351 3.789678281398614 2.586445380087728 3.652243646084193 0.1899510501070953 0.8291399117177699 0.7988304172761431 0.12192928935049557 0.12505215110126736 0.9443532808846475 0.15183597752256484 0291 -python ../Main_earth_system.py $SLURM_NTASKS 1.532561827473304 3.849637016335369 3.926374036942068 4.07136921815088 0.15544171838445095 0.17598987118934686 0.5322729985620737 0.26431335380659104 0.1396339199703825 0.742248694201874 0.19655839361281535 0292 -python ../Main_earth_system.py $SLURM_NTASKS 1.968703766618307 3.644647530827747 3.923300347151552 3.5153327279819155 0.17063296676315393 0.6656453682646066 0.5626019622150471 0.27304914076191 0.1059111006936814 0.10758661285316609 0.38839017786467456 0293 -python ../Main_earth_system.py $SLURM_NTASKS 1.510847944517455 4.840691352995673 4.74064672444806 3.7952396601673613 0.13951301847738426 0.7800401044390165 0.6401005668035479 0.20842386174945554 0.1086603293824904 0.8083860927084908 0.2582815184800845 0294 -python ../Main_earth_system.py $SLURM_NTASKS 1.3989118493561477 5.470971917410476 1.3928464915179573 4.027529977646837 0.1412050210440475 0.20002020159386408 0.521368340488121 0.14689704273216733 0.10691566289711493 0.9768083112823639 0.3862573914566574 0295 -python ../Main_earth_system.py $SLURM_NTASKS 2.999826462857616 5.92215604990717 0.8692168175066465 4.254918006796595 0.18133765725426274 0.9438209408282245 0.3573835465326223 0.139660461628638 0.14039696507728364 0.5582919023453504 0.2982630916397342 0296 -python ../Main_earth_system.py $SLURM_NTASKS 3.0674872970456875 4.50568024891304 3.5693520254505486 4.259588957330093 0.18081834631132745 0.45803135106473314 0.5852764327572272 0.1239594405929944 0.11608133850680045 0.806168255113203 0.16536341944146116 0297 -python ../Main_earth_system.py $SLURM_NTASKS 0.8361277972874794 4.438986527066973 3.1518165545377794 4.4944710780924115 0.12069915146001034 0.3741156338244819 0.5808433155986077 0.18718994183737586 0.11692758250123261 0.5517816892496267 0.1559332640836604 0298 -python ../Main_earth_system.py $SLURM_NTASKS 2.8942520571157484 5.950185708325666 3.978804237180719 3.62687754837694 0.1737801869772289 0.7940737142235269 0.6693803008141482 0.29525868792072507 0.1128543857537082 0.782101826986539 0.1403180868364951 0299 -python ../Main_earth_system.py $SLURM_NTASKS 2.7243518043475694 3.6208401067108587 5.376760276237112 3.911986841912578 0.13649019295219453 0.8964733554338848 0.2368511373150919 0.23406114877316245 0.1262490036192743 0.26978475576757976 0.37641462294866745 0300 -python ../Main_earth_system.py $SLURM_NTASKS 2.9466641381126513 5.210818588202745 4.160377492907516 4.355843316832686 0.1453627031741424 0.12971949621355736 0.3508257833715912 0.2886064010776517 0.12086222828570564 0.41921146046834 0.17567129347795246 0301 -python ../Main_earth_system.py $SLURM_NTASKS 1.1676955136639076 4.605065848112069 1.262821974315643 3.943397792536945 0.19232394530264 0.7319102590258147 0.5200367083484161 0.14205427928108422 0.14300649969482757 0.4334617204435589 0.3189105677874162 0302 -python ../Main_earth_system.py $SLURM_NTASKS 2.047616704023305 5.258432107814099 3.3903996340173226 4.042542082381977 0.11427884975724344 0.9365745068410113 0.5453360774128051 0.286726528956436 0.13006412180335464 0.8728699825381172 0.13240094846581069 0303 -python ../Main_earth_system.py $SLURM_NTASKS 3.1553093381473367 5.754596806926688 0.9157047281411582 3.577487867672011 0.1979372925854363 0.618860497773061 0.5637980243813334 0.10622210711393516 0.12775795437291343 0.35018032600912175 0.12528171334562255 0304 -python ../Main_earth_system.py $SLURM_NTASKS 0.8736595425518046 3.8018957379459644 3.3240076235116094 3.59195579293864 0.1907648572764184 0.17857809039390055 0.5708224325621983 0.12787295099242338 0.12759716639693688 0.24637074197261963 0.15333942097736522 0305 -python ../Main_earth_system.py $SLURM_NTASKS 3.1228684124063504 4.673997809462387 4.317872073624658 4.280140521576257 0.15670383146278602 0.9419686653539323 0.1458069475779452 0.23422293935233499 0.12861558273676638 0.9952845944672655 0.3052273509169562 0306 -python ../Main_earth_system.py $SLURM_NTASKS 1.982821057544137 5.31472971008129 2.0531907629330766 4.298294884006898 0.15133788561246558 0.33807008197628385 0.2942698980112215 0.29757665180985693 0.13469379580758967 0.9246611746123952 0.3320979631469718 0307 -python ../Main_earth_system.py $SLURM_NTASKS 3.002546027084793 4.098533312057372 3.1983649462003028 3.518476285949633 0.12382421353632343 0.36200864535129307 0.5824995771628989 0.11736380863613693 0.1469640734367786 0.5598442541178051 0.33329087125651014 0308 -python ../Main_earth_system.py $SLURM_NTASKS 1.9987660065066266 3.8918214997798937 5.055426644334606 3.878188186299127 0.17424643167382556 0.9217205940932597 0.5126610876712685 0.2179362537188004 0.11200646158964743 0.42642199700683725 0.2025693076720249 0309 -python ../Main_earth_system.py $SLURM_NTASKS 0.9299911856624014 4.367305681324605 4.510469977978064 4.447569071102047 0.1370344259022509 0.3658078820620272 0.9605513431720639 0.13649143158075444 0.12138901432452612 0.17110205230558057 0.286098955922536 0310 -python ../Main_earth_system.py $SLURM_NTASKS 2.2257401545284203 4.714107202601444 4.428150295932556 4.062553360744183 0.17350720846606743 0.5243041051128788 0.7477154409829225 0.10540277325732725 0.10801173476969844 0.3302956051657381 0.39058261339252076 0311 -python ../Main_earth_system.py $SLURM_NTASKS 2.7825212817180907 4.392323028103259 3.1096594824221144 4.460879128392906 0.15682271142173065 0.7438083916197704 0.18803035762478304 0.1133342094252243 0.13082049554532874 0.25730201918205803 0.14762648890828053 0312 -python ../Main_earth_system.py $SLURM_NTASKS 1.7373458362058012 5.402779943874783 4.235054788390392 4.286001830953699 0.1047067645644005 0.8686783276358441 0.418123283662275 0.16211117462479321 0.10098571781932421 0.28075422424364194 0.29863696551013597 0313 -python ../Main_earth_system.py $SLURM_NTASKS 1.7952836341100697 4.5321624529886515 0.8273314159469973 3.618449125134049 0.18096783538512878 0.5335063156940448 0.3712664130853186 0.12729705712652567 0.10420618860635766 0.48839298349131377 0.12838594836542336 0314 -python ../Main_earth_system.py $SLURM_NTASKS 1.8996741866909175 5.3691848983740265 2.807722872573759 3.8148899122548574 0.13710074937576466 0.4416037107032551 0.248309600191562 0.11948969115029397 0.11232826635877294 0.27491217199825424 0.33109904692140146 0315 -python ../Main_earth_system.py $SLURM_NTASKS 1.8882633163517584 5.002589957942395 4.840538715982527 3.5634724588499394 0.15179128663546268 0.7770075527043003 0.8381923407114883 0.2715906508238787 0.11333271346572185 0.5470017077853502 0.17781646943579518 0316 -python ../Main_earth_system.py $SLURM_NTASKS 2.1865656584138073 3.779397726458309 2.0777940830148967 4.469543484324425 0.16149541119300295 0.2952248787535744 0.5302399687215854 0.19334862059872934 0.13794682184820015 0.3080230867387015 0.16218095208359332 0317 -python ../Main_earth_system.py $SLURM_NTASKS 1.760029145465543 5.685084742760229 5.13273524661584 3.5590773723390052 0.18302242275214078 0.21141346873143552 0.8642220592241474 0.2696432097984789 0.12263021471641006 0.43062082396923473 0.10212132645892043 0318 -python ../Main_earth_system.py $SLURM_NTASKS 1.3320379459430258 3.747749589233585 2.4762097234745006 3.581450832890664 0.18017635733968354 0.3944901908345495 0.13050751109852368 0.27198700074798166 0.14347696461306833 0.8876666953601938 0.11257241463837234 0319 -python ../Main_earth_system.py $SLURM_NTASKS 2.4084025947925434 4.7994573109844065 2.9935600696471294 3.9684343754591 0.12286419256100094 0.5907561329430888 0.38901763966792424 0.18376362624251252 0.13234154362663986 0.40097881079889774 0.2836050047996249 0320 -python ../Main_earth_system.py $SLURM_NTASKS 2.789971100444789 3.8214883245607183 3.1730711699877956 4.380578671538387 0.1320680098274231 0.7584220263350523 0.24448918300411807 0.29636268141633615 0.10235295534963575 0.9093389697782444 0.23311682034047648 0321 -python ../Main_earth_system.py $SLURM_NTASKS 2.2778027635012443 3.736273528891121 1.0431047576317345 4.42093998601222 0.18817052282353774 0.6881877867028585 0.5257394446997149 0.10465110910499184 0.14401380318537188 0.5420546029697012 0.26129540219697417 0322 -python ../Main_earth_system.py $SLURM_NTASKS 1.445185413091656 5.446131402928875 4.614166328545578 4.366112603581929 0.1751955375850568 0.910347709359334 0.15377973529432426 0.16486623922211058 0.10775939080875606 0.17268243703775554 0.1697705186262909 0323 -python ../Main_earth_system.py $SLURM_NTASKS 2.503904094782775 5.308203041430968 1.1273879266293347 4.410319297960538 0.15889131617355412 0.24680627518634507 0.24996738788793513 0.19661771223968205 0.14189139686356114 0.11573134631864113 0.3875636635350024 0324 -python ../Main_earth_system.py $SLURM_NTASKS 2.1919426868333836 4.140418607326903 3.2206724945092473 3.512008542424496 0.12939056325304477 0.3818159875907853 0.6730207022378367 0.10928314391742436 0.1076049641357224 0.7031927479371936 0.3993697753501425 0325 -python ../Main_earth_system.py $SLURM_NTASKS 1.733531581222282 5.351289056110266 4.025646660396158 4.164626140343838 0.1561511082411886 0.1150340832561344 0.290603701462875 0.176629906333645 0.10177171375189888 0.111196122925972 0.34003396624494125 0326 -python ../Main_earth_system.py $SLURM_NTASKS 2.7707570959014682 5.91122446393615 1.6744809731016401 4.326551455767975 0.1811395919602522 0.992307602445313 0.8520447717197784 0.2987801413842406 0.12232674697200488 0.9547387997066614 0.18208221280239778 0327 -python ../Main_earth_system.py $SLURM_NTASKS 0.847380119562575 4.9624866644760735 4.807759861003545 4.382827841834843 0.13783937414041342 0.6170183234837044 0.38059007470021056 0.16503029158164756 0.13044136063917017 0.44168169247744804 0.356544738072204 0328 -python ../Main_earth_system.py $SLURM_NTASKS 2.087983956398438 5.630505782519512 4.16062832679745 3.603899661390382 0.14178601972984814 0.5170553521611332 0.15891935404207408 0.11868086617787073 0.11504804461704585 0.15287987603089104 0.26277667974528796 0329 -python ../Main_earth_system.py $SLURM_NTASKS 3.0218093961141337 4.852892778956038 2.5374007054974794 4.455951541217747 0.19129864668780083 0.9529543515368407 0.4683901605391345 0.2799618155192842 0.14073206918305906 0.1171381842511401 0.34125219693436126 0330 -python ../Main_earth_system.py $SLURM_NTASKS 1.708052427899184 4.557119657840204 0.9655886013774981 4.161779318940113 0.12959397576241194 0.6854347037509013 0.6391502318955288 0.21116422414120556 0.1450110028851075 0.692566958954179 0.2041459538935381 0331 -python ../Main_earth_system.py $SLURM_NTASKS 1.7853453279449139 5.431830904524882 3.4228068705319785 4.379029381267897 0.14706006327352475 0.7489670283464311 0.6570319352526959 0.11216703206896295 0.11865534576505811 0.532986202409211 0.1986824381460196 0332 -python ../Main_earth_system.py $SLURM_NTASKS 2.410971477857112 4.051117758257211 3.0127089658833093 3.819334390382059 0.1969235176226303 0.24814249824898543 0.6206099389819841 0.16617020579854552 0.11592834981055464 0.5694899575154782 0.2858797721014862 0333 -python ../Main_earth_system.py $SLURM_NTASKS 2.8984735720567123 5.011335902190531 5.040373372986087 3.971262134775193 0.13029073617232295 0.6508695030106224 0.5295178663215407 0.12011788557268471 0.10503726158972879 0.2859426434485618 0.24543705168976912 0334 -python ../Main_earth_system.py $SLURM_NTASKS 3.1607539319692286 5.827742910340577 2.793330643751157 4.428740677841952 0.12500646735001514 0.14347310032498478 0.19877399662936301 0.22640880710702396 0.13934332065588556 0.9063737636579351 0.2673758737864359 0335 -python ../Main_earth_system.py $SLURM_NTASKS 2.3077368076482525 5.132486113254803 2.1324832403878102 3.793845547443659 0.19324788071544424 0.6018068581993846 0.2748625129831398 0.17861486801937815 0.14797998478629415 0.8773951226168468 0.373215600012342 0336 -python ../Main_earth_system.py $SLURM_NTASKS 2.455766427280201 4.964259993590025 1.3519644341885453 4.0966565785212445 0.19278139870350552 0.6443066676729811 0.24907363538161445 0.26885347683322314 0.10543526383709516 0.8908431299137288 0.13500697010977286 0337 -python ../Main_earth_system.py $SLURM_NTASKS 2.3277873939859113 5.714141200673527 4.434080715290179 3.7314350700606393 0.13970301189064716 0.6232284417742752 0.6739205749185259 0.2054819658536985 0.1067556969944748 0.3683263343018055 0.24598391646857756 0338 -python ../Main_earth_system.py $SLURM_NTASKS 1.6921737687897953 5.18700858979266 2.4867821055120967 3.8409368570871787 0.19033984499564688 0.5623259119494379 0.2761546699877288 0.1447762925470509 0.11255596779534309 0.23890074830285898 0.24083062449494833 0339 -python ../Main_earth_system.py $SLURM_NTASKS 2.3517028531684105 5.386574538243239 3.564646492101817 4.388505343969568 0.13510787053925855 0.5004259504419356 0.9409467809596134 0.1291641597929404 0.10864655316893115 0.9500155898578785 0.2393220823918903 0340 -python ../Main_earth_system.py $SLURM_NTASKS 2.943262832219875 3.7544944118601915 4.873924210818257 3.7185153848838035 0.13004643275967256 0.48281445191801176 0.6144208908615219 0.17105503407612427 0.14732465124503136 0.8400866963447512 0.15119048445148597 0341 -python ../Main_earth_system.py $SLURM_NTASKS 1.0591597446125718 5.17076266422178 4.220306173443693 3.621416272629267 0.1499066527360888 0.49103291327350584 0.12324053932244237 0.24744007362528525 0.1296570367142249 0.9203228324732821 0.39538696644220006 0342 -python ../Main_earth_system.py $SLURM_NTASKS 1.2366900570708903 4.109878758522699 2.264161634223514 4.01429841657827 0.1423240028133381 0.8998252022397777 0.9548847620335675 0.2978315377063736 0.12028067903849735 0.4601870688733657 0.3156530774745879 0343 -python ../Main_earth_system.py $SLURM_NTASKS 2.171375100883844 5.752166851385455 3.8073938346255867 4.437698123697782 0.18772003967545534 0.30547475204240837 0.15557994747726225 0.235767967880139 0.11732569263454329 0.4254933633122536 0.24280313320628352 0344 -python ../Main_earth_system.py $SLURM_NTASKS 2.7623046908243314 4.9759035635220945 1.920892621931845 4.051341335850332 0.11572518120378647 0.32207644844069433 0.17645713066610857 0.23671327176631834 0.14967760870788913 0.8296605186558615 0.23074547539477308 0345 -python ../Main_earth_system.py $SLURM_NTASKS 2.5006664468164046 5.575938133537102 2.783936086397034 3.9259024863474514 0.17190393017725414 0.453536653794516 0.10872376167716762 0.10485683556285372 0.12455485559789899 0.1274815266548393 0.17452917577280755 0346 -python ../Main_earth_system.py $SLURM_NTASKS 3.1779159321204267 5.881539321106768 2.4714568909279353 3.7602004093504613 0.18343938670817103 0.7625883957496864 0.5082464804210363 0.2755837433744306 0.1391111945384417 0.5488149365452645 0.1835306795315757 0347 -python ../Main_earth_system.py $SLURM_NTASKS 1.5773405071449482 5.03732025231569 2.911048022965212 4.383345324593095 0.15335251491048738 0.6526568382210834 0.48977401437470813 0.25557128316232486 0.10279783890201055 0.2975291208149488 0.201001700779738 0348 -python ../Main_earth_system.py $SLURM_NTASKS 0.8995184008190381 3.7613793364641355 4.921909386020883 4.247479814119795 0.16837133204158766 0.984649092101711 0.897726933550963 0.2241949975947759 0.14728547910663486 0.48103289659421933 0.27891734355943765 0349 -python ../Main_earth_system.py $SLURM_NTASKS 0.9352245027503214 4.423209623333753 4.105898631195509 4.050056237483048 0.18499387171547058 0.5020102077372511 0.8479678489154213 0.1798583957969019 0.137115978116369 0.7510257613856329 0.37668209270975916 0350 -python ../Main_earth_system.py $SLURM_NTASKS 1.8741095264971253 4.410298191558024 5.322194863581129 4.328364672577899 0.16595943430565763 0.6979215249475185 0.17527546485812637 0.11095547677075739 0.12066463723537708 0.38822349398435807 0.15935598053767472 0351 -python ../Main_earth_system.py $SLURM_NTASKS 2.253766858528844 5.839636174959349 4.26420364155754 4.099431080585761 0.14659743761139293 0.7062563193443853 0.6217861473273272 0.1327322283201362 0.10726977370204654 0.5364761533350398 0.1122834795965611 0352 -python ../Main_earth_system.py $SLURM_NTASKS 0.9663830440215023 4.195115297056905 0.9716876565973438 4.097634612860623 0.18982424881303825 0.7511304070024117 0.6647139818730077 0.25586790763361644 0.12636445908960858 0.3691265120055207 0.10343043433789555 0353 -python ../Main_earth_system.py $SLURM_NTASKS 2.699820378451453 4.014349429234515 1.9160540525860998 3.6282249619185443 0.10126401861453704 0.9049369418923081 0.6702797993998134 0.29836681715759916 0.11610461514004125 0.4118346841347763 0.3807408348624185 0354 -python ../Main_earth_system.py $SLURM_NTASKS 1.9938567811745698 4.280831326375157 0.9740166429490331 4.229041925409293 0.17769942665543448 0.34301934073700285 0.9818186000060927 0.2478197283362441 0.10038946234037707 0.32428855016437996 0.3485451287128132 0355 -python ../Main_earth_system.py $SLURM_NTASKS 2.4953811056286126 4.478950606104569 4.348018597099644 3.639894356873835 0.12551179301654775 0.12504486645741714 0.8422836223280359 0.289556288248385 0.10770816288632853 0.8201921732856651 0.2343067969258571 0356 -python ../Main_earth_system.py $SLURM_NTASKS 1.0219508214261115 4.98969675558745 1.0265360221412003 3.893696622548532 0.15191207035716855 0.46868850134518447 0.421448768588211 0.212936563252539 0.14877077440287192 0.6462205092459223 0.36938237302225274 0357 -python ../Main_earth_system.py $SLURM_NTASKS 2.974561820171859 5.6748400120582225 4.521202073303046 3.9210417766064216 0.15454468028297835 0.194583029888809 0.8490652757681136 0.27816675866820784 0.13087743099107546 0.348222677717261 0.2812281654066189 0358 -python ../Main_earth_system.py $SLURM_NTASKS 0.9567941888937962 4.167253404153236 1.5942303982896493 3.8257629407695872 0.17831770811913 0.7809955439880673 0.6941953941657315 0.27353025241454476 0.10510434409377868 0.532092295766186 0.34513841328818456 0359 -python ../Main_earth_system.py $SLURM_NTASKS 0.9258806339844907 5.1572481370344185 3.5856952258986157 3.604934785710636 0.10282511704766033 0.8114767775335227 0.28400173923793937 0.29938584917262756 0.12125821010335994 0.1729907123543678 0.29502625694004775 0360 -python ../Main_earth_system.py $SLURM_NTASKS 1.6969288936078941 5.268388412747802 4.12525916898095 4.0478582419081315 0.10298200282415819 0.8037663538368229 0.6795271855503437 0.17075057504381846 0.12711866001354996 0.5237782866855593 0.22891780866876987 0361 -python ../Main_earth_system.py $SLURM_NTASKS 1.472634727155702 4.088504633606441 2.6444306855627575 3.6365336439221534 0.19142501572416315 0.30650554391170204 0.2655312850753525 0.21409700150313737 0.11813272229630303 0.16200114037266883 0.22676410161168695 0362 -python ../Main_earth_system.py $SLURM_NTASKS 2.02213053236935 4.315556008498606 4.692392106214894 4.073145746276982 0.11110393501967954 0.7266467175674526 0.8336347344265479 0.10201650621444783 0.10683375246175163 0.3714970940315775 0.17153278359954216 0363 -python ../Main_earth_system.py $SLURM_NTASKS 1.0615389197353025 5.105177535535757 5.2922991538674955 4.056509022246372 0.10367116990139634 0.11098878735159494 0.37931779634011675 0.20838201152025343 0.14319631382692732 0.9616065942174623 0.2925194579251351 0364 -python ../Main_earth_system.py $SLURM_NTASKS 1.8030973608797576 4.649000142555532 1.536511581286447 4.108076999132531 0.1482138565838787 0.9657903946268733 0.5378007222350686 0.29013138150357276 0.14916479750492923 0.8460487433566627 0.1794679099706578 0365 -python ../Main_earth_system.py $SLURM_NTASKS 1.9137870309918437 5.44487448199151 5.080328420594099 3.610353660024764 0.18002460372746282 0.44481745233891856 0.7653888663155376 0.2950827526269759 0.11531490502523666 0.8427459849308733 0.12300737506980709 0366 -python ../Main_earth_system.py $SLURM_NTASKS 2.7653338369635962 3.9226403979621405 1.3351158659464126 4.330747938541027 0.1254326988283371 0.877795450662559 0.5095836066317544 0.1139950174648744 0.1319543665990273 0.6526761281949662 0.39773159566026095 0367 -python ../Main_earth_system.py $SLURM_NTASKS 1.5220057790213803 5.9199963694905 4.260409137173627 3.5672122214193163 0.1253454691158088 0.7524932503566228 0.19579793694210956 0.10121814767470783 0.11410354114761596 0.5338995558373457 0.38155622535213873 0368 -python ../Main_earth_system.py $SLURM_NTASKS 0.8145638397476109 3.734763903421532 1.7378078212468804 4.163315327590415 0.10631765492856407 0.9584276171663585 0.3402187873674152 0.10519154714005319 0.14091168123886202 0.13306387241058001 0.10086358355112285 0369 -python ../Main_earth_system.py $SLURM_NTASKS 2.4360287758573484 5.914999211532961 4.782206300643459 4.031784394777857 0.16886981832472564 0.9321420714717399 0.5163503928134269 0.13925318475613285 0.1347143387168641 0.23201877553308903 0.1996977333077855 0370 -python ../Main_earth_system.py $SLURM_NTASKS 1.6627718353388028 4.069308405277738 3.8914078408495474 3.729929528439659 0.12243784163960769 0.40710219844849116 0.7361720216357764 0.20498828463636973 0.144114824024899 0.9551726087780343 0.21469420688576635 0371 -python ../Main_earth_system.py $SLURM_NTASKS 2.1565303374494746 4.730173508612886 5.425495227821131 4.299742704042811 0.13340018039978688 0.5762423892047137 0.7459803578682863 0.2445421846317765 0.11907488011453665 0.14762625820772224 0.1855698727602325 0372 -python ../Main_earth_system.py $SLURM_NTASKS 1.7469043754531928 4.133852829127495 5.2998778381197305 4.151282556261148 0.15351771864610392 0.816600614497751 0.5023281600037711 0.24246973062223098 0.1000293972182441 0.5043643314386922 0.3919566550100477 0373 -python ../Main_earth_system.py $SLURM_NTASKS 1.841656516897134 5.996539801065312 4.662758787928714 4.237847573199759 0.16336878905980684 0.4124181462205695 0.11939941733121937 0.2624712843033358 0.11989749275146977 0.7517716385270081 0.21589278737730325 0374 -python ../Main_earth_system.py $SLURM_NTASKS 2.474500124307256 4.260390334275265 2.0652198581162517 4.262927244190111 0.13459124066036762 0.3237697336867275 0.7960822932386511 0.192019327249848 0.14166711074231164 0.6565184439948321 0.1921766159033806 0375 -python ../Main_earth_system.py $SLURM_NTASKS 2.6192153544642913 5.522421216430496 2.572456774302604 4.107732995657274 0.1860456248734786 0.5801090455044284 0.4232604336813396 0.17350100723382209 0.11143854975474791 0.2584800698638311 0.22955445244812223 0376 -python ../Main_earth_system.py $SLURM_NTASKS 0.8299640494245717 4.951290460429862 2.364797137027308 3.545552761320501 0.10407223421998824 0.2672625132541826 0.8001459139694514 0.11847619602449552 0.14016535435270405 0.33627271981947193 0.24561138316251124 0377 -python ../Main_earth_system.py $SLURM_NTASKS 1.016366951891883 4.5478679149452095 3.9177326765763256 3.7049935843255457 0.11581019420958141 0.6830606347078213 0.2601556283367331 0.17238427457565342 0.12050046026549972 0.37408862577000346 0.18679160205895137 0378 -python ../Main_earth_system.py $SLURM_NTASKS 2.8043042580232154 5.461445600051064 3.1354897723684205 4.329960677013015 0.16584127002308566 0.2988168621565941 0.5402087789166876 0.2949464258861607 0.1413239264553526 0.1791661053772985 0.26023083023954774 0379 -python ../Main_earth_system.py $SLURM_NTASKS 1.9460405257058686 3.8460591106155895 3.0441503542160975 3.586335054786737 0.177067914751292 0.2209683875903656 0.671599189774939 0.2089328654794271 0.13821226971289519 0.6625577886469863 0.36189737276563383 0380 -python ../Main_earth_system.py $SLURM_NTASKS 2.5775530499010584 3.6091057570457092 5.47337530034645 3.6922210472413513 0.10501836065078711 0.339726296905146 0.9719078943203929 0.10158479174804286 0.12612550344608733 0.39725951509577284 0.16163096217135703 0381 -python ../Main_earth_system.py $SLURM_NTASKS 1.527242613442295 4.941755001883599 5.396947154578005 3.722453173852119 0.10488949922999902 0.6583462250744964 0.8984693793071016 0.14738472621112722 0.12174381173202406 0.39956839704183755 0.3539354800479455 0382 -python ../Main_earth_system.py $SLURM_NTASKS 1.9528116713878243 5.854894094206079 1.3239972445250998 3.5254718554753675 0.19719681726044513 0.39180667163207483 0.3967942115202687 0.2308716772211218 0.11453879536152489 0.9787871684710127 0.3114369736692831 0383 -python ../Main_earth_system.py $SLURM_NTASKS 3.1194576976759416 5.92423741485886 5.41232795027737 4.086531264081811 0.1788331806578745 0.9553615422473556 0.4011991320605074 0.2898728458149892 0.12807807139104313 0.4628679665818022 0.3660816712163394 0384 -python ../Main_earth_system.py $SLURM_NTASKS 3.0397637247328433 3.831650703666157 4.113246743374361 3.8875728980997692 0.15474484712485595 0.49557603235102454 0.2989461828332624 0.29047031369273296 0.1021904909776724 0.10496457129108205 0.26086176738407485 0385 -python ../Main_earth_system.py $SLURM_NTASKS 1.957715646792369 3.7926744926745064 1.932319029366972 3.7714863838830484 0.16377061759179412 0.3861678955872305 0.7069935026014857 0.2843229139144773 0.13894135717193568 0.10166613287497567 0.3034077132734381 0386 -python ../Main_earth_system.py $SLURM_NTASKS 2.980728340703539 4.05885432189841 4.559366751187993 4.018014666799475 0.1749272632229349 0.8599385370205557 0.1432155484499713 0.23022637246020242 0.11096502808905942 0.5836007222313484 0.35116319920144123 0387 -python ../Main_earth_system.py $SLURM_NTASKS 2.1764733046480877 4.358325238256562 3.3154466291636 3.978800598046477 0.13602653189478592 0.25039463730922906 0.6299317081259228 0.2773527415787812 0.14925346571876164 0.5733011699265579 0.16416560145210787 0388 -python ../Main_earth_system.py $SLURM_NTASKS 3.184367447904436 5.215103571642668 0.9234614176029718 3.8182877840435117 0.1956719312122566 0.18585182358223162 0.7389292495537577 0.2043390036407597 0.10437807860548773 0.36005177492010976 0.1083586252271957 0389 -python ../Main_earth_system.py $SLURM_NTASKS 2.0073338829726106 5.562570199415964 1.2271642732504504 4.401906130464948 0.14985539355776456 0.3197746289670713 0.43099399744984923 0.28917898976793 0.10998201532750806 0.869752105077915 0.1725919476034233 0390 -python ../Main_earth_system.py $SLURM_NTASKS 2.8836934254294944 4.082238453201289 2.6055215245312215 4.446819049617764 0.18456741719699396 0.2958425849101213 0.9403776040487842 0.19133375964940688 0.1111099763786476 0.35131806938912646 0.2364539253565916 0391 -python ../Main_earth_system.py $SLURM_NTASKS 1.1026901858945797 5.321785737076889 4.45540605128964 4.0089063933810145 0.10946158744283584 0.38300015702212853 0.6081141906262619 0.11890016836439371 0.13615870768816182 0.8485377549847763 0.3808890867474276 0392 -python ../Main_earth_system.py $SLURM_NTASKS 1.2903179627369428 4.118937690956851 4.0069256797034605 3.6412059600831954 0.11097744566819048 0.5484050645261975 0.5292948734292938 0.2565494126246581 0.12337718392359946 0.9807247373737735 0.27354504174697797 0393 -python ../Main_earth_system.py $SLURM_NTASKS 2.2165353121500955 4.818944090080392 1.709944430354413 4.472855469756814 0.13175503081314208 0.4313303313669532 0.5087714315311219 0.12445907236719955 0.10244224290498727 0.16742154826588812 0.36256259850062067 0394 -python ../Main_earth_system.py $SLURM_NTASKS 2.733612178082497 5.048625023328054 1.28924028350595 4.376102389483634 0.11042462622876016 0.5481316598316239 0.7491939142269248 0.15566344578361446 0.11168592381246095 0.8639688821603768 0.1983849205762792 0395 -python ../Main_earth_system.py $SLURM_NTASKS 1.7419603282371339 5.193256837940211 2.176027866540432 3.9999369991000195 0.16737460282685185 0.9168128546892247 0.6872920151272596 0.2577815300484853 0.12619864972602482 0.5795953769735503 0.3330691411117506 0396 -python ../Main_earth_system.py $SLURM_NTASKS 0.98040273710203 3.769701418993029 1.5579247803692937 3.77308615527739 0.17940951282384648 0.6546441734550467 0.8699627111368969 0.22042569170883702 0.13133129251150993 0.6847562932730076 0.10608298081569334 0397 -python ../Main_earth_system.py $SLURM_NTASKS 1.8260501468776473 4.327899998397299 2.7468519081537064 4.197036155028461 0.10224641434636368 0.1596119353605011 0.134333409342684 0.24359978408526325 0.14193874205178555 0.4906107650610636 0.28417180514882123 0398 -python ../Main_earth_system.py $SLURM_NTASKS 0.9737237894566515 3.5828355818122635 4.416056533216624 4.256672244385623 0.17564227978265295 0.3210484632939591 0.5874670029050547 0.2406350062759671 0.10348059755152658 0.7782834267361157 0.1602227368371955 0399 -python ../Main_earth_system.py $SLURM_NTASKS 2.855735454727016 4.52725560626423 2.510782376374155 3.994090995962065 0.13467177885690923 0.9987507663064942 0.5490763135334823 0.26789023098889775 0.11935182925675186 0.24068295385402125 0.19469559235902695 0400 -python ../Main_earth_system.py $SLURM_NTASKS 2.208633234383194 4.286214101597979 2.833979732999059 3.714896128855467 0.16178962467739455 0.9082623954320737 0.4435331002032781 0.26004793094232215 0.1319171920678591 0.7658199935259301 0.22169180154726748 0401 -python ../Main_earth_system.py $SLURM_NTASKS 2.3687502438806067 5.033165718770938 1.5731366174387404 3.6240606006632308 0.17144286244275225 0.28416408422252204 0.9603384506453004 0.11838499059143386 0.14245993507535948 0.26914133621184355 0.2719170324966531 0402 -python ../Main_earth_system.py $SLURM_NTASKS 1.9354828505098123 3.5101887236103404 3.7705272754192904 4.0813073302006115 0.1526675563460981 0.7226024052653969 0.33139791232090066 0.28174634748841143 0.1444410627625064 0.3103103107683365 0.3543949800744617 0403 -python ../Main_earth_system.py $SLURM_NTASKS 1.3126455206798546 4.992197162589717 5.267855982465057 3.8129066432195966 0.1553311549662079 0.8753790435241856 0.6585301700058529 0.10844695405473294 0.14129282720431938 0.5521145839534164 0.30213745181383106 0404 -python ../Main_earth_system.py $SLURM_NTASKS 2.2951568926051387 5.21866885423195 4.168167277857982 4.066385373745179 0.13754002775331398 0.5231931361430132 0.4424361729950298 0.1566707384481081 0.10753029451818502 0.8015693379497615 0.15152560671572068 0405 -python ../Main_earth_system.py $SLURM_NTASKS 2.1272242226822238 5.178428090401789 4.32777541104986 4.1966929823010215 0.16611187797035581 0.6847734934973939 0.6766284040518152 0.21772412240714809 0.142809301841401 0.5433668598904804 0.2450812425630776 0406 -python ../Main_earth_system.py $SLURM_NTASKS 1.6753553411452156 3.6005335021190525 2.1245676635543194 3.8137728185230797 0.1362248241277331 0.6968657702248107 0.3390350776511401 0.21652223791607517 0.13250501387889094 0.9781615236680841 0.3840964332981295 0407 -python ../Main_earth_system.py $SLURM_NTASKS 2.280005323295174 5.297662617018712 2.3933522203158075 3.7114558835245255 0.13387616064854393 0.9473017080257621 0.22161865423557486 0.26488169890181823 0.12952699405590054 0.10608159577001974 0.392960987145339 0408 -python ../Main_earth_system.py $SLURM_NTASKS 0.8328704100212554 3.8144960174160287 4.192022855470622 3.9261219726876067 0.12653276374461916 0.554941962611966 0.5463255956937361 0.2985044981613577 0.14638389169420116 0.7343017553901573 0.39703562405439297 0409 -python ../Main_earth_system.py $SLURM_NTASKS 1.6245236077197491 4.543158226161391 1.644781919757555 4.351999026783034 0.15040924979034917 0.5472776434239162 0.32172688367969415 0.11555458216288442 0.12292813076351859 0.30686114255976127 0.3675866944634164 0410 -python ../Main_earth_system.py $SLURM_NTASKS 1.1508172273780677 4.384630736662956 2.2670189906511204 3.8201361271763226 0.15313527487521736 0.7859969418351367 0.2591565810523264 0.1215242871374166 0.12732234149537358 0.6833688700829722 0.3127236180109325 0411 -python ../Main_earth_system.py $SLURM_NTASKS 0.9709637487363435 5.93597619216929 4.854899026463807 4.000862106067231 0.11437311793926161 0.5790891779379785 0.8610075870875895 0.29192265854755906 0.13149870088576956 0.7614090941117639 0.3987077838066646 0412 -python ../Main_earth_system.py $SLURM_NTASKS 1.0316137596643167 4.733845651386294 2.647330132996447 3.503444518932877 0.18534127071835527 0.7316739941692236 0.9133731874050913 0.1696749235514961 0.14510964429846468 0.8266568313116944 0.10155805385712319 0413 -python ../Main_earth_system.py $SLURM_NTASKS 1.5473054889476319 3.970034907340433 1.9993554339044772 4.405545243583417 0.18461476827619086 0.28522125181869407 0.7435884976829726 0.16722995450326786 0.10606821478625846 0.32292734134697254 0.3563601582737451 0414 -python ../Main_earth_system.py $SLURM_NTASKS 2.5968194523482384 5.594505764265185 3.5751435976691415 4.450198363119555 0.1128464456163183 0.8041845674589235 0.25074424411197865 0.23587005448216172 0.12208487960135353 0.6194424886744003 0.16894605520438233 0415 -python ../Main_earth_system.py $SLURM_NTASKS 1.3479473316152397 5.7040794495793 0.8929866527902115 3.6426122206985068 0.17524113580077355 0.2964614703772396 0.8715205651657211 0.20737644840482225 0.12360574160052827 0.3751292362588309 0.10183294441575273 0416 -python ../Main_earth_system.py $SLURM_NTASKS 1.5707557245263024 3.5766032344901104 1.3441744745252278 3.980777428994703 0.10954831951270577 0.8830552625042284 0.11187536681646286 0.18559595437606524 0.11260686200732847 0.6491790982400096 0.20443550005071842 0417 -python ../Main_earth_system.py $SLURM_NTASKS 0.8700743807417333 4.806553089773587 4.214996207377751 4.048556691073979 0.13157422639752014 0.5122045085259007 0.33311564420172174 0.2687009208459713 0.1339817455660098 0.1949990519375434 0.39969905981490494 0418 -python ../Main_earth_system.py $SLURM_NTASKS 1.8841573539379088 5.97081577189714 3.8090287750010843 4.022362404198541 0.16306564044598926 0.6774787619004062 0.6053162699207757 0.1254329380840068 0.11323359370710079 0.9519126659610464 0.3788536816219221 0419 -python ../Main_earth_system.py $SLURM_NTASKS 1.5228823298487386 4.395850529178821 3.247943933684752 3.8568093682402784 0.13985214406768753 0.16821377151127592 0.988319003030913 0.19570119712513778 0.10853050876467603 0.4717613125986272 0.24322969323740806 0420 -python ../Main_earth_system.py $SLURM_NTASKS 0.8556682878213537 5.820698888907765 2.5239020790809534 3.8285278764193045 0.18392884176999205 0.6891972855353303 0.3059500445516806 0.20367526700937216 0.10936943676588678 0.13107428369843552 0.3256454754661505 0421 -python ../Main_earth_system.py $SLURM_NTASKS 1.4337655844184125 4.043963988962172 3.180332094818583 3.7547242054980288 0.14080235586282763 0.8511807328423293 0.8271182590518233 0.2737333044346735 0.14214845511480323 0.16528931691797355 0.20072048657960612 0422 -python ../Main_earth_system.py $SLURM_NTASKS 1.1319328266531827 4.057283231814014 1.2590416802185642 3.9869132230238375 0.1740795699480806 0.7846984319590389 0.9014057906694168 0.18760357726278798 0.12475296898096025 0.9800511135332656 0.2830842693133331 0423 -python ../Main_earth_system.py $SLURM_NTASKS 1.8132264946635195 4.2397536623036745 1.9542179834899231 4.052353887946582 0.10103528993481951 0.13412795345351622 0.1704238314322296 0.1436638451100258 0.10716373633342748 0.4457200745748262 0.14129383070487184 0424 -python ../Main_earth_system.py $SLURM_NTASKS 0.990980625611105 4.2681404519110595 2.2567347169498015 4.418183450648321 0.16670807736442694 0.6597866093864422 0.404969937592343 0.15911296776149664 0.14748878106710175 0.9694348400839327 0.13899623729046096 0425 -python ../Main_earth_system.py $SLURM_NTASKS 2.31995485668467 5.114010290329237 2.52523420699063 4.462246456368123 0.13523498949522747 0.26423774185038607 0.3549079707591103 0.2740863392530035 0.13123966823167543 0.9578440737054127 0.3734659996914559 0426 -python ../Main_earth_system.py $SLURM_NTASKS 2.2101452721554287 4.333643341710992 1.472941974297345 4.245085981488181 0.15497061305748366 0.9058232144316378 0.12206124759066567 0.16718362912921048 0.13330059406927536 0.5440051982336276 0.31751810558659865 0427 -python ../Main_earth_system.py $SLURM_NTASKS 2.9917727679885386 4.569324968347257 1.4494182069643964 3.797429789105028 0.14425055335167553 0.4491873595408439 0.7312200753492387 0.26529301519833987 0.11776173087835688 0.5626192531274097 0.13326014485701596 0428 -python ../Main_earth_system.py $SLURM_NTASKS 2.925950757494612 3.7510149300912006 4.303594021048241 4.2183708062115155 0.16490724579260593 0.243787445416542 0.272893640837626 0.29392434309932125 0.11853941879750607 0.45147180281545374 0.20170240202120743 0429 -python ../Main_earth_system.py $SLURM_NTASKS 2.6636385280309325 5.239216532783471 5.491482257515169 4.106964298001964 0.18567019384035027 0.336561089113227 0.4638148016311753 0.26274030674552906 0.1349837317428212 0.19749610004823825 0.11750143532324749 0430 -python ../Main_earth_system.py $SLURM_NTASKS 3.0454904522170434 5.900825517368081 1.646448001667157 4.291441877268951 0.1013516892736122 0.3840273122941159 0.6433148959030471 0.28757798979408145 0.14781329099368523 0.5853909392312525 0.35746908644369635 0431 -python ../Main_earth_system.py $SLURM_NTASKS 1.8821187889172182 5.555565906252587 4.499156677621087 3.6349532322476064 0.18025410725346927 0.2876910265510628 0.8179860309237216 0.15327748736285435 0.12857032345101488 0.9089469494185858 0.34179099303680016 0432 -python ../Main_earth_system.py $SLURM_NTASKS 0.9334722214141111 3.977698304503442 2.138013742781979 4.339036865213487 0.15625831668748322 0.867574957797791 0.7673135024784329 0.21545759683241505 0.11971679364105652 0.6556873910278389 0.3561580704956059 0433 -python ../Main_earth_system.py $SLURM_NTASKS 2.7944393601638295 3.8812689730563514 4.381809781209378 3.680850882679442 0.18956028835354616 0.13691845503277814 0.18127296562814305 0.2046382291933953 0.11948274916989003 0.12483293246665476 0.344071588840185 0434 -python ../Main_earth_system.py $SLURM_NTASKS 3.1141687169238796 3.6562682879611286 5.313808403298006 3.9927971767467003 0.11340981442730835 0.7926941309086413 0.8963401407103302 0.10315873602986281 0.1449004373093245 0.6325999959198724 0.3286568875476039 0435 -python ../Main_earth_system.py $SLURM_NTASKS 2.173615120135895 5.149067825613615 2.7168872901850882 4.459122847042409 0.15901265270107093 0.7103145054005716 0.8083509616574668 0.18411313282881792 0.11030239151091764 0.2385009807443754 0.29556649871866353 0436 -python ../Main_earth_system.py $SLURM_NTASKS 1.495818681192222 4.729885163655148 5.403193242242188 4.357829387746992 0.16930283154128278 0.4823553605597338 0.5552171094771599 0.1313576105032166 0.12329660040851434 0.8619698522097315 0.3702970892360935 0437 -python ../Main_earth_system.py $SLURM_NTASKS 1.02622987498393 4.719676443367319 3.274049463648649 3.5335090868146133 0.1469700443258297 0.9004789666335692 0.974173138307645 0.23694861829553832 0.13972893760768382 0.20233014468903487 0.3892657481879933 0438 -python ../Main_earth_system.py $SLURM_NTASKS 1.3051330839157609 4.953161010265774 4.952298148260947 4.445647432866773 0.18175838737602823 0.8302229893991006 0.41087647449321607 0.13045977508857837 0.12144325292385416 0.5297879229540484 0.1196332297562891 0439 -python ../Main_earth_system.py $SLURM_NTASKS 0.8822689008624489 4.377725279337483 1.2413716722967294 4.183722670613167 0.18231336070969914 0.7681028300702876 0.9186688123925351 0.13258000576994783 0.13364469753765768 0.25440812928148937 0.34359763380309694 0440 -python ../Main_earth_system.py $SLURM_NTASKS 1.9759467937410014 3.9270144682230184 2.3247414993811955 4.313549943496842 0.1983031828604223 0.28312926945635664 0.39910705760172127 0.2605017842755665 0.12368228137113091 0.16075087005451372 0.2824003022162574 0441 -python ../Main_earth_system.py $SLURM_NTASKS 2.8829356610386876 3.8644429365964132 2.6219888165100738 3.502568970930485 0.1793398854098623 0.9235232375993652 0.16286886697579653 0.11708749467935449 0.1475832885063485 0.16392382833781952 0.23763200009547614 0442 -python ../Main_earth_system.py $SLURM_NTASKS 1.2009063608212367 3.9514750078952767 4.586549809050319 3.6387647709636983 0.18326674565613657 0.9348312120700225 0.3730847650748633 0.29773622602479055 0.11840992884012305 0.36121627628684383 0.24434071384880243 0443 -python ../Main_earth_system.py $SLURM_NTASKS 2.3885682016191976 4.003209088668356 3.2376514902972184 4.223187059260159 0.10231071866144353 0.7488450666170637 0.8370659458643099 0.24410565722665972 0.13593685975897773 0.7851403298927643 0.3514334431900913 0444 -python ../Main_earth_system.py $SLURM_NTASKS 2.4196696184535558 4.998593464330297 4.365299298121241 3.5108068084406914 0.19993099864818073 0.6088099405922874 0.386792021039012 0.27927472575940643 0.13058387255275664 0.7390934066692335 0.3264689086409435 0445 -python ../Main_earth_system.py $SLURM_NTASKS 1.1817192277667976 4.306966017510607 4.4487424032223375 3.7785398641813313 0.1589182979290587 0.6905346309209424 0.7530546922654039 0.1943810379650186 0.10942868229989033 0.8984830080523971 0.18786822981943813 0446 -python ../Main_earth_system.py $SLURM_NTASKS 2.416149314655185 5.0729267938921065 2.7364580612575393 3.5756516843332964 0.133623000854522 0.8894606749646702 0.7042342609273216 0.293120622701054 0.14149509865697968 0.8397263566395754 0.36192626939975625 0447 -python ../Main_earth_system.py $SLURM_NTASKS 2.5170665967617447 5.507051201539483 3.633222062546989 3.905255341713276 0.18510788779932408 0.5372762966494294 0.606965656760712 0.22313852647074345 0.13691787952000314 0.21087114576081606 0.11492484426009346 0448 -python ../Main_earth_system.py $SLURM_NTASKS 3.0794258067475013 5.365138872509563 2.0209706580966595 3.944587673209443 0.15427964178876427 0.33540577277206546 0.3209074862670529 0.14712745174520153 0.12149596080057229 0.5318700707793821 0.11189752446237981 0449 -python ../Main_earth_system.py $SLURM_NTASKS 2.8203457106500958 3.9959569640984034 5.338993438174577 4.122587921773639 0.14009762843629103 0.9450546427223818 0.7026792652368251 0.2670435871437844 0.1276477939119324 0.37616174318569395 0.3666854000285579 0450 -python ../Main_earth_system.py $SLURM_NTASKS 1.8644345432176122 4.92095699060706 2.863503190442275 3.5587759967158292 0.16474848894322597 0.48497354146779914 0.1990260492429272 0.21350233281703299 0.13256539710349186 0.7116411410338589 0.2587258119899488 0451 -python ../Main_earth_system.py $SLURM_NTASKS 1.6258987523067414 4.418300508974588 2.8950115916173624 3.505309137490275 0.14105250270940914 0.7022994725439529 0.5529084822556801 0.16947219698891394 0.13451095026069956 0.4367785201275385 0.12048087733510872 0452 -python ../Main_earth_system.py $SLURM_NTASKS 2.0373058217121756 4.82914329147765 2.964807741278231 3.5600025162262705 0.12186606914630821 0.7044407623913845 0.3774068232023018 0.15534534465874733 0.11747398743198792 0.7008481009269449 0.12377782441160895 0453 -python ../Main_earth_system.py $SLURM_NTASKS 1.1924155728325436 4.86667746428579 1.9468813653140646 3.973660587673259 0.1394566037753011 0.2409162234071669 0.7038108812190534 0.19892897547197913 0.113099978550349 0.7684501844676054 0.2942529592206603 0454 -python ../Main_earth_system.py $SLURM_NTASKS 1.8308394780887647 4.796417090695833 2.987865359516067 4.255998580048647 0.1429692786648794 0.3665374823210048 0.7164488906210627 0.1156164119329287 0.14306645975745946 0.2796085959860759 0.31613543838253333 0455 -python ../Main_earth_system.py $SLURM_NTASKS 2.2624779808976094 5.044010364985037 4.961716174839232 4.187366339277603 0.13324133124180587 0.42290576568882265 0.8200576869989232 0.14641796417630004 0.10586908629759051 0.5501970341311413 0.153775237744704 0456 -python ../Main_earth_system.py $SLURM_NTASKS 0.9466342671034252 4.025411244687135 4.13594588585626 3.910901135139113 0.17131435293140898 0.1653552563299198 0.7928591355129346 0.20862489764717948 0.13620109860053625 0.586954477608608 0.30849620480430634 0457 -python ../Main_earth_system.py $SLURM_NTASKS 1.5787771560562152 5.20909791532081 1.3737711061192763 3.9549588427816773 0.17819328475055987 0.28101387316440474 0.31471259114067346 0.11510215283556058 0.1285471889389383 0.41324626013719623 0.19674549528329877 0458 -python ../Main_earth_system.py $SLURM_NTASKS 1.1286068869740635 5.488276722224919 3.4323779425067356 4.040825710860885 0.16565219942152293 0.4083731862150709 0.4793314398436974 0.114313913325634 0.11620414404893736 0.18107889467639016 0.2808126326066223 0459 -python ../Main_earth_system.py $SLURM_NTASKS 3.1006376643883913 4.304083106185623 5.066416788697518 3.661144644769015 0.13539638987135227 0.19619373081480884 0.19539756075691492 0.21007197162464014 0.11684192640915525 0.9359947498828166 0.14093108450168154 0460 -python ../Main_earth_system.py $SLURM_NTASKS 1.5489266836712292 3.783013952265135 3.1434203071839146 4.114031509432078 0.13849415668544088 0.9669899940887762 0.14276656825894324 0.108195892537737 0.11465715992523706 0.8072379142128586 0.35823592437558915 0461 -python ../Main_earth_system.py $SLURM_NTASKS 0.961137569382383 3.714308124946584 4.529775504081724 3.6433765898887485 0.19470709100706682 0.1812792839569111 0.5943667176768869 0.21709330888487555 0.10885898836205508 0.7137198196535461 0.197376388491375 0462 -python ../Main_earth_system.py $SLURM_NTASKS 2.1170521251764063 4.402302479409314 4.790427863917645 4.238371427172802 0.13166616213025134 0.8003921241133832 0.7009643873617134 0.13765053021420645 0.11406449131163626 0.5770860373305698 0.17884803822894024 0463 -python ../Main_earth_system.py $SLURM_NTASKS 1.0122969337005019 3.8653467652270903 2.6763056702006116 3.6167950418302808 0.12194183859911253 0.10684695363323087 0.5311671499026074 0.1296844550004324 0.10548249256600804 0.2071864332091959 0.2262799236901816 0464 -python ../Main_earth_system.py $SLURM_NTASKS 1.4881241110865737 4.765744003573444 1.6564346753535903 3.7947253964175136 0.16988638162391778 0.4796375724592934 0.7514569027255943 0.21903200156433805 0.14923992278017825 0.1862595176415832 0.3578148769153813 0465 -python ../Main_earth_system.py $SLURM_NTASKS 3.1733932304382364 3.6396499075375495 5.138490588218513 3.5373706133608254 0.10543320928002958 0.5881418786793364 0.2113481450454579 0.2864546587706164 0.144987243440359 0.7958972456164435 0.3032258118492202 0466 -python ../Main_earth_system.py $SLURM_NTASKS 0.8386531120152267 5.742529515287209 4.607045381590287 3.627532831863065 0.19928682448044172 0.9257389212783474 0.20229488287560307 0.24041034424847593 0.12241064679196953 0.2842997862049971 0.20014969996979237 0467 -python ../Main_earth_system.py $SLURM_NTASKS 2.522016210487588 5.536329773533975 2.294821634604288 3.5705859762303067 0.1862916277688176 0.14169145234702446 0.7614367252180606 0.25034659224489697 0.10595932266364136 0.33056860638259244 0.3369416864451942 0468 -python ../Main_earth_system.py $SLURM_NTASKS 1.661183674057248 5.072203752062997 5.273850333547252 4.283665097245122 0.12024170384671373 0.4357614432934559 0.930777378395668 0.11297144180508648 0.13434182895078217 0.3054843542727894 0.32971461590403656 0469 -python ../Main_earth_system.py $SLURM_NTASKS 2.7755313160284256 5.483433459182063 3.1213117155019274 3.739789457555796 0.1287448386459683 0.8409242667716351 0.771128191959323 0.2916393469622959 0.11162809887280235 0.6732724594168168 0.2483402560711627 0470 -python ../Main_earth_system.py $SLURM_NTASKS 1.0050202737259868 4.903574378064181 5.368776425237266 4.436422072950984 0.19680434172784514 0.4701784966308834 0.2606333490162548 0.23789024820815594 0.14207243221393523 0.5615377393285207 0.21373198751518224 0471 -python ../Main_earth_system.py $SLURM_NTASKS 2.694787645686655 5.550895601468543 2.73584231660433 4.034003691073064 0.14454420671649268 0.5071665015227386 0.6493519863457761 0.1961295997657081 0.1167133308122505 0.5867584171376113 0.19311594486515277 0472 -python ../Main_earth_system.py $SLURM_NTASKS 2.163360495427267 5.771525099407545 1.4014055030545658 4.490842821778248 0.12755760318416492 0.6758232282162472 0.281733895745205 0.216115008482159 0.1341158134478042 0.4990534212824468 0.22031509508515368 0473 -python ../Main_earth_system.py $SLURM_NTASKS 1.1538432703436694 5.477697261463039 4.073347163255299 3.885020060981762 0.10498339719370485 0.8367364257219154 0.9436304412106705 0.16620749929055967 0.10493842094835892 0.6980926250956349 0.24044319404044337 0474 -python ../Main_earth_system.py $SLURM_NTASKS 2.6663364910396 4.462427353028255 0.8884964334325002 4.364234879270855 0.10803232701775722 0.6207681249526468 0.33716499018753177 0.15235110574811836 0.11490107762341234 0.3405372191764266 0.2786801987046508 0475 -python ../Main_earth_system.py $SLURM_NTASKS 1.3703466883291235 5.653220482950353 4.040382047794987 3.8843173641467152 0.14753909580804092 0.14939022649368158 0.22973727671310704 0.28795503813492396 0.12317966854338366 0.16235487766106588 0.2815221851254243 0476 -python ../Main_earth_system.py $SLURM_NTASKS 2.6980254881261834 5.747681328165669 2.3181317897450464 3.901575972096474 0.17500077836309907 0.8521171862142111 0.9487541522356192 0.14504400939750972 0.11548018851102337 0.25544625505133617 0.35576050979397034 0477 -python ../Main_earth_system.py $SLURM_NTASKS 3.0653279448653956 3.945861176404867 1.6956747175368347 4.220870344963526 0.1543269956943551 0.4763883156106071 0.8940187398372429 0.26728504093643457 0.10651958164564537 0.343521096548494 0.3837062655607739 0478 -python ../Main_earth_system.py $SLURM_NTASKS 2.104560831250032 5.72979291295742 4.473013029376586 3.5576721408282816 0.1909882289582716 0.6374755015729308 0.5417770151703902 0.22335586343239355 0.10270026769079094 0.8663665175369466 0.363077058310605 0479 -python ../Main_earth_system.py $SLURM_NTASKS 3.059156532965277 5.635528509641781 4.896072921036081 3.6296688515430553 0.1615471075589891 0.20816442081405986 0.809273935610877 0.2771526121765461 0.13344587096825594 0.3277762657312734 0.3913932519784833 0480 -python ../Main_earth_system.py $SLURM_NTASKS 1.6020633780606741 5.182517385279779 5.366796449319216 3.9893956527307433 0.1447560979989725 0.8722989103063231 0.5679872592631028 0.2849137686939419 0.12941130825869435 0.8416639261631405 0.13175384502367923 0481 -python ../Main_earth_system.py $SLURM_NTASKS 2.7159257871346436 4.153837392300605 4.429259084626747 4.451618640285104 0.1106340288150224 0.9463678868211631 0.467219945938793 0.22226258992886821 0.14374950788329935 0.9173843563590208 0.3965827078723855 0482 -python ../Main_earth_system.py $SLURM_NTASKS 2.114999914350416 4.978454818585466 4.486528893323447 3.7909163716527607 0.17595521699523078 0.8990654282021016 0.5185365010502949 0.10612967883920732 0.1090570613289895 0.44534093152348 0.2367994806755729 0483 -python ../Main_earth_system.py $SLURM_NTASKS 2.085726768739848 5.6513928042543515 1.0800787040861577 3.876931923255325 0.1902180960372332 0.744692654570767 0.6167569917121363 0.26182366120843026 0.14050581693453618 0.4105873170303057 0.1976686670521574 0484 -python ../Main_earth_system.py $SLURM_NTASKS 2.8001532569125995 5.205130358800177 2.211146654429484 4.090902011721623 0.14507469752185564 0.6799134811542324 0.2926024868274997 0.23839560344628666 0.14013601844491427 0.34597029002510715 0.296175294493768 0485 -python ../Main_earth_system.py $SLURM_NTASKS 1.730037452914146 4.889095755424249 2.3683906158791754 3.743110734717909 0.19781840848877236 0.7297577675759901 0.42785884618797887 0.20266430839883018 0.12439270465287616 0.32617312287584244 0.11802226108332521 0486 -python ../Main_earth_system.py $SLURM_NTASKS 1.319907342208566 4.85089482432447 5.276811714543251 4.227121786495497 0.14958911519561227 0.5417350005213815 0.9992722625105698 0.2512462335665637 0.13702146700433887 0.8119227301907357 0.3569902297705918 0487 -python ../Main_earth_system.py $SLURM_NTASKS 1.5855036948975987 4.701373367021497 1.1791291714557044 4.488201831947663 0.1309457865258148 0.3498535866778355 0.5239228544529507 0.1605619898586278 0.13504820310559396 0.6820089183394771 0.14624187795308347 0488 -python ../Main_earth_system.py $SLURM_NTASKS 1.101891773044019 4.464827273627561 2.681164036568668 4.080733314689173 0.1485852060041141 0.8879035657087717 0.2852967271739699 0.24010409021306625 0.12840625093066613 0.49438826703789673 0.3170778775696097 0489 -python ../Main_earth_system.py $SLURM_NTASKS 2.476461191211221 4.7637836353978 2.330562750540234 3.883836516973589 0.11606565145993976 0.32722676979658927 0.16925546989833742 0.15702913398414603 0.11346091538484418 0.3947511210199419 0.20300889167637132 0490 -python ../Main_earth_system.py $SLURM_NTASKS 1.9552333873389598 3.547294014521443 3.9006338401982648 4.235944235012529 0.17751951552863665 0.6741393212492949 0.9630545706406229 0.21301553554454222 0.12183555802237761 0.609949378609769 0.16441136729693734 0491 -python ../Main_earth_system.py $SLURM_NTASKS 3.068211712032726 4.946674507569021 3.875945823389892 4.126963814730438 0.18203757196687773 0.8392567046712109 0.6509725236143035 0.2832084765154542 0.12933672958648357 0.2938358812171534 0.2818625257192565 0492 -python ../Main_earth_system.py $SLURM_NTASKS 1.2630950595355062 4.404059310519331 2.4146092456768615 4.177619432558432 0.14362669991408766 0.45650530562520497 0.297111370281845 0.25425668430927817 0.11756438150656665 0.9743735085983513 0.1951575405875055 0493 -python ../Main_earth_system.py $SLURM_NTASKS 2.4210564411486857 4.323820525330002 4.280347041213545 4.340864465158005 0.152427704731347 0.9179564428369401 0.1612794623957166 0.26230186088797985 0.10220379734656114 0.3867577568492043 0.14258899671981132 0494 -python ../Main_earth_system.py $SLURM_NTASKS 2.874086848418428 5.192249379000676 3.2586158637096014 3.564227005962076 0.18763732061386584 0.17812641663632844 0.6486560846879043 0.2016438118664364 0.10196940784141705 0.24176048636121816 0.22656138486704028 0495 -python ../Main_earth_system.py $SLURM_NTASKS 3.0735378321444333 4.2510042950627955 4.749748301558829 4.224581135058523 0.1933310796777729 0.5116644862887433 0.9252234685657016 0.27618370496209954 0.10796312111075773 0.8314359486964504 0.19586223536432815 0496 -python ../Main_earth_system.py $SLURM_NTASKS 1.1761956879972972 4.914996362723838 4.493647402670901 3.5492443421725577 0.12995871242215107 0.2600144062458589 0.6815514022683152 0.2835394032402888 0.14582711737033605 0.34734950108140406 0.3261299089759826 0497 -python ../Main_earth_system.py $SLURM_NTASKS 0.8095595633642311 5.3829855369333215 4.268636787493846 3.9159698181494007 0.17856560362465082 0.6041793593473624 0.12676283306772207 0.18014168931621038 0.13506207245119262 0.14416344255898872 0.20585776348312182 0498 -python ../Main_earth_system.py $SLURM_NTASKS 3.0252376098844085 4.9348619696961435 5.210496859528292 4.335379274018087 0.15938212685198475 0.8869513449143023 0.45525920038360523 0.1792947656204682 0.12047805109941677 0.4674270530073841 0.2053526974106169 0499 -python ../Main_earth_system.py $SLURM_NTASKS 2.094967442728583 4.769955502922426 1.0533829630250566 4.0729054595363845 0.12864210647689306 0.7738462967579914 0.9176810124529956 0.1226890990053214 0.1493583120737091 0.15884731924507894 0.18978073404814205 0500 -python ../Main_earth_system.py $SLURM_NTASKS 1.3266061238492424 4.559380698573763 2.7516711532348657 4.309875998250278 0.14376844316546789 0.8359367372836921 0.7238988187966044 0.11741060912166178 0.13214259660326755 0.9611588225129739 0.11639934323861365 0501 -python ../Main_earth_system.py $SLURM_NTASKS 1.9433103887120957 3.844605064924455 5.162599561615923 3.7002653335314366 0.11800662595727085 0.7954247347353293 0.32970640149433106 0.22786428009005794 0.11676097974262656 0.5355893992898777 0.3029174843862946 0502 -python ../Main_earth_system.py $SLURM_NTASKS 1.02490195364646 5.48665590229926 2.889106701862704 4.236845867826357 0.11100754211295055 0.7004909913181065 0.21240803434015726 0.20608787985483373 0.1273713260379725 0.2436576443355312 0.12922886436663997 0503 -python ../Main_earth_system.py $SLURM_NTASKS 2.344834160327639 5.862171343286655 3.4049552582876155 3.697310550398634 0.16240111525634499 0.5029433941378776 0.43742939096293487 0.19786037094010983 0.1352584637897154 0.7372604573234649 0.3013941109854737 0504 -python ../Main_earth_system.py $SLURM_NTASKS 1.361778268349184 4.104282799381356 5.496358716561542 3.787039817575362 0.12453009003144905 0.8465387606957306 0.2569460214542477 0.2937200859782205 0.13786399876674066 0.9852522389820242 0.3687729650869004 0505 -python ../Main_earth_system.py $SLURM_NTASKS 2.792499067041747 5.8640855714294595 4.228186750420439 3.594083095046196 0.14920011028301444 0.20659240315616562 0.45958437992578394 0.15302114177869314 0.1006544968113858 0.5561900764868419 0.3584431105495528 0506 -python ../Main_earth_system.py $SLURM_NTASKS 0.9557856255536554 5.571802113858894 2.4302166093835673 3.7016945668908168 0.1812498720090781 0.31220011535327885 0.5343825385421797 0.13294019576601387 0.11091774774445913 0.6043546517145052 0.1949444375029215 0507 -python ../Main_earth_system.py $SLURM_NTASKS 2.360060123461759 3.528957415242748 1.5018924224071428 3.938825383377877 0.16890222052662898 0.14745651737223517 0.19732520283046145 0.1099056789735718 0.11050986429286619 0.45662677264529583 0.14582785068324178 0508 -python ../Main_earth_system.py $SLURM_NTASKS 1.9423916690340313 4.626715308034777 4.209272007490737 3.5205955050696813 0.18743755903655607 0.39777783669549316 0.1664595640223684 0.19812532491816898 0.1480651589362107 0.5811221223286307 0.26885165743069017 0509 -python ../Main_earth_system.py $SLURM_NTASKS 1.1845935532222094 4.096467269309988 3.6036089837563257 3.9273889363826915 0.1132930971844016 0.9964297342638694 0.1483166076315076 0.23733453885368944 0.14675488268337267 0.8708576682838838 0.24671239128880845 0510 -python ../Main_earth_system.py $SLURM_NTASKS 2.6722162305054544 3.9118219116097217 1.5069033175221618 3.6147538924270592 0.1305499079398382 0.7892161456207147 0.6921746875915122 0.13825303773763764 0.12109451544487256 0.14362033701837543 0.1322789229511122 0511 -python ../Main_earth_system.py $SLURM_NTASKS 1.844939665278748 4.495375053373666 4.330587189037516 3.534798546253542 0.18526318481634005 0.2395296788611357 0.9790527313563924 0.21230875710811936 0.1462213546320834 0.2639176372958613 0.104322359465394 0512 -python ../Main_earth_system.py $SLURM_NTASKS 0.8946535126018237 5.623964804864462 1.8113906714195227 3.617873234354028 0.155286151972646 0.9886218945851978 0.7950110275001374 0.2324066560261743 0.13737979474180181 0.3209552689331159 0.3194123777385433 0513 -python ../Main_earth_system.py $SLURM_NTASKS 1.4637442696380716 5.152551023614338 1.2444972143776587 3.596351590712393 0.1784934221659031 0.5274349346846622 0.4314598450649054 0.1039702953599582 0.13942641755246118 0.7014726688452494 0.3334347104966219 0514 -python ../Main_earth_system.py $SLURM_NTASKS 2.5708299025536476 4.59096210501556 1.106375741055938 4.2013941025533095 0.14078585440039876 0.8186558467715389 0.1655352704429731 0.12617028216235265 0.11846011553800606 0.7529552470405262 0.11001562017287234 0515 -python ../Main_earth_system.py $SLURM_NTASKS 2.584744976418601 4.7620651257587046 1.8828564298409103 3.9799248818195117 0.11993510115289505 0.2864993538095997 0.6852705619638053 0.257954543639504 0.12309504862357452 0.8858786525113478 0.39638952112175674 0516 -python ../Main_earth_system.py $SLURM_NTASKS 1.2125056072656797 5.945351791817516 1.3725786436081306 4.353373300140233 0.10784279660093929 0.9662865888962118 0.48155101288745583 0.15933297681145545 0.10522659487388586 0.29007063731842964 0.17284872988572136 0517 -python ../Main_earth_system.py $SLURM_NTASKS 1.8004137971082508 5.993779423724493 0.8583991279434167 4.206688234401356 0.14777562828642493 0.8130743116370582 0.2831562625184102 0.23854903752411427 0.11506162318195784 0.7773189535705112 0.1936345043841437 0518 -python ../Main_earth_system.py $SLURM_NTASKS 1.3684612015406996 5.467122016253612 2.231546509180808 3.8300589242630454 0.11035590832581423 0.19386049799954463 0.38822184363566004 0.2663590196599279 0.13327456506311713 0.843456848334565 0.3597685119319065 0519 -python ../Main_earth_system.py $SLURM_NTASKS 1.9307596398950695 5.117841427278078 3.2510224979022624 3.8797611528812577 0.11386829190180396 0.13901129863350808 0.1543948094964395 0.15988201415690279 0.11881814371904337 0.7243757787992386 0.31228212453786997 0520 -python ../Main_earth_system.py $SLURM_NTASKS 2.5721006198952594 5.137973025736278 0.8492363976728498 3.838950106816903 0.1674606483448528 0.4609750075471559 0.9924445724552494 0.26305102299046734 0.1447663957556363 0.7255304834347561 0.3361944827582573 0521 -python ../Main_earth_system.py $SLURM_NTASKS 2.3654682031740384 3.9337740271017965 4.541579900530306 3.903321797673493 0.161908739701361 0.3904596773332437 0.10942339695975674 0.12375687070732384 0.12249011770765503 0.6763548295411345 0.1885821836848356 0522 -python ../Main_earth_system.py $SLURM_NTASKS 2.031131560828243 3.5669627308601908 2.7776708191471773 3.524309936670153 0.1657105507644304 0.43106001071297995 0.5421070710041569 0.21803275903581962 0.13654864335400627 0.1004861918756909 0.24621998490211758 0523 -python ../Main_earth_system.py $SLURM_NTASKS 2.1696720302062182 4.451489075053556 4.652491286007216 3.8317736867221175 0.1489654341258621 0.37778059128124153 0.957231048116429 0.21369178378840387 0.11474643953396356 0.30138106870140646 0.11144617059111463 0524 -python ../Main_earth_system.py $SLURM_NTASKS 1.4610311219643983 4.030749850743461 4.358697626990587 3.769827714378722 0.10659267826665779 0.5922763537916448 0.8636568031296424 0.18919567657394915 0.12650195226563282 0.8758366926694212 0.3058839057755629 0525 -python ../Main_earth_system.py $SLURM_NTASKS 1.2508598415710286 3.7286339924562246 1.7975334864723538 3.7899407103455083 0.1668994431498791 0.30819785267110605 0.29151989225613145 0.23931507807200464 0.10612993326788339 0.9477278183436196 0.10284552398451217 0526 -python ../Main_earth_system.py $SLURM_NTASKS 1.3651570841647334 4.093948955890071 2.904281738279887 3.670540691202302 0.1826218758631043 0.17337567397639153 0.11478847083750363 0.13910264584971943 0.1371506467723911 0.5025304997337818 0.32786700197535945 0527 -python ../Main_earth_system.py $SLURM_NTASKS 3.1641862750451804 4.872272577535725 3.5212359100416366 4.0492642671226005 0.15831381258396868 0.9963570344339275 0.9115122325318302 0.12052348394768729 0.1441760785716247 0.8322082189782284 0.3077425925878202 0528 -python ../Main_earth_system.py $SLURM_NTASKS 0.8854059736713177 5.930725370061859 4.2907850154290275 3.68962970739192 0.1432446117381537 0.6631112140378149 0.18918469870890248 0.20588485942606777 0.11550451029594357 0.4379977958259236 0.2893217462663745 0529 -python ../Main_earth_system.py $SLURM_NTASKS 1.7043063124962974 4.4405179968610256 1.4896929001925425 3.8729696061702086 0.11314472473484473 0.5613217400722645 0.7450806246426102 0.2756795696505222 0.12467307476445756 0.6413102805907529 0.31042654952213256 0530 -python ../Main_earth_system.py $SLURM_NTASKS 1.2476783910916436 5.705897094674037 5.034543274996677 4.2772743207445805 0.10896596052355675 0.2520512460155097 0.13328697945535176 0.29815552371965104 0.14172222710497376 0.7110203536754703 0.18522045712295776 0531 -python ../Main_earth_system.py $SLURM_NTASKS 0.905270971345866 4.755363731289594 4.533212326474956 3.6453503271253243 0.12717941641690034 0.1347041847094336 0.35428166560813945 0.1739240458259627 0.1330553256745785 0.7366286224489871 0.31838726351159913 0532 -python ../Main_earth_system.py $SLURM_NTASKS 2.6714005681247555 4.038651489964293 2.0445025151504863 4.14614863232342 0.1594206786511467 0.44329923219086553 0.22865790950694362 0.10229686908802224 0.12692008297805063 0.7596385463638042 0.12012166175051606 0533 -python ../Main_earth_system.py $SLURM_NTASKS 1.9889765351357966 3.593427323389467 4.312151751097795 3.6744910953171104 0.1640446768421983 0.6037870190891026 0.6476950377302901 0.24551904820001952 0.11075900883940046 0.7576750726637228 0.2197309903648124 0534 -python ../Main_earth_system.py $SLURM_NTASKS 1.447383317458777 5.941594988599578 1.1114559693581973 3.930090266566213 0.1962610282127084 0.17677199558277473 0.8600143629486947 0.14969028360972794 0.10707089767945469 0.3049605516984313 0.26244927047604255 0535 -python ../Main_earth_system.py $SLURM_NTASKS 2.4843414881252492 3.77235722787903 3.4779863699491367 4.115317312208772 0.17971227078293545 0.20727088352017467 0.599253534357425 0.17526919645988545 0.1270946471301574 0.3151134725014161 0.14728985849961818 0536 -python ../Main_earth_system.py $SLURM_NTASKS 2.6291452783510945 5.1208489129834005 1.1676319880251198 4.234578603394698 0.17711919824919764 0.3139507007173213 0.5621981927938084 0.12432749073515481 0.1073890075112555 0.24804820850055875 0.29729704998071194 0537 -python ../Main_earth_system.py $SLURM_NTASKS 1.3033571049460906 5.614121877870874 5.170621219529913 3.5320839553018843 0.11846045695649395 0.23273990218949528 0.5880661200436561 0.2585096233708758 0.14007586061180533 0.9722972321512795 0.19437684820118073 0538 -python ../Main_earth_system.py $SLURM_NTASKS 1.7895619305086243 4.7732407055412756 2.7001682526524764 4.358104745857901 0.18164048252582726 0.9425702073922569 0.9204311364924301 0.27285968156293694 0.13571288095825793 0.41260260536598103 0.36487295915500795 0539 -python ../Main_earth_system.py $SLURM_NTASKS 1.1604201282387052 4.139725444319752 5.2466246513019215 3.996881538900787 0.11977282195221191 0.6150292524451644 0.2720321016245666 0.13421397420384434 0.13817632545510314 0.15968932947682815 0.17339596842527488 0540 -python ../Main_earth_system.py $SLURM_NTASKS 0.8138670996735856 3.6908848959033898 1.8949533040227178 3.7824490477439436 0.16318273865720329 0.7230953271669501 0.28248060109754386 0.19055956259574475 0.1292323841781797 0.8942896732456039 0.33742268217917243 0541 -python ../Main_earth_system.py $SLURM_NTASKS 2.781433744920867 5.984082627500785 4.23988233007018 4.0768064665776285 0.12849352760904661 0.36491046849952535 0.7594888997932816 0.28561002559526494 0.1278414407636519 0.3564182177320109 0.28764348179743315 0542 -python ../Main_earth_system.py $SLURM_NTASKS 2.423785669372819 3.6791511112742277 4.730975549872581 3.708973440339462 0.17101689573583143 0.2622376940042699 0.4786091765032435 0.24812454423152366 0.12926146295418853 0.7079754358897031 0.36446695484574354 0543 -python ../Main_earth_system.py $SLURM_NTASKS 2.4635339726080883 4.511361356732392 4.043910319028953 4.087895583386653 0.16415542352577045 0.8377424403790644 0.764737271351265 0.2253618745079641 0.10506541477310054 0.8130734965493001 0.14170568228205555 0544 -python ../Main_earth_system.py $SLURM_NTASKS 2.405576086676061 4.711947610810084 1.561544929756506 3.6475727822732855 0.1550242827224919 0.12219141622677315 0.46476068686451444 0.12933165566849997 0.14886617480897277 0.79153380256807 0.2002044963878824 0545 -python ../Main_earth_system.py $SLURM_NTASKS 1.2576825971618606 5.426535704181531 3.849993229245033 4.372571581509018 0.19065383403491398 0.294360548001636 0.2235809869358663 0.2326859737543231 0.13853059933639808 0.2766169903848491 0.2040855880775718 0546 -python ../Main_earth_system.py $SLURM_NTASKS 1.912018305346127 4.82638478942109 4.258841752496223 3.8441541047918406 0.12410554247475467 0.1967144485485715 0.4120339606209493 0.1783262200126257 0.14701620365214763 0.4151999883339553 0.1690771669932401 0547 -python ../Main_earth_system.py $SLURM_NTASKS 1.6225550599393093 4.259424503524278 5.254508400818881 3.691455772161598 0.1941907035261702 0.4513123777406698 0.19184973623995705 0.21840867259338198 0.1314303342552875 0.7269869652106504 0.15499891984357514 0548 -python ../Main_earth_system.py $SLURM_NTASKS 2.808043703543193 5.979530357123533 4.350774297876799 4.12981572707994 0.11511344363894556 0.8245711111482991 0.5984184238671804 0.18666025604689723 0.1445373192986886 0.20349021881305257 0.3843363927186034 0549 -python ../Main_earth_system.py $SLURM_NTASKS 2.578453882190357 5.933992044623238 2.8495441198053095 4.060371428860359 0.13277289245347157 0.6993273093548679 0.5907237826763042 0.17472139464292868 0.12019782964821892 0.3250163842784828 0.3322684278483278 0550 -python ../Main_earth_system.py $SLURM_NTASKS 2.1270402216530107 4.740101196181991 4.99325986504315 4.26811241367438 0.11398367666644549 0.49905522075428765 0.7881185003491378 0.28069392596487075 0.13339272113414627 0.8163563329591981 0.3117287623754658 0551 -python ../Main_earth_system.py $SLURM_NTASKS 1.2522595036643538 5.104625580244641 2.0969148256421555 4.438225765746609 0.16841201798554428 0.418883298679504 0.3690001674618215 0.19484566169670722 0.13968628963769295 0.3413302510964529 0.25735355193378234 0552 -python ../Main_earth_system.py $SLURM_NTASKS 2.8687935769970085 5.585152320675188 2.656643523074332 4.322027859722481 0.17827499948105127 0.7498678184696688 0.6109910066876982 0.2784875135994811 0.12014754031935503 0.151653851803578 0.23026604285098687 0553 -python ../Main_earth_system.py $SLURM_NTASKS 1.6522161668967612 5.757201535695325 2.0715097830664684 4.240369073596485 0.14545465072470212 0.21659925651819123 0.7260552001301641 0.2658928655400462 0.12804013822727786 0.29239306368263385 0.2753618819592585 0554 -python ../Main_earth_system.py $SLURM_NTASKS 1.2669900138277206 3.5268514336762324 2.5458717228118477 3.995313619681898 0.13540680884323014 0.8381217951485579 0.32624427536539125 0.1400963622320212 0.11582476477231646 0.6717369339010462 0.3957161612411817 0555 -python ../Main_earth_system.py $SLURM_NTASKS 1.2801283946301072 4.656448541688024 3.1129883866915513 4.035069018306292 0.17043723926852353 0.4560855130559003 0.10097095205964539 0.2267943439095317 0.1340276031637727 0.14181847683489834 0.1247285144781628 0556 -python ../Main_earth_system.py $SLURM_NTASKS 1.343245953860858 3.9875398491871223 2.450684573701889 3.7513594696877273 0.19676604000400966 0.20558129925397406 0.3379611586117556 0.19389102657795748 0.12256616721441223 0.22550753726288175 0.2157220738569641 0557 -python ../Main_earth_system.py $SLURM_NTASKS 1.2771566857052759 5.11095091428974 4.251073957665244 3.6679810078937503 0.12131776636393547 0.8013570322509919 0.5283540013514065 0.22990694112838592 0.13428593687231527 0.11384725603032479 0.3798570879483313 0558 -python ../Main_earth_system.py $SLURM_NTASKS 1.468152921508008 4.936430876487359 2.4173072862959017 4.473345928956074 0.19296250741610485 0.34454874625436127 0.15127085915751673 0.2186871280232462 0.1423982472358439 0.822860704966393 0.1748671781214737 0559 -python ../Main_earth_system.py $SLURM_NTASKS 1.7829087193427084 4.434907749309028 3.0187181553550984 3.6019170858366256 0.12479021957842233 0.8163725044975905 0.9680912935649083 0.2914359843397897 0.12792829439468348 0.4043109347836038 0.2592270723105431 0560 -python ../Main_earth_system.py $SLURM_NTASKS 1.6791177166810756 4.3020475000762985 3.7371261412469607 3.6336670788766523 0.17031292461770609 0.27982606968750257 0.5020897138727821 0.1624650708769022 0.12433844977818226 0.9636887219235699 0.2078308427305829 0561 -python ../Main_earth_system.py $SLURM_NTASKS 0.8054693882319426 3.731531603435703 2.1498115795742354 4.143938803447632 0.12802431772599965 0.30437179767740447 0.9372585966837762 0.16267260226345992 0.11980143273078324 0.6805719476187979 0.2939875277008105 0562 -python ../Main_earth_system.py $SLURM_NTASKS 1.199460670993791 5.582748320270383 4.7615637646707745 4.337695809673056 0.1283097397386385 0.8916788632168232 0.8951593204612008 0.23167282241607742 0.14294308678864054 0.1364077837239679 0.3393244429404656 0563 -python ../Main_earth_system.py $SLURM_NTASKS 2.640037207029934 5.657362806620321 1.6375044710905686 4.2421888281063955 0.13807429292371579 0.10825875102528755 0.5597253139505396 0.12096924133007783 0.1039795922797059 0.892989237476778 0.36141359204580215 0564 -python ../Main_earth_system.py $SLURM_NTASKS 1.6332161103976535 5.865171589670502 0.8964164896987262 4.244192560284904 0.1088051793347473 0.4047066350677948 0.9841811158849765 0.1596877424182077 0.14152558554779424 0.9678383879372708 0.18960787380598848 0565 -python ../Main_earth_system.py $SLURM_NTASKS 0.8806342291696265 4.065241864641209 4.943789030148814 3.8230620304373297 0.13423314041413897 0.1585996865818104 0.769616816723387 0.1212508153489613 0.12074633582117109 0.40965711815811523 0.32373603671666984 0566 -python ../Main_earth_system.py $SLURM_NTASKS 3.1044407749829404 4.073404278143836 1.1395514802459437 4.361933079404244 0.11502469333948334 0.82854121480232 0.8843802947276498 0.29458366201437886 0.11072087661745347 0.1503301111013685 0.15872209241262145 0567 -python ../Main_earth_system.py $SLURM_NTASKS 2.429747826871327 3.918607966123736 2.6921218241743397 4.198808498205266 0.1596403873604772 0.5734962837277245 0.984740951019033 0.1810810685895882 0.11722451484432335 0.2671859099680064 0.21540054757038563 0568 -python ../Main_earth_system.py $SLURM_NTASKS 1.6438802015997398 4.93953444587261 1.6858285451615038 4.112125068186699 0.14847715420649574 0.7053134535714393 0.5899617311142208 0.2511603482213639 0.14027371918256992 0.6749746965258585 0.2657748878780368 0569 -python ../Main_earth_system.py $SLURM_NTASKS 1.8670793762899949 5.0818838987078845 3.003074366507076 4.432634700076632 0.10245664800279439 0.6351066197681546 0.8616427896174823 0.1653833895327441 0.12034097040467555 0.3602118583316377 0.19719685948664184 0570 -python ../Main_earth_system.py $SLURM_NTASKS 2.8705653358346623 5.937735194301439 4.592476737344101 3.73362797519944 0.1939212943413259 0.7081108346068572 0.5335787244540607 0.13887566323780115 0.14234378559692573 0.3171364434935853 0.27918067591340756 0571 -python ../Main_earth_system.py $SLURM_NTASKS 1.1446307489386285 4.861385214285784 4.99106191071152 3.5822152560882756 0.11491484741993874 0.9630054240373503 0.8561468023888318 0.21699765192674464 0.11697568777115856 0.3890772985542982 0.2685301030030045 0572 -python ../Main_earth_system.py $SLURM_NTASKS 1.077645608228413 3.673875330302646 3.320849356570182 4.118178160529136 0.14060588213146483 0.6135187071732146 0.23272609253802734 0.26459507397088455 0.1281018576333033 0.6698264718365833 0.3131936718149527 0573 -python ../Main_earth_system.py $SLURM_NTASKS 1.7551866812453856 5.222824241000003 2.2773608700880317 4.281461351152132 0.15731089587911107 0.6721210054868376 0.7433525836939877 0.12077979891677336 0.12355651519607014 0.8655713370883679 0.28442917944816704 0574 -python ../Main_earth_system.py $SLURM_NTASKS 2.9280282718922086 3.6605652387041325 4.153146515337265 4.486705848074826 0.12771217208071955 0.1041521041672158 0.6130785924814013 0.20537967512880978 0.10811280021298837 0.17927681667792777 0.2696040732474503 0575 -python ../Main_earth_system.py $SLURM_NTASKS 1.1501757674259667 4.6941571922868235 4.70176805200118 4.493531248620576 0.11956296535642574 0.5094887150324837 0.49700034980396723 0.11030430423031136 0.13537273057976695 0.1880078094696831 0.37080272373183176 0576 -python ../Main_earth_system.py $SLURM_NTASKS 1.2188753076146848 3.6473941888776436 3.5273478234053837 4.350495366984362 0.16522246740991003 0.22254388351694404 0.5582137175879195 0.2802216029505957 0.1185884505031399 0.29848366320891345 0.1381904914301019 0577 -python ../Main_earth_system.py $SLURM_NTASKS 2.703422469093857 5.277126855386233 1.8288345744057377 3.745699671367719 0.1096472566013432 0.6212323050738707 0.28634249349362584 0.14579974541348123 0.14398576510553374 0.6798169295110881 0.396010602436606 0578 -python ../Main_earth_system.py $SLURM_NTASKS 1.4405869731862173 5.490455307823079 5.362693692372026 3.73426319818113 0.13908552255291232 0.8611303483789955 0.9428776160021634 0.29722322207801954 0.12592494022607126 0.6934264637676947 0.1251037307686255 0579 -python ../Main_earth_system.py $SLURM_NTASKS 2.851852633373471 3.883472240754373 1.9456014907279358 4.466296027605951 0.1900023691925328 0.968829086874111 0.5616968263157882 0.22375955304929757 0.11637794746804878 0.6707630570288023 0.39182799740635643 0580 -python ../Main_earth_system.py $SLURM_NTASKS 1.5958674304868448 5.955473431220817 1.7178452865266176 4.426151441573736 0.1105399688558539 0.18431063519371285 0.15592942291328515 0.20085811267929607 0.14667193294979236 0.949195164879594 0.11909439372518148 0581 -python ../Main_earth_system.py $SLURM_NTASKS 2.9502364920333513 5.696611520232418 4.339470530363516 4.134017770120915 0.15057803171495848 0.6538549605757645 0.4359486281100813 0.26087483367077857 0.1063951131994848 0.13527022657385726 0.31497874077810695 0582 -python ../Main_earth_system.py $SLURM_NTASKS 1.764473248431011 4.494556112188099 0.8035220779589684 4.232892005499876 0.1623054684365284 0.9918462403104061 0.3718743853763119 0.24976686097008297 0.10366380358410505 0.3113382505178961 0.16730219315460906 0583 -python ../Main_earth_system.py $SLURM_NTASKS 1.336222956537171 3.536555343113589 4.4667257392284725 3.894463837452907 0.1953809080000585 0.8441640241503683 0.9796540938668282 0.16837401869930174 0.10464074797555437 0.9919477790875874 0.25951104969002237 0584 -python ../Main_earth_system.py $SLURM_NTASKS 2.2960373786347548 5.288436159364274 2.551560668363539 3.68217898331498 0.11169421214626457 0.6924919418293016 0.6413199206271843 0.2501838706054511 0.10748110508904135 0.47400623582053536 0.38974529254241275 0585 -python ../Main_earth_system.py $SLURM_NTASKS 2.621702977896602 4.886328833263205 1.465091373019316 4.318269687891181 0.11730299155575145 0.9856258703968087 0.5517079087233946 0.21183797093530238 0.13281932967174775 0.4902655726924422 0.2800577569581465 0586 -python ../Main_earth_system.py $SLURM_NTASKS 2.6806075040593953 5.415358825977554 3.60663055055832 3.8555268093989308 0.18295964577604612 0.902189820534388 0.6813044514417012 0.1915674804609582 0.1361178707647794 0.18236604958616148 0.27646058322104294 0587 -python ../Main_earth_system.py $SLURM_NTASKS 2.545578010369052 4.970320346840716 3.40224350275201 3.681960993645114 0.1671162712426924 0.8476045806928894 0.7188236000193374 0.14305710753617057 0.10355399292455039 0.5015945413989462 0.3829841982747191 0588 -python ../Main_earth_system.py $SLURM_NTASKS 2.285859865962993 5.889891597061167 4.604491066842843 3.9913196437976826 0.1259096389559953 0.6724672108848476 0.5440861363825645 0.18722361741407761 0.13884945961660608 0.8980021949478082 0.2479204982597779 0589 -python ../Main_earth_system.py $SLURM_NTASKS 1.5556197705938177 5.0302714130821045 4.400662100228575 4.333429972337286 0.17126949634329647 0.15836975785092694 0.14178672500000902 0.2517776116967591 0.1411756410709582 0.9901967069791116 0.2543769543064428 0590 -python ../Main_earth_system.py $SLURM_NTASKS 1.2262360062500335 4.502607192097941 4.56851720083934 4.078520244955859 0.17801240058500226 0.10989175582659974 0.1210753438825382 0.14113422275931387 0.13047657047504985 0.6419456170872259 0.34982805407648526 0591 -python ../Main_earth_system.py $SLURM_NTASKS 1.1647805694349032 3.5719606780688733 3.0900729372221276 3.668383944229898 0.1954748191283922 0.3885743997439324 0.28544452109260876 0.25879217432744944 0.11062933847763197 0.2714706880988844 0.2998754969782732 0592 -python ../Main_earth_system.py $SLURM_NTASKS 1.0919370509843414 5.199314583615652 2.982209436144477 3.942914628636181 0.18841856317098005 0.8642067102076179 0.9090258271933794 0.29986778530307057 0.10418684986508238 0.4647223844365228 0.38687403623157934 0593 -python ../Main_earth_system.py $SLURM_NTASKS 1.712241555438112 4.831555720772403 2.907551957045311 4.385454590168503 0.10748683669803104 0.9753808944931424 0.18671770820299782 0.12981396921665858 0.13215250401116774 0.6883943758330422 0.23451646299689105 0594 -python ../Main_earth_system.py $SLURM_NTASKS 0.9644412040396252 5.741490077565173 3.6955847806241655 3.57939286248934 0.14388101402848177 0.9514454473427534 0.217314440482264 0.20156655883545502 0.11660912135768903 0.8374857053481878 0.14822370196984733 0595 -python ../Main_earth_system.py $SLURM_NTASKS 1.35245196887491 4.675440211454906 5.1867780423249235 3.7241261823847354 0.12036015034186763 0.25564635011139913 0.7078777727836059 0.17715000709879536 0.1489739784246505 0.6289478817516035 0.2962792812653013 0596 -python ../Main_earth_system.py $SLURM_NTASKS 2.9431049055948426 5.84764049255743 1.7531771673180074 4.317291252899833 0.16004521601670524 0.170695560696035 0.11984391862483507 0.17892779601818332 0.1399857965999351 0.5758400344871276 0.20278828893704132 0597 -python ../Main_earth_system.py $SLURM_NTASKS 2.1469315823181736 4.844891746063836 0.938738809609949 4.210602884166073 0.12722489700458894 0.8735980366365917 0.90241651822327 0.21391792192200626 0.1418481545120283 0.516213279549231 0.29260486154612936 0598 -python ../Main_earth_system.py $SLURM_NTASKS 2.988800635437686 5.842930772095357 3.522413116718739 3.9822578310889503 0.17096514983175215 0.8823549891210369 0.17123627155116955 0.2783238334597438 0.12531103064586818 0.9603539840670212 0.2747887155486062 0599 -python ../Main_earth_system.py $SLURM_NTASKS 1.458335671870097 5.954465330944275 5.205349285878419 4.295844014619897 0.1959893745525262 0.9481995857792566 0.20144675475128843 0.15482180332491632 0.1323748578676364 0.6863300848750558 0.3592146293298477 0600 -python ../Main_earth_system.py $SLURM_NTASKS 1.581699939695176 4.809561221933831 3.3320826952263802 4.178310430482969 0.15382829580332208 0.864041157676068 0.3473544392857145 0.1352978124228823 0.11417635268382893 0.11244679730845636 0.18278967454035766 0601 -python ../Main_earth_system.py $SLURM_NTASKS 2.3799171599951574 5.799531112773712 4.546042285741109 3.6098488624089082 0.17071348920058632 0.43884623255392663 0.7502955095019829 0.11342667534281389 0.1426693558006841 0.9562648116927853 0.14657985517887598 0602 -python ../Main_earth_system.py $SLURM_NTASKS 1.2824571148123567 4.705683618997107 4.380033140725559 3.637402596982743 0.13123694344443027 0.5290273892267237 0.4628517035285743 0.16581357350784443 0.10392452309081518 0.6398765837402806 0.20611779716459921 0603 -python ../Main_earth_system.py $SLURM_NTASKS 1.4502483033276947 5.679038942769403 3.5362145206262054 3.965149724792672 0.1576301888582772 0.34791946585071054 0.357963306581796 0.2693717795632653 0.1153629892054912 0.3926001814005673 0.11025035172489425 0604 -python ../Main_earth_system.py $SLURM_NTASKS 2.96598645397079 3.99376037634198 4.583464948425819 3.8074121329642656 0.14484722232320169 0.9815713487848498 0.4100398836905721 0.1083072510576572 0.13856171955047925 0.4506880031306325 0.39460169227417696 0605 -python ../Main_earth_system.py $SLURM_NTASKS 2.7484326616313055 5.129711908192164 2.1823399867741036 4.421529485405964 0.19841716356848488 0.6294112255820036 0.6974822621085136 0.17950924894776235 0.1459571364669072 0.970707661417871 0.1809193053864625 0606 -python ../Main_earth_system.py $SLURM_NTASKS 1.4525819103264073 5.101433896862854 2.2739312857745135 4.149769390400344 0.11788359990444816 0.8070669125603347 0.10453876176778411 0.29605186949378803 0.12698982621216973 0.7183325296470023 0.3134554206939064 0607 -python ../Main_earth_system.py $SLURM_NTASKS 2.711534416727477 4.759660132194004 2.013434188858308 3.585432718902913 0.1026299619747723 0.59387288569171 0.14728576878006788 0.19008883272376315 0.14532353768356338 0.6258890807586792 0.2579456597673004 0608 -python ../Main_earth_system.py $SLURM_NTASKS 2.879068610545178 4.326274025070088 5.182406796369981 4.059772999047398 0.12204795816156495 0.7665150356415633 0.8011492830577743 0.20993713920800217 0.13178080201480413 0.39171662131430784 0.28707770717762293 0609 -python ../Main_earth_system.py $SLURM_NTASKS 1.7507209989013854 4.127642607918942 2.512024043700502 3.716546925314992 0.19769698392585167 0.8763756555817082 0.8349369597948276 0.2661392795680896 0.1157624179127812 0.9010664755511435 0.23693748825733965 0610 -python ../Main_earth_system.py $SLURM_NTASKS 2.371494917174243 3.7094697097048677 1.0129514820026193 4.452877108416007 0.15755182612001364 0.9114545477720868 0.6841103475752879 0.10968297634689027 0.110066537577096 0.7094695252168914 0.23177392448387382 0611 -python ../Main_earth_system.py $SLURM_NTASKS 1.213043796916141 4.25266872067593 2.4587351316035644 4.411196132841444 0.12499298805247046 0.31146493189318775 0.2777299808442067 0.11468313046528245 0.13173015256187212 0.37842707836583533 0.267858834924124 0612 -python ../Main_earth_system.py $SLURM_NTASKS 1.0732857529448676 5.434602859098348 4.672059586472444 4.480323730882035 0.10055488602625723 0.12699063568740565 0.3292558229710948 0.19873400740764652 0.10839327635598513 0.1030325653372501 0.3048875885450717 0613 -python ../Main_earth_system.py $SLURM_NTASKS 3.1955391904043555 5.0545922264621455 0.9096165986836879 3.6791392160018663 0.19806383137738676 0.1100390073039946 0.46629661595927807 0.17081858504668368 0.11268497581792582 0.4023292728957262 0.1907312116289352 0614 -python ../Main_earth_system.py $SLURM_NTASKS 1.681748505928454 5.406643521764433 1.1613223661402339 4.2927369307002445 0.18582300339408198 0.980566531012646 0.7277281276440675 0.26645601747527514 0.10330044442198802 0.8273738429781411 0.3163492498416346 0615 -python ../Main_earth_system.py $SLURM_NTASKS 2.2012864259585085 4.7165227040402655 3.832954001090708 4.1307558703394935 0.14467618056539996 0.8887707669204624 0.34355183947199164 0.23618555580253525 0.12550693077818614 0.10817742623818608 0.22198275233880538 0616 -python ../Main_earth_system.py $SLURM_NTASKS 1.0977504440330805 4.587315968272815 1.6171732222820823 3.7799911722957167 0.10357369189509755 0.2094552421214906 0.7853621749072255 0.11107482896073152 0.10288899374939808 0.8341260779276632 0.3852105202664411 0617 -python ../Main_earth_system.py $SLURM_NTASKS 2.905905116555144 5.142430940551682 1.4697212696738864 4.2748368210122045 0.10140671580589385 0.24448107674616643 0.7467227453837867 0.15296628371385415 0.13490357585625307 0.5787243153439628 0.25653237770766624 0618 -python ../Main_earth_system.py $SLURM_NTASKS 3.1891077419729816 5.717739997573842 1.9091948224911786 3.5172516991048295 0.12409329094617272 0.9726265495295228 0.48750108016355553 0.2416311797417944 0.12913612711454953 0.9670822028869677 0.24015677607289806 0619 -python ../Main_earth_system.py $SLURM_NTASKS 2.5063762142974895 3.982390305529239 3.414713323532556 3.625920912321261 0.17019928120386518 0.14029552677918464 0.8396376474817866 0.15849699065152686 0.11706124050161881 0.4432713190035993 0.29188118679866387 0620 -python ../Main_earth_system.py $SLURM_NTASKS 1.455505341809237 3.9404530768871413 1.1959161787242985 4.394105623544373 0.10725937088327231 0.6243400552572406 0.5600772834918917 0.11931026108798357 0.13225590689265967 0.180569329761997 0.23287381296536352 0621 -python ../Main_earth_system.py $SLURM_NTASKS 2.7399178170463614 4.515063379226551 3.4993731908596306 4.458105613143331 0.1122765810420841 0.7367196040738893 0.2310964869072365 0.13337025636243063 0.13918445727317147 0.19629095013342662 0.2774892290408683 0622 -python ../Main_earth_system.py $SLURM_NTASKS 2.9076788811840713 4.023371334568443 1.0750216393471788 4.11613170428396 0.10858661704807225 0.7829244553900752 0.7973213318515819 0.2196652087878136 0.1390499245524058 0.13871875133014627 0.21793263689402145 0623 -python ../Main_earth_system.py $SLURM_NTASKS 2.896216346614313 4.78086881071398 4.933374622625816 4.019852162008385 0.12700397514723258 0.1685209028970472 0.5464920269739184 0.2215228903890335 0.13138653541430106 0.634070947226081 0.16761445913417872 0624 -python ../Main_earth_system.py $SLURM_NTASKS 2.6319674203963155 5.33847613197211 2.352201730358646 4.191350350960782 0.12921626518843785 0.8590716258698401 0.6064713161864793 0.12957941900831937 0.14853173783128698 0.16984707776623792 0.3945079490298876 0625 -python ../Main_earth_system.py $SLURM_NTASKS 1.9026764094143227 3.9733075822310675 3.895171356587218 3.555758546578792 0.14215975936390962 0.6650797179253459 0.13757800794911662 0.26411441058202034 0.1388842601627505 0.5803215950265972 0.36995090273318143 0626 -python ../Main_earth_system.py $SLURM_NTASKS 2.260449864932797 5.895248547835172 1.421040270149843 4.159047636020904 0.1880065880103697 0.3727650783320273 0.8170422781378524 0.26823796794120747 0.14634598165957066 0.8475555167782459 0.10145534276085749 0627 -python ../Main_earth_system.py $SLURM_NTASKS 1.8620031210019854 5.569532806969734 1.843665044548002 4.271542594642311 0.1060054657474659 0.41987215362136154 0.2319961398829659 0.24363957730905297 0.11374951493003456 0.4959613213565167 0.3108499496222858 0628 -python ../Main_earth_system.py $SLURM_NTASKS 2.067053581353968 5.893722107812512 5.3875606322522955 3.571367915079213 0.18402706819808523 0.6081582280659751 0.7728924986934107 0.1704146961351119 0.12285820533068931 0.6169817354287637 0.11443747343627012 0629 -python ../Main_earth_system.py $SLURM_NTASKS 0.8745609595448534 3.8299042197024824 3.2041697884247187 4.4398780396126565 0.13873852129925587 0.1143614541391441 0.10788889105983482 0.13567544869211393 0.1433990730010286 0.3187283613141707 0.12322789671688734 0630 -python ../Main_earth_system.py $SLURM_NTASKS 1.5087511348426943 5.0783429717600415 3.8222360916817957 3.917822178823078 0.13578923580639798 0.9999290879736648 0.9337700291173332 0.28449031116468204 0.10902336401951546 0.6592703044185009 0.22729812655369927 0631 -python ../Main_earth_system.py $SLURM_NTASKS 2.93902963307465 3.6487934637250046 1.8503282693721508 4.006273978908083 0.15368755562926315 0.6524057360500773 0.36312504432920456 0.11492849362679955 0.12237376265408742 0.7702072682433138 0.21763450513194552 0632 -python ../Main_earth_system.py $SLURM_NTASKS 3.125258246951071 5.459190905790168 1.581266536220411 3.8605743088664832 0.12251382697986099 0.31700890626326805 0.5004227921422898 0.1395310776183246 0.1097953196611899 0.2620783359861195 0.16631340683877585 0633 -python ../Main_earth_system.py $SLURM_NTASKS 1.417915694683296 4.546934322470122 5.279579811554142 3.6887254439037407 0.1004391728183837 0.5053503081151081 0.8471466023839728 0.20239277075628304 0.11788149342809501 0.6444802078237416 0.1817411182164559 0634 -python ../Main_earth_system.py $SLURM_NTASKS 1.2431686465212117 5.504653827390311 2.198960901441076 3.5519318379112272 0.13481437271359467 0.49745012036525516 0.4481178193745108 0.12620186793247412 0.13698233648882072 0.3354611851349959 0.2772375089199013 0635 -python ../Main_earth_system.py $SLURM_NTASKS 2.0582128226745633 3.686916962463353 4.708491864161269 3.573517720235141 0.14620957241358407 0.9847135706330177 0.36993337316845754 0.19187833369991236 0.148929331330876 0.20578252587221663 0.3436196680106436 0636 -python ../Main_earth_system.py $SLURM_NTASKS 1.871177478682765 3.6756625142359076 3.0733614612369156 4.3629084056478895 0.17727389641944602 0.641278913125919 0.8969988355806915 0.20118345111169883 0.11925519753537042 0.22812747704316602 0.21909459783012292 0637 -python ../Main_earth_system.py $SLURM_NTASKS 1.0156033034709437 4.986248900866569 2.772088524003136 3.7867511043939532 0.15511269953090523 0.9287996265507038 0.36503205383584336 0.2590468445238452 0.1012901503634837 0.673925662631441 0.21617080009719153 0638 -python ../Main_earth_system.py $SLURM_NTASKS 2.742021627087097 3.8270103650467915 2.859710125448296 4.128225569751156 0.12485557274794279 0.3403319248795403 0.9125499767891049 0.1993711700304085 0.14033648611076083 0.23602787232297054 0.1336690887017874 0639 -python ../Main_earth_system.py $SLURM_NTASKS 1.96973172473829 5.045445258259726 3.676405502608672 4.230858157222631 0.10703236377824002 0.27700160756337455 0.3428924531871099 0.23713295108071977 0.12275203930654947 0.11069790322978157 0.24389059759783205 0640 -python ../Main_earth_system.py $SLURM_NTASKS 1.409704313792036 4.47656999360671 4.718920967672683 3.9463978211025843 0.15575396886942935 0.9717132646143269 0.20893618729300611 0.27696204369158706 0.13393036390992485 0.9151115396409095 0.20340909338280727 0641 -python ../Main_earth_system.py $SLURM_NTASKS 2.311735243470077 5.3536252681928005 4.000517754963734 3.8083064002307383 0.17631604879284477 0.8447616181639404 0.7148692226894551 0.23451472400880155 0.11039308114216151 0.22323223156905247 0.3213392268000515 0642 -python ../Main_earth_system.py $SLURM_NTASKS 2.382589351261977 4.956852435702592 4.389484872290504 4.251590689228296 0.11922721262019609 0.8086207167481753 0.42693075334679864 0.22807601164281271 0.10017499357953824 0.4845622148477353 0.28275628145557247 0643 -python ../Main_earth_system.py $SLURM_NTASKS 1.5655175019110144 4.727058865141549 1.6194569053303933 4.324976214957584 0.10095579839723148 0.7284012500014744 0.6089122350487797 0.22758144866818722 0.12020446444204017 0.7173261232932762 0.3446724161746828 0644 -python ../Main_earth_system.py $SLURM_NTASKS 0.844145411878604 4.581506437479703 4.554073408739501 4.412338169904553 0.14205434360678065 0.7160515431719863 0.6596142001078453 0.10296785921336889 0.1205895115023822 0.3856970882915619 0.22364475536822206 0645 -python ../Main_earth_system.py $SLURM_NTASKS 2.4706218841561203 4.135240869990211 2.0226256022691897 4.467386931066375 0.11152342984082275 0.6642071420324392 0.6744237043729919 0.21996165034415177 0.14771541082031597 0.5407611033905778 0.37948299807247166 0646 -python ../Main_earth_system.py $SLURM_NTASKS 2.559464997185639 4.3076841319153365 1.2720449008227117 3.896971471338846 0.1052534238931823 0.8849550869764993 0.9868948086040628 0.24901932999874876 0.12130115960817653 0.19842265143519403 0.18248868568918677 0647 -python ../Main_earth_system.py $SLURM_NTASKS 2.304451968474834 4.594278360160981 5.1558169237682385 3.5686821939408357 0.15098399762303819 0.22872703623625895 0.2354019577498972 0.2716569713776721 0.13554748278787015 0.9387009243363962 0.3285556340945869 0648 -python ../Main_earth_system.py $SLURM_NTASKS 2.5676232007300497 5.518486341269884 4.7733675675168445 4.043775996539251 0.14597282900175793 0.22684639223659184 0.29525075758820196 0.2145278045086313 0.13247492255153048 0.8450566855410273 0.22472017699449195 0649 -python ../Main_earth_system.py $SLURM_NTASKS 2.1678684265292087 5.263257832187392 4.629164088884869 3.6239892406151664 0.19119538795727656 0.3334886343269936 0.2657133929789083 0.26116067183048 0.11618446065864588 0.7727784439911969 0.27017328366109106 0650 -python ../Main_earth_system.py $SLURM_NTASKS 1.158294336097903 4.776244100686875 3.469076500795955 4.037198772283926 0.15281924020574988 0.48734621611066264 0.4302408580842575 0.2822407362391067 0.13026105733365081 0.6014204856353725 0.24654294789672312 0651 -python ../Main_earth_system.py $SLURM_NTASKS 1.5153070370558812 3.6132607595315958 2.090126546528296 4.442433410176153 0.1016960482866858 0.8078222731066764 0.47634690805606905 0.2035577288262848 0.14800341568383768 0.7061834407695886 0.36377894633169794 0652 -python ../Main_earth_system.py $SLURM_NTASKS 2.3941104810626537 5.42371601696974 3.2712599305448498 3.5788973311198564 0.18188350042143786 0.6760863482008657 0.4819863305628648 0.26668052564123107 0.10792562627327257 0.13965112987770306 0.17117282354612162 0653 -python ../Main_earth_system.py $SLURM_NTASKS 2.0501956881043504 5.773634789385591 4.720412771389829 4.166420494801256 0.13133104183709954 0.17431108643480553 0.5864342353973844 0.21059969510900345 0.10336166621212563 0.1283796660060449 0.38219985370039067 0654 -python ../Main_earth_system.py $SLURM_NTASKS 1.8758223880582447 5.4748945250527665 1.230246769645218 4.356338886137534 0.1799193285504796 0.7188129530098639 0.7235278577525497 0.2727210158191762 0.13586797603790352 0.8503697662483298 0.3723118662925432 0655 -python ../Main_earth_system.py $SLURM_NTASKS 3.167965106897819 4.147354230271937 1.6613355751376297 4.304923852330916 0.1883971609326804 0.5140385655814018 0.4147991380714575 0.2561307767973662 0.12005727058631276 0.721447083724005 0.1705790299045698 0656 -python ../Main_earth_system.py $SLURM_NTASKS 2.5566400292485825 4.570616472119153 2.3904956028940227 4.301005424143961 0.10377127906587487 0.3537289575454755 0.627339134652777 0.276461840450674 0.11316852344113594 0.26770890323377383 0.27994387374018576 0657 -python ../Main_earth_system.py $SLURM_NTASKS 3.1422242288542908 5.926047592228029 3.15811674193528 3.6077701719188995 0.1273644193213938 0.5554132646120625 0.8024813625470634 0.2991284447657967 0.10025007942149144 0.553461655190334 0.33781108513714436 0658 -python ../Main_earth_system.py $SLURM_NTASKS 1.7717365652936907 5.603052984895885 1.0083414491294915 4.057416532828648 0.1211402774983271 0.34520788692776583 0.9749411312098277 0.1654004266347513 0.10104943634211375 0.12526631324418078 0.3197616189385502 0659 -python ../Main_earth_system.py $SLURM_NTASKS 2.9194709570853252 4.615120679578262 4.968876200931629 4.296316595109876 0.17774209911624245 0.7839520432698445 0.10028689394534036 0.25418645787506267 0.1263291556105723 0.5935539202564328 0.19179184406397837 0660 -python ../Main_earth_system.py $SLURM_NTASKS 2.194352954179923 5.5323565360582325 4.538793081705089 3.756882070792632 0.11294243532944608 0.7558810463482151 0.8651278887962224 0.1166714302387296 0.11890663826119692 0.16767177284342144 0.35196304093168085 0661 -python ../Main_earth_system.py $SLURM_NTASKS 1.1109869679627544 5.058206150493329 3.2877378334585483 3.721875438771192 0.1163080607350196 0.9269168133850916 0.9464147922946335 0.13625158569814128 0.11292821026280135 0.6759312746740525 0.1261779468752165 0662 -python ../Main_earth_system.py $SLURM_NTASKS 2.5812305608736206 4.745871031986989 3.744788753777132 3.809380513877855 0.11529556801094502 0.5723339128397431 0.17306755871403623 0.12232097855436619 0.13274698226074177 0.2757206391188387 0.28846153803974794 0663 -python ../Main_earth_system.py $SLURM_NTASKS 2.162790935805374 5.988888451524005 1.1004814591509593 3.7277328616964978 0.1718261129510107 0.6194823277894336 0.2529585010231381 0.10063246578626922 0.12578237051724864 0.6658698152474161 0.3729221228161168 0664 -python ../Main_earth_system.py $SLURM_NTASKS 2.073120239926369 3.58774954097571 2.5173765850451257 4.125877255795649 0.17302937189515738 0.5225868149563319 0.11733563735805634 0.17416334022452234 0.14602446206365674 0.5650226018394936 0.26687020074797285 0665 -python ../Main_earth_system.py $SLURM_NTASKS 3.143396946943998 4.912180065651171 2.2498761085120274 3.747796430256787 0.17656487057481196 0.1630485972621207 0.4979138900962161 0.24983073955712357 0.12151134048215442 0.5816345279105362 0.23017207444234408 0666 -python ../Main_earth_system.py $SLURM_NTASKS 2.0990091256172523 5.5493009012377446 4.728926636594881 3.833512472407384 0.13769450098935576 0.7350577587773616 0.4417057252002704 0.28887147733858926 0.10674847821371689 0.4661510427891803 0.16035371638765833 0667 -python ../Main_earth_system.py $SLURM_NTASKS 1.486183459312551 4.824746010849122 3.9632380285228717 4.209288272323437 0.1804298283607411 0.5311261673853093 0.3030713785904531 0.11365691571458322 0.13752517407435347 0.22005773569020542 0.11719430912910858 0668 -python ../Main_earth_system.py $SLURM_NTASKS 3.130800564414807 5.388989067871102 4.185149923481136 3.6155599126889912 0.11934756288855819 0.5596573497124866 0.8224926189319027 0.2612934589155845 0.117040204679038 0.7939595733989394 0.1962314644814046 0669 -python ../Main_earth_system.py $SLURM_NTASKS 2.8232530099539703 4.484894509404786 4.946539333254037 4.001677953751026 0.1487775096278831 0.6792421575942663 0.8854873376944858 0.12351148291263178 0.1287852571255551 0.15703955957132706 0.32739358083239795 0670 -python ../Main_earth_system.py $SLURM_NTASKS 2.134947210549444 3.757527045237041 3.016325783680913 4.063660018376696 0.15564972089651466 0.29115929085789694 0.5799856150030688 0.2574926998310698 0.1420191672153661 0.11827854709778313 0.23839201125550324 0671 -python ../Main_earth_system.py $SLURM_NTASKS 1.2446698871822295 3.949411800044268 4.677351463917332 3.9858255872101402 0.17663727860547898 0.2659065381485586 0.6962091166109692 0.23139553229405693 0.12473075874169856 0.3644736127773017 0.1740292904181714 0672 -python ../Main_earth_system.py $SLURM_NTASKS 2.6599234333834163 5.981908633650863 2.24721073873867 3.576657753690452 0.12511513118804876 0.7899353254957617 0.507376703563516 0.12200724745665134 0.10954793638488894 0.5207469919783568 0.17824919776145198 0673 -python ../Main_earth_system.py $SLURM_NTASKS 2.541951807873793 4.518913373823196 3.0065911522948072 3.566309462511952 0.17085215833352146 0.9905092816144133 0.21693165097955197 0.15125168434946937 0.1272747056032644 0.4749274206991728 0.31729267652419324 0674 -python ../Main_earth_system.py $SLURM_NTASKS 0.9845825643423389 5.961098110789004 2.4342709498895534 4.174011087749145 0.15296269332047735 0.5700803468984493 0.1285685277798858 0.1781286685331076 0.13261446199856372 0.4834044923399068 0.25361233382823556 0675 -python ../Main_earth_system.py $SLURM_NTASKS 1.3066608256965544 5.285398913854301 3.4497788979639434 4.311685901304495 0.13597251990936898 0.13842916400912633 0.5732595560335504 0.21724994295941386 0.10142391962897634 0.41780661588258794 0.22251393559046914 0676 -python ../Main_earth_system.py $SLURM_NTASKS 2.9583200586777822 5.272248328930603 2.5955721122358755 3.696253981084403 0.11417432802694327 0.28840451432619335 0.780693227908623 0.2387423505557064 0.1108308267385443 0.206824976118033 0.36637317417249204 0677 -python ../Main_earth_system.py $SLURM_NTASKS 1.5430728957575752 5.859873015715843 4.978488318897356 3.7858199906212886 0.13583997929293948 0.35586938369739596 0.6784775952916016 0.2322720624313254 0.147101213335886 0.24678124796930156 0.35011354534770656 0678 -python ../Main_earth_system.py $SLURM_NTASKS 1.7165211011513626 5.241905848034594 3.077170024499768 4.2658081720040855 0.178709164150765 0.5887217643992096 0.5237632099662046 0.2621975755536169 0.12117589348124186 0.9571966082016408 0.39079863225195755 0679 -python ../Main_earth_system.py $SLURM_NTASKS 2.9859240496225885 4.523586526537341 5.459854271252865 3.9291166856976374 0.14149915098971205 0.46661371164510557 0.8310728181334479 0.1937373622028673 0.10974735918988994 0.3818592714996215 0.37840795968621355 0680 -python ../Main_earth_system.py $SLURM_NTASKS 1.4418751960488096 4.086056582925695 1.8556716069576258 3.694288357485112 0.1476573303117042 0.4220537772717743 0.9057230625833985 0.2884256439219496 0.10914035761552954 0.6650309931948368 0.2185561994000529 0681 -python ../Main_earth_system.py $SLURM_NTASKS 2.346426965398072 3.967868823476164 0.9323552556529369 3.6849852119883084 0.15419787064618262 0.660276110127528 0.8377699997016913 0.18225151878505702 0.11351610837382638 0.8245378123110235 0.12968720651055518 0682 -python ../Main_earth_system.py $SLURM_NTASKS 3.190566673153487 4.583514585335637 3.7761374079447183 3.8356003138116495 0.18936020465611547 0.5854003894876919 0.39029111640346803 0.21082588083200687 0.13365954436815788 0.6785698508339004 0.3931522610965523 0683 -python ../Main_earth_system.py $SLURM_NTASKS 1.7682519454166956 4.7506520745089365 4.600138373392685 4.409264573232919 0.12354734276640363 0.3329550950191661 0.3639578482362811 0.1765743289696365 0.11250090933135955 0.5679336320048799 0.1234199579607896 0684 -python ../Main_earth_system.py $SLURM_NTASKS 2.8386006454049033 4.163610116202894 0.85191677994573 3.952489699058201 0.13378441849339054 0.10560198501825431 0.7337250223403502 0.28510777030802364 0.112359876772797 0.8507331881901902 0.3217807630468107 0685 -python ../Main_earth_system.py $SLURM_NTASKS 1.5618157021107906 5.005487908543163 2.640045711733287 4.228786947219499 0.18875182149550324 0.18850464941752115 0.22754735351972125 0.23183545974774425 0.12525770985824308 0.6875307661642026 0.3097539894708284 0686 -python ../Main_earth_system.py $SLURM_NTASKS 2.8171533818777004 5.28444448518883 1.7553611733273318 3.80304869944465 0.12334359368870254 0.8219975448941049 0.8324316397115491 0.1830274072973789 0.14356619488619676 0.900441165361648 0.16469283425986697 0687 -python ../Main_earth_system.py $SLURM_NTASKS 3.103101810202274 5.095261045938994 2.9963199172214425 4.025727468440301 0.11012478882003734 0.3539898040359638 0.9106254459115172 0.28961200075157856 0.10560592226535434 0.4535435585890948 0.18602537123962723 0688 -python ../Main_earth_system.py $SLURM_NTASKS 1.3396868009036895 4.849079555341114 2.6329266259724333 3.6852546978260015 0.1977082846431298 0.20119272559243642 0.39840677771161737 0.18957756037014933 0.10075169970161539 0.7317437146496005 0.11654424680248121 0689 -python ../Main_earth_system.py $SLURM_NTASKS 2.123942962262162 4.804738800935966 2.3005728943105064 4.363236555711636 0.10068571986123587 0.762236189706385 0.7300074293780596 0.1805795316277723 0.10083500781484571 0.4980620916966756 0.20936833264597815 0690 -python ../Main_earth_system.py $SLURM_NTASKS 2.340711835291229 3.5164186289273824 3.1059439064484566 4.132528217769825 0.18683865698492144 0.3805997975151829 0.2690315773223054 0.2684806832339589 0.10789233003541261 0.6994175928135746 0.33266115912317196 0691 -python ../Main_earth_system.py $SLURM_NTASKS 2.234740316799118 5.390516025011674 5.217993935153917 3.6135372938341326 0.18276016740798462 0.8622016088310447 0.8137744963070227 0.2364971775797555 0.10062710832766676 0.696385566232364 0.1565233008891807 0692 -python ../Main_earth_system.py $SLURM_NTASKS 2.9703898519942253 3.653184880611725 1.935032005832879 4.297781729567316 0.11766558123983392 0.5896196417444555 0.11332241160849114 0.16417209350556577 0.13561215502590612 0.9129459864747522 0.20875828539965383 0693 -python ../Main_earth_system.py $SLURM_NTASKS 2.2200173087061885 4.2770551791236615 2.946610448470177 4.140628258305603 0.1457763472543868 0.770203107456549 0.8501444652703254 0.13302945132573424 0.13459323819043784 0.9070233255812027 0.2529459709345026 0694 -python ../Main_earth_system.py $SLURM_NTASKS 1.8274731636127295 3.7194573255052488 2.425668046888195 3.7984625315707214 0.16859800371408512 0.8748479165705967 0.6614109089932109 0.2006671295966761 0.14987667151895445 0.8046988426958755 0.2068325513922884 0695 -python ../Main_earth_system.py $SLURM_NTASKS 2.0118612566887304 4.459341306722209 1.7473842085309272 4.305602052530806 0.1369640420572349 0.6940341670784724 0.4913421287558968 0.25488929896199586 0.11558290788095724 0.606168506192166 0.3304332648906928 0696 -python ../Main_earth_system.py $SLURM_NTASKS 2.1127956616116643 4.868808426572775 3.2797149108000054 3.650451280508357 0.14195988639259186 0.5983590152458126 0.1355220237441458 0.1486793430084203 0.11103591046681345 0.22718117010990624 0.38452292309773983 0697 -python ../Main_earth_system.py $SLURM_NTASKS 2.702741493159502 5.12742616750533 4.645833117385336 3.5652723205298873 0.19820745448897578 0.9875773116862328 0.7797951758142528 0.14194120982352476 0.10859759365590292 0.3388956666580012 0.3385345615310741 0698 -python ../Main_earth_system.py $SLURM_NTASKS 2.604954039423066 3.860006253575484 5.455949135486382 4.397749569930806 0.1732109142142038 0.3488218881388925 0.4503056803441201 0.2414250307774776 0.10343158717355308 0.4146754566310459 0.12194962518638808 0699 -python ../Main_earth_system.py $SLURM_NTASKS 2.2846104972756764 4.091573383469463 0.8766620926121814 3.8052389841954786 0.18240002096925786 0.8679538818230382 0.6306137365998105 0.17978621974257283 0.11278435886561938 0.7693019137951413 0.21822733488502882 0700 -python ../Main_earth_system.py $SLURM_NTASKS 1.778642981124609 5.281250490406592 4.816562243775913 3.606779420392548 0.19448279365038207 0.3146924216875744 0.48270934546256683 0.2790318943848778 0.12383590752610754 0.4730705465313526 0.21654392798758504 0701 -python ../Main_earth_system.py $SLURM_NTASKS 2.205660119573626 3.9060186230573146 3.0988084389508215 3.962469524714903 0.12787641229224722 0.8139131673538336 0.644729963327613 0.2766404708262773 0.11041325438288421 0.17804704762207793 0.15757672863025993 0702 -python ../Main_earth_system.py $SLURM_NTASKS 0.9187792251636423 4.520635360541104 3.9130039996334975 4.386107699916388 0.1467104811141192 0.9601735927987816 0.8329687254664747 0.2563097372100177 0.14708732384677065 0.8355663625764155 0.2865089692404137 0703 -python ../Main_earth_system.py $SLURM_NTASKS 1.6204186793865936 4.455151734993399 2.652643455368647 3.709833706799917 0.17262199271851747 0.4066066497360007 0.47424683371440324 0.16011902605027428 0.12250904691884525 0.2559330642982912 0.39354512887131243 0704 -python ../Main_earth_system.py $SLURM_NTASKS 2.6347034511434977 3.5996264023022726 2.9355985715694404 4.479426581379604 0.139930485526808 0.37916152529470215 0.3102965098373672 0.19241044427177212 0.10966327087538214 0.9189879392812323 0.2809589612440335 0705 -python ../Main_earth_system.py $SLURM_NTASKS 1.041183331466688 5.84535673855591 3.3962651850789864 3.858985641659213 0.16063128038030888 0.9074650120820573 0.48505680003404705 0.2200587937312311 0.10380707736287935 0.7286280179492417 0.36227405164482207 0706 -python ../Main_earth_system.py $SLURM_NTASKS 1.5369954631365816 4.298208071650781 4.398034416603753 4.332828364653794 0.18283612507224212 0.4842415341624463 0.8102344006074466 0.26563207292268765 0.1424454516815653 0.7444805016013453 0.2096891165203475 0707 -python ../Main_earth_system.py $SLURM_NTASKS 1.7267627105918613 5.710279151514067 1.7751661948815993 4.188890844094458 0.13790813967324042 0.42686516784867934 0.7718831108770186 0.1565588527650611 0.14392935332274495 0.3555218150690944 0.1223305949525808 0708 -python ../Main_earth_system.py $SLURM_NTASKS 1.3559827767427373 5.688184822454895 4.678560581063476 3.620998347929214 0.16119442347972748 0.8022523573398105 0.4439146732129631 0.22069877978910576 0.10204850057547968 0.6969234403986209 0.18378981255782917 0709 -python ../Main_earth_system.py $SLURM_NTASKS 1.113169941216571 4.3354544085734865 1.7848343619687514 3.7611026027074685 0.11916946866377616 0.71274812694167 0.22482514506996726 0.1347955485247042 0.1277467145102356 0.6990218304820912 0.16794367518529685 0710 -python ../Main_earth_system.py $SLURM_NTASKS 2.9601684828351056 4.707721355596483 1.3825907120256986 4.038407960720209 0.11255551681947376 0.23575594135862926 0.5770994906989352 0.18793503862340533 0.1094898334098682 0.4248258816999866 0.1140213336385579 0711 -python ../Main_earth_system.py $SLURM_NTASKS 1.1188649373761017 4.5731828736123115 4.3084757533415265 4.213900520914161 0.12274339180119558 0.37531920732614954 0.8186172901414572 0.144929486300799 0.1025931979378873 0.996655579734177 0.3339244435828277 0712 -python ../Main_earth_system.py $SLURM_NTASKS 1.8555942387791489 5.4378168320876235 3.6626655106210473 4.123872834421302 0.11308078586526908 0.4372973868338367 0.6982846561646827 0.11656998827045036 0.1468355853386839 0.5059838883026079 0.158173567303485 0713 -python ../Main_earth_system.py $SLURM_NTASKS 3.135260115456945 4.599035569870047 5.115236945342947 3.593894660243204 0.15141046735772015 0.9763554219866369 0.40740908673375176 0.13685951450000047 0.14957482703419012 0.8259829131143233 0.11414326386938034 0714 -python ../Main_earth_system.py $SLURM_NTASKS 2.9689451760285595 4.929467932909386 4.114230982326872 3.869008207424481 0.19051703260529543 0.49834985557947475 0.11536383166669541 0.26335664267034276 0.1389944174266165 0.43494720151739275 0.30010248271403517 0715 -python ../Main_earth_system.py $SLURM_NTASKS 3.0312272768024364 3.6929310284214143 1.2137088062276544 3.8989356816208116 0.10876460363320758 0.25913874250400837 0.8756640786262118 0.1521063399805029 0.10387435767419931 0.940088845686909 0.2848956650304386 0716 -python ../Main_earth_system.py $SLURM_NTASKS 3.0714557452850473 3.6988247366808387 5.059118108809749 3.580707595275034 0.14567218847608865 0.727996140657975 0.977842540768627 0.1424988718812723 0.10539550610370016 0.6947082206585892 0.27297591997498316 0717 -python ../Main_earth_system.py $SLURM_NTASKS 3.0324785788852653 5.008512935482929 4.796215663654627 4.263037358582866 0.12000863468002802 0.3289316184755844 0.7866394368486427 0.21424749360990855 0.13846153374587022 0.9048766691122694 0.25775164850130683 0718 -python ../Main_earth_system.py $SLURM_NTASKS 3.009762218433991 4.895839306964552 1.8193598108304525 4.098296499971651 0.1488160332238033 0.6223101629721529 0.8194065919445075 0.27259832926564515 0.1070185033924964 0.5199635931706251 0.16362403660571861 0719 -python ../Main_earth_system.py $SLURM_NTASKS 2.2894564656751184 3.9322465198342433 3.559485425489612 3.832901805114751 0.19452957043075164 0.5829487307708724 0.842935116575406 0.11127901311121054 0.10640009986291823 0.633242238318711 0.34946674057043625 0720 -python ../Main_earth_system.py $SLURM_NTASKS 2.7309648085792455 4.352744932838105 1.1485786130542688 3.770579079542153 0.1304683186723943 0.5387336227450369 0.26203188815646783 0.18209260557811602 0.1346367382534467 0.5975715045236871 0.2535697386212262 0721 -python ../Main_earth_system.py $SLURM_NTASKS 2.5372503788624456 4.000368890614871 2.3048453894658305 3.622805927787706 0.11714143364457569 0.9936117802649173 0.9637871135465387 0.2943855936988987 0.11403184914671416 0.2353799168134481 0.3742340156952155 0722 -python ../Main_earth_system.py $SLURM_NTASKS 3.057627219698997 4.427257818905847 4.463912848902328 3.6020280172955803 0.12363145067094013 0.43837635002696396 0.788843935371332 0.16307653326266516 0.13126862512860196 0.168979604032021 0.21420223048692993 0723 -python ../Main_earth_system.py $SLURM_NTASKS 3.0813283539958336 5.543855979536344 2.47796685700499 4.303139377250517 0.1210755957319678 0.6840105961327035 0.2895001147952656 0.14076793772938698 0.12541154930427148 0.7383526971102867 0.29025442351535735 0724 -python ../Main_earth_system.py $SLURM_NTASKS 3.118135599766271 4.1023693723394405 3.9069159012070918 4.058077899133902 0.16027809148282704 0.15101374966351067 0.7369393518895798 0.22095955804114414 0.14251377070886243 0.2852092882946498 0.30675565967168017 0725 -python ../Main_earth_system.py $SLURM_NTASKS 2.2395517993344036 4.1166417736345196 2.14070629635925 3.529395664256766 0.16205905516670946 0.22187727623751788 0.4034601764464383 0.12110389710140956 0.12078686911969418 0.8809630476429159 0.20669400219241824 0726 -python ../Main_earth_system.py $SLURM_NTASKS 2.2472358951836013 4.225416428529547 2.344119912488668 3.8416594683921947 0.14550218183299946 0.6965792553945246 0.7113900206197102 0.2650072932528692 0.10582115959551992 0.5751212919124917 0.13624958267492854 0727 -python ../Main_earth_system.py $SLURM_NTASKS 1.6991840608557562 5.640009972408981 3.6444725352765586 3.9774450564843464 0.11073929838414485 0.8794812909245554 0.21805402568044754 0.23058196380133414 0.13906869025764787 0.544848862067511 0.17687286690651613 0728 -python ../Main_earth_system.py $SLURM_NTASKS 1.7020234561273957 5.5820692740878615 5.006890916478297 4.015972896425325 0.18383750910716123 0.22498461812409634 0.7286809089253727 0.2583719044254439 0.1087243259185413 0.8610287831385317 0.18482112530097383 0729 -python ../Main_earth_system.py $SLURM_NTASKS 1.1423731391625607 4.601322219723117 2.4396757260411492 4.360968725201479 0.11907372729555912 0.9401537231910768 0.4055787778216642 0.24955312670193008 0.12406955336508925 0.7629335594041482 0.15842367076163147 0730 -python ../Main_earth_system.py $SLURM_NTASKS 1.6047961710585552 5.396212438304021 2.781796008196576 3.5475239340682063 0.10976953275426872 0.5653693533850249 0.8160488331894497 0.1474695325214196 0.12571925719359586 0.2872896095117954 0.10304510685848059 0731 -python ../Main_earth_system.py $SLURM_NTASKS 1.390157786371327 4.429742239994613 2.8474514407514597 3.8295210921035134 0.1942848907439938 0.6954712772863085 0.78674061699328 0.2739692059114268 0.14562944321265198 0.2208910604426359 0.1226900660338218 0732 -python ../Main_earth_system.py $SLURM_NTASKS 3.138422106573344 5.448526163985221 1.9248141634613423 3.9582881736774675 0.14118330362414874 0.3040594891932504 0.8305912822093974 0.14339051558067387 0.10741101278924153 0.21531336355485753 0.3346699103360713 0733 -python ../Main_earth_system.py $SLURM_NTASKS 2.708062477772332 3.6832994820833744 1.056423492438328 3.6667809906034896 0.14909526906283388 0.8667489475202504 0.6887527125386697 0.1534120831589808 0.10406944773743036 0.24528650906474717 0.13867409884956977 0734 -python ../Main_earth_system.py $SLURM_NTASKS 0.828251601105034 5.477064384645263 1.6988837037975584 4.012451413633741 0.11195643841681038 0.7818620749617551 0.7746987580628876 0.12878241105134647 0.10932175381228024 0.3700776424303416 0.22559178880216993 0735 -python ../Main_earth_system.py $SLURM_NTASKS 1.8951917992945255 4.343525833139311 5.17679820227439 3.9811831141670275 0.10920964541987391 0.2902672405745568 0.8708683215405503 0.23208891770321008 0.11914014375799352 0.7361167051360701 0.21698487896570656 0736 -python ../Main_earth_system.py $SLURM_NTASKS 1.1365664124649957 5.643839845525578 1.608784218599065 3.8068360671385477 0.14835125958019685 0.9250228946841401 0.6993814531709522 0.2505246611961389 0.13100811946429647 0.8469011519715668 0.1450718545847566 0737 -python ../Main_earth_system.py $SLURM_NTASKS 2.900045941805959 3.5853199544158425 2.1297913951092378 3.9374716659193814 0.13196128257546075 0.14447261595015626 0.44972500007403315 0.2871414319746337 0.10567192050149928 0.8779921645108754 0.2400453762941494 0738 -python ../Main_earth_system.py $SLURM_NTASKS 1.424393520198339 4.856720774070142 2.9324017918389975 3.675226953135532 0.10649343619702108 0.4936417531957059 0.8935273156897698 0.16387638101277918 0.12301159136662451 0.7024980475471275 0.24168050432500013 0739 -python ../Main_earth_system.py $SLURM_NTASKS 0.8238450532636894 4.393439447019065 1.50001540270398 3.963244619722258 0.1635469479001571 0.5996116376553609 0.49435666384385146 0.24597465668929686 0.1364696604495606 0.31966247474800014 0.2541992137150608 0740 -python ../Main_earth_system.py $SLURM_NTASKS 1.9211530408818966 3.51459825182719 3.4223555661070097 4.217652682629947 0.1691638972022511 0.23043672393378534 0.6153272312976409 0.24628188463386597 0.10826136234184484 0.20506634175233768 0.3680312389662278 0741 -python ../Main_earth_system.py $SLURM_NTASKS 1.8349056240759873 3.7391061775490173 3.682719952104243 3.590523338147032 0.16460112448355152 0.8127747896162788 0.27429343868030187 0.1479574814134865 0.11780413293744602 0.7503979551730824 0.28233074630205796 0742 -python ../Main_earth_system.py $SLURM_NTASKS 1.11970941047653 4.514577534205592 2.959109715566272 3.967162788705809 0.10349808850664606 0.7606871286124696 0.42571389894443323 0.19111174931590963 0.1244346980607539 0.48218929350754314 0.38138819464572304 0743 -python ../Main_earth_system.py $SLURM_NTASKS 2.668234731097541 4.931393764629355 5.1918450440556425 4.498281444883581 0.11230720421586665 0.5358483454368975 0.8354850362282917 0.2616049731761295 0.12536061984708952 0.6599710340712227 0.251622681713131 0744 -python ../Main_earth_system.py $SLURM_NTASKS 3.127303408863063 5.602467136426201 3.2140594119413075 3.749213539703483 0.14224092419955084 0.8493448899220479 0.6163240971725682 0.2774417284657972 0.1426150417638244 0.5086736545566483 0.24108279911380043 0745 -python ../Main_earth_system.py $SLURM_NTASKS 1.5302024384011457 5.737481935764255 2.8867374227735443 4.004443303397713 0.10598437744724218 0.2382137638151525 0.5349568184512867 0.1361005786621439 0.14342779607197248 0.6465431133366147 0.33022449502044926 0746 -python ../Main_earth_system.py $SLURM_NTASKS 1.2221966811682736 4.664841128220832 4.987121882656891 4.419450263465766 0.199772963380195 0.21776627125603903 0.720545065586551 0.2003456452095701 0.12297744377354972 0.2013947283243489 0.13757970954225152 0747 -python ../Main_earth_system.py $SLURM_NTASKS 0.8968294420074752 4.161197306230848 4.149501343708554 3.7919064016347788 0.10419515524223492 0.2862495447534936 0.9946487194397001 0.18598557593611126 0.13976755570972332 0.2809323606141878 0.35523694168944553 0748 -python ../Main_earth_system.py $SLURM_NTASKS 1.8969548948140438 5.606830876625061 0.8719240016797772 3.69963967571555 0.19861299371698413 0.29341701853527824 0.2645677118715002 0.2810837471340462 0.13840992783211023 0.6221307803826751 0.26158013157604554 0749 -python ../Main_earth_system.py $SLURM_NTASKS 2.6449715703848025 4.350568514586579 2.225562873442049 3.7104729339423494 0.17178193040082618 0.9292715298490906 0.9155246576105518 0.2452482142111473 0.10988435872237672 0.9236370141365904 0.24141911063031965 0750 -python ../Main_earth_system.py $SLURM_NTASKS 2.182528523503488 5.664264416463013 2.5022230322113703 3.880785684712133 0.1665373266612803 0.18227527422830347 0.20461110469990262 0.2535086835307568 0.12481560850484094 0.8191712169419991 0.18111399215592627 0751 -python ../Main_earth_system.py $SLURM_NTASKS 2.7216426732206402 4.785936044905149 5.1004461369728356 3.900217814317857 0.12989739022650248 0.27548965090961497 0.35620185613107225 0.15601913028862058 0.14179564932348984 0.48677848018773584 0.1612745757688119 0752 -python ../Main_earth_system.py $SLURM_NTASKS 1.668016469485194 5.393981503467952 2.062583025097211 4.10146582217015 0.14054092269859167 0.7111368265163717 0.46190617791801847 0.23153636713580408 0.1135783162612948 0.40639047952748153 0.1371435976659307 0753 -python ../Main_earth_system.py $SLURM_NTASKS 1.704998074473296 3.8362264845542566 2.954852484013247 3.5487376744910035 0.12632284723367465 0.5345540763641659 0.8666320329529673 0.1072728081295986 0.12199289621416252 0.9344343425569459 0.36943260660805677 0754 -python ../Main_earth_system.py $SLURM_NTASKS 2.840144501910091 5.4967052017506814 4.616433391441553 3.6629591402720294 0.19087023315334686 0.8210445524853218 0.32826133728150164 0.11056025385718105 0.14738622203894663 0.631183454259244 0.15680405073420664 0755 -python ../Main_earth_system.py $SLURM_NTASKS 2.6532286943841212 3.6113686778524867 2.219695176641186 4.003568560758391 0.12175407018400655 0.7879078200596693 0.40601896690418793 0.13980846572876876 0.13604710964689384 0.312865357234416 0.13581402613876414 0756 -python ../Main_earth_system.py $SLURM_NTASKS 1.3348643610955846 4.8741388478707925 1.3490461948175911 4.404911381861516 0.1147815033878181 0.6399085428009569 0.993703274850389 0.12707276145777002 0.12644799291173078 0.33227166436628575 0.3427866051824957 0757 -python ../Main_earth_system.py $SLURM_NTASKS 1.9832348334546286 5.722019365254651 4.975985416811077 3.772287967217336 0.14737429987974524 0.8554058101108545 0.2681396236094923 0.18813762193587613 0.14369257941775443 0.1938797963363849 0.35088972856316303 0758 -python ../Main_earth_system.py $SLURM_NTASKS 1.5730855655833471 5.318474953219765 2.2815744115767664 4.402571470717313 0.1396941032384116 0.7074381951932802 0.4447162546475092 0.15508433430107613 0.12103535606020291 0.685012853313738 0.16667439303735132 0759 -python ../Main_earth_system.py $SLURM_NTASKS 3.17421028971238 4.054607051056374 0.8369718112552419 4.389394366074154 0.19915307912812358 0.6022100665263886 0.829506870781982 0.23328147319852513 0.11426828314160584 0.7552403742484746 0.20761144213030894 0760 -python ../Main_earth_system.py $SLURM_NTASKS 2.611428941001493 4.060025812485889 2.3342968510042597 3.6482061133800903 0.12348561068515315 0.7875206928672032 0.6008851404522215 0.2828347119009983 0.1189786641954364 0.966166910108434 0.14840925029493124 0761 -python ../Main_earth_system.py $SLURM_NTASKS 2.8713307493243816 3.7814364744562803 5.150500930926587 4.3734416911270175 0.17895644394126453 0.1750752219740061 0.6328677713540279 0.25372911999009956 0.14485826159491502 0.9628005946358523 0.15038493073531148 0762 -python ../Main_earth_system.py $SLURM_NTASKS 1.8069621347557914 5.776513686972838 2.53933490052259 3.8570096317323657 0.10765735302946766 0.6310569030078775 0.7265466545671792 0.21938009638202716 0.10234205807137324 0.8097442232650759 0.3758779644149757 0763 -python ../Main_earth_system.py $SLURM_NTASKS 1.8501800405011326 5.247878318822658 5.225212079757501 4.036846863382136 0.18706463711473942 0.1531881017390458 0.8284213941196454 0.18390058228275485 0.10180328689560261 0.6254845477726088 0.13926542978016843 0764 -python ../Main_earth_system.py $SLURM_NTASKS 3.055169191175205 5.671169218888851 0.9465030526440754 4.48271337500017 0.10384422067038482 0.3195559882145449 0.8690777705780602 0.13549627397171943 0.13631824224944059 0.3963944487630642 0.11564336823563283 0765 -python ../Main_earth_system.py $SLURM_NTASKS 1.5393626513002043 3.7472109357779773 4.395254110493796 4.250966351770996 0.17742929144182085 0.6453880523296532 0.3449249993474003 0.29132668984217625 0.12388772178971981 0.9643399453733026 0.27439897567858357 0766 -python ../Main_earth_system.py $SLURM_NTASKS 1.6386803457708063 3.896143106382918 4.84734814624 4.4145501662630515 0.18051814380546988 0.510543057782137 0.5250448360791479 0.27490077458190354 0.10623008016411732 0.8892992584211783 0.2846715254149025 0767 -python ../Main_earth_system.py $SLURM_NTASKS 1.951366601272119 5.450816910011707 4.563377808927815 3.9041140942213066 0.10088050677063447 0.21229019031259913 0.30017729436052404 0.29887848844809367 0.14381990213039125 0.1934242853813266 0.15424123093657896 0768 -python ../Main_earth_system.py $SLURM_NTASKS 2.2128025294882194 5.023223047255203 1.714995163200809 3.6115566461830957 0.1859447277942988 0.4961688425490418 0.584784638201786 0.19550578290114184 0.12517145858737988 0.4703939360995014 0.2694859628488353 0769 -python ../Main_earth_system.py $SLURM_NTASKS 1.2635051552427292 3.6185322830056244 1.1368091344976703 4.396778468627277 0.14309348955246667 0.5353268485736918 0.5141544497494381 0.13412799515310048 0.12418104193532359 0.21901212612970877 0.2749054824395055 0770 -python ../Main_earth_system.py $SLURM_NTASKS 1.5968738103951923 5.094723942823611 1.5205468719577684 4.417793334892604 0.16393042913756242 0.5328389812156892 0.25433273507290755 0.15082872643746176 0.13778577182157714 0.6904770701785182 0.13197277118097098 0771 -python ../Main_earth_system.py $SLURM_NTASKS 3.0172921827629233 5.174904606403501 2.0319509477177404 4.153822852527767 0.1441603221861672 0.5952282557927754 0.2031009657156454 0.19754205732452923 0.13671526429192715 0.9210934175270791 0.3973584464951051 0772 -python ../Main_earth_system.py $SLURM_NTASKS 2.9165433771416227 5.076507100999898 4.84536077680148 3.5388484474874735 0.17239564343636526 0.9631502736198607 0.6356912737886206 0.21750040479739147 0.11922492703776055 0.30929638374235824 0.10577008820481133 0773 -python ../Main_earth_system.py $SLURM_NTASKS 3.0514949441348076 5.5730909942948985 5.482706690097901 4.171684644606595 0.14979611880171545 0.33176429522859896 0.3702700284390631 0.2229808342070374 0.128925042178568 0.8721805934226373 0.17307165400122426 0774 -python ../Main_earth_system.py $SLURM_NTASKS 2.843654620758416 3.5447173405807852 1.2885538968103636 4.381099956780106 0.10563564103533682 0.481021483154775 0.779408158437747 0.10118862268793398 0.10322058756479771 0.1579968943555913 0.38815097740913784 0775 -python ../Main_earth_system.py $SLURM_NTASKS 1.126350457658849 5.42889200740751 3.7805379041911715 3.632511433259948 0.1267580251684418 0.2360052016576083 0.9000830092423132 0.12647883052426656 0.13743342256843732 0.6278946887753641 0.38736171690292265 0776 -python ../Main_earth_system.py $SLURM_NTASKS 1.4070833820228381 4.770520946645236 1.3276038645494719 4.441993908606411 0.18149682589068078 0.17205947116605635 0.38436254042335616 0.2443468634793416 0.13420284836835752 0.10419428719856719 0.134369498238937 0777 -python ../Main_earth_system.py $SLURM_NTASKS 2.055135103011035 4.900719695191267 3.1736933550539943 3.7834448635494815 0.139322004698897 0.21045264036847527 0.739254144241523 0.26033596499013156 0.10030499904854037 0.9713275350271607 0.14267588549645135 0778 -python ../Main_earth_system.py $SLURM_NTASKS 0.9135366045716374 4.4360770467817865 3.4128458351433375 4.47771047106758 0.118326531088046 0.7980106950223826 0.4087474775280715 0.11695026928381767 0.12423115555858924 0.608405408185771 0.24943933839130367 0779 -python ../Main_earth_system.py $SLURM_NTASKS 2.6017686259379253 4.472570844604611 1.9759322109435418 3.767340762281789 0.1958335009750173 0.8630805372289381 0.437785261186454 0.23991960787635982 0.13316880090889666 0.22164429395535218 0.10032287805510696 0780 -python ../Main_earth_system.py $SLURM_NTASKS 2.275385155278729 4.194192842708453 3.902935760991146 3.780947434372729 0.11269913829219874 0.19901466776109883 0.20357996794637184 0.13501760571438226 0.14434977507522967 0.17030368354145947 0.22127531837625422 0781 -python ../Main_earth_system.py $SLURM_NTASKS 2.603994599075837 4.564609946398392 5.087896769124067 4.075841080049235 0.12825992493412983 0.8840130764289533 0.8029937435493696 0.23767794594228986 0.14003265787112232 0.43275519905400894 0.2013678336477433 0782 -python ../Main_earth_system.py $SLURM_NTASKS 1.5443352952903806 5.213991055916415 4.811112718959832 4.093858647827856 0.13252319505262505 0.2237077315606159 0.710592367756987 0.16127538573176767 0.1084126291778192 0.7220993739866483 0.18020558104113116 0783 -python ../Main_earth_system.py $SLURM_NTASKS 1.6372911505529333 4.5545053287959085 1.1868969278404573 3.5066306427649434 0.1326795387716754 0.39621955123861186 0.9560766144992119 0.2805166354127171 0.14363818064943693 0.9291920274930332 0.29226980719621715 0784 -python ../Main_earth_system.py $SLURM_NTASKS 1.9255869543641053 3.8176978739913787 1.7672906017185759 4.343906675338612 0.15447706308958908 0.38708805120300516 0.7085660113383692 0.13701446296443356 0.11833896568649115 0.7672498301782001 0.11698255386055101 0785 -python ../Main_earth_system.py $SLURM_NTASKS 3.169553794252508 4.20256739811968 5.018053704032676 4.384495335357316 0.1681582820092793 0.18027423066623627 0.8590781890882507 0.18652086528537504 0.10781838922651862 0.44998759736999105 0.23609428939466118 0786 -python ../Main_earth_system.py $SLURM_NTASKS 1.689008525242048 5.440263306391237 1.586519643212526 4.269219424972683 0.11554044829201049 0.8966005896368842 0.19703226326398643 0.1224135696945629 0.1338402072071056 0.1871599144451649 0.2072614867838259 0787 -python ../Main_earth_system.py $SLURM_NTASKS 2.683066881674989 5.769566644579134 5.409158467902234 3.744832173518909 0.18555319805406142 0.5519209479963735 0.5823123882209562 0.231028003554983 0.10309811793213854 0.6486647582373682 0.16716114779830954 0788 -python ../Main_earth_system.py $SLURM_NTASKS 1.003865735874823 5.5232088288844885 1.5695309901549033 4.137945013966309 0.1628773519024851 0.8818440633399092 0.9535323142262366 0.11250515032352046 0.1334824762257501 0.9274989602756439 0.38872160194313354 0789 -python ../Main_earth_system.py $SLURM_NTASKS 1.414450937304149 4.009774709627832 3.0499025721578583 3.6544506306584035 0.12443497237764413 0.4264845029376093 0.3157672368008053 0.17158448278870322 0.11512074384712125 0.8794690041026086 0.17529511849140839 0790 -python ../Main_earth_system.py $SLURM_NTASKS 1.9291891801599004 4.220520460733235 2.6661631085748008 4.24835193688229 0.15858129895653955 0.3262161099993717 0.17903525700066397 0.162251669111117 0.10452082052287867 0.9465815148388791 0.3684739215938998 0791 -python ../Main_earth_system.py $SLURM_NTASKS 1.216612772883404 4.182162830276221 4.4190724991090224 3.5082110947017906 0.10668046569644024 0.21896323705879878 0.4929011665843749 0.2251847956819257 0.11954359952998733 0.17721754548214488 0.23157431391546202 0792 -python ../Main_earth_system.py $SLURM_NTASKS 1.2698213039320443 4.578310938144422 1.3009161751876452 4.200478768001592 0.1607830447564471 0.27639379498625666 0.6557133938462882 0.23004431948696696 0.13596038092092214 0.2869225542286443 0.21286903419198755 0793 -python ../Main_earth_system.py $SLURM_NTASKS 2.5903158245331257 4.372525246135612 5.100916036591868 3.9746581808055668 0.17255630179722026 0.4749896443980838 0.4857673413158433 0.10240275409058719 0.13092949619430583 0.5189399691546535 0.32381742231235017 0794 -python ../Main_earth_system.py $SLURM_NTASKS 2.376157796924244 4.2361876944956895 4.622223897244571 3.802941093179683 0.11333037908579456 0.1620678479743793 0.9876575486688007 0.17601770068878259 0.10014648420164883 0.5267764164590485 0.1311383670855211 0795 -python ../Main_earth_system.py $SLURM_NTASKS 1.9609690483500384 4.992852418446163 3.4442264414784454 4.348057776453172 0.11871421422482296 0.6097202372502163 0.47713352416154686 0.1018395510523984 0.11248137141743705 0.5550603131388496 0.32517952757492996 0796 -python ../Main_earth_system.py $SLURM_NTASKS 2.661088399037525 4.311405698746885 1.6018581635771052 4.215328450262822 0.10717525105686848 0.24885248866459042 0.5049056694622597 0.14931925909580773 0.13826879530418124 0.5154402349862942 0.27803778272607377 0797 -python ../Main_earth_system.py $SLURM_NTASKS 1.383897382266646 5.261355587917741 4.6338456770779795 4.4543344793037045 0.11373579283844149 0.7765794979770163 0.18561003140172186 0.21213153865086548 0.12404575180108471 0.457993588892607 0.2724227341816601 0798 -python ../Main_earth_system.py $SLURM_NTASKS 2.299346512088972 5.514098411759697 3.802450130020694 3.7503687872689095 0.17787781956608775 0.15135259104879176 0.8435604766256753 0.1504344965655659 0.10687198465402105 0.6549419776149908 0.22823011718978972 0799 -python ../Main_earth_system.py $SLURM_NTASKS 0.877285198387261 5.554223054463898 3.131010716735087 3.669797323856276 0.1458668260583054 0.32807107729708107 0.7060494767668798 0.205102979478121 0.10091753060360988 0.5259975984548619 0.12115461896732925 0800 -python ../Main_earth_system.py $SLURM_NTASKS 1.9390217239105212 4.922616425776305 0.9793890219747181 4.374925195374464 0.17214959885729392 0.7377044013580488 0.928370451138948 0.259548012970955 0.14287680926357066 0.600313938239111 0.1431465771587423 0801 -python ../Main_earth_system.py $SLURM_NTASKS 0.8629617634239006 5.612038081175981 1.8583684708943253 4.193863719138571 0.13289784302924396 0.3994268579639957 0.9662268559510817 0.2525301231321692 0.1490388389994168 0.23269422310299168 0.16498826955845233 0802 -python ../Main_earth_system.py $SLURM_NTASKS 2.0569512872911853 5.325030944840246 2.9273216609426242 4.088752024695422 0.12469743637079936 0.1423958326502536 0.3741691424933996 0.1095519824330849 0.12040659560620859 0.3070193201445801 0.13396918003927388 0803 -python ../Main_earth_system.py $SLURM_NTASKS 1.6123214274321074 4.2471456145652 2.9422794320428505 3.583451656985449 0.1754163094589846 0.5444736188715794 0.34959096896122493 0.1409738896763026 0.12226418785012423 0.40541782437727736 0.32094655480777684 0804 -python ../Main_earth_system.py $SLURM_NTASKS 1.1401201740401756 4.644233565502708 4.780502109889516 3.562420738556514 0.10739447084647646 0.3461936154977363 0.9293675613979951 0.14157364475094142 0.14840101429477795 0.9540701506136708 0.3026179575523598 0805 -python ../Main_earth_system.py $SLURM_NTASKS 2.917907367737259 4.597031672922161 3.0836813876499827 3.5959460375429315 0.18370082240920832 0.44087420817754897 0.9037740971167686 0.27226158411647705 0.14539815833097866 0.9073696923818477 0.30060692009684525 0806 -python ../Main_earth_system.py $SLURM_NTASKS 2.486694520520821 4.178021679118226 1.3578032881108641 3.94532703201647 0.15270292971643143 0.8949124359120875 0.9031982079847245 0.1246429061647532 0.10046745014884846 0.4538566053616202 0.22118158358384316 0807 -python ../Main_earth_system.py $SLURM_NTASKS 3.148216465420031 3.9848696660336005 5.263530311465624 4.094365733223912 0.18501350781642628 0.6285756661678391 0.4933440092235747 0.2704508707674276 0.13643372399107329 0.4797730687646179 0.1683618536354501 0808 -python ../Main_earth_system.py $SLURM_NTASKS 1.9084930511644402 4.4157077124010105 1.4418834139777634 4.424869683634001 0.12392746270009294 0.8319589902934177 0.6122672334638479 0.2568953597816722 0.144672762570076 0.9320360768059346 0.36059229648790325 0809 -python ../Main_earth_system.py $SLURM_NTASKS 0.8509111289815813 3.5970663785077215 3.3533986980271706 3.8643133283396227 0.161642212881119 0.5696438101589709 0.5062500549920693 0.19692517186806008 0.11229400021967871 0.5667353753930513 0.29358735614646897 0810 -python ../Main_earth_system.py $SLURM_NTASKS 1.8327979977056745 4.018082823161177 4.439214057370904 3.653800751945569 0.1427146011965487 0.1477487433659896 0.20645457085095073 0.27762080158038466 0.13031904809223388 0.14832812606286763 0.12090625353464068 0811 -python ../Main_earth_system.py $SLURM_NTASKS 2.586064070588879 3.7124757027472484 2.496889049620596 4.456421321170112 0.1512043704693359 0.18798218257404528 0.1449867512821114 0.2162206492583298 0.10915473593435163 0.20382563884253185 0.1607416487503231 0812 -python ../Main_earth_system.py $SLURM_NTASKS 2.2688502999682125 4.430211077061305 1.30601752558198 3.845074486952314 0.10585292603628943 0.8309660380748654 0.5664018753130549 0.21260139900123043 0.13064275076717136 0.7860367092566496 0.16628847794133345 0813 -python ../Main_earth_system.py $SLURM_NTASKS 0.891915346668058 5.7461988745558585 1.3668402784750007 4.18133023143024 0.19168829142275823 0.13572318526232177 0.4123786414959765 0.21889731716790733 0.13201087653985158 0.38771896381106163 0.10915258884623505 0814 -python ../Main_earth_system.py $SLURM_NTASKS 2.4276851363581327 5.3422090235939255 3.5909124861609527 3.742273479453349 0.1825964528753859 0.3473453973750073 0.7738312781334707 0.1511823471189938 0.13208812160153088 0.41601634906710405 0.3215308010689265 0815 -python ../Main_earth_system.py $SLURM_NTASKS 2.031511648684457 5.169468530387553 3.8364153813153337 3.544383126568929 0.1961457476251339 0.5843005218873066 0.344478999775801 0.19067313082220927 0.13524901108117185 0.5480837466876259 0.11928204868777692 0816 -python ../Main_earth_system.py $SLURM_NTASKS 1.4209828300011704 5.841574050305798 3.3125184036216577 3.605982701712391 0.15392361088222015 0.668174498340836 0.21054083688314984 0.15638049755999503 0.13759638338972485 0.383058496672976 0.3411465872563266 0817 -python ../Main_earth_system.py $SLURM_NTASKS 1.2976606508438522 3.9396770204648517 4.8645476415877384 4.346343996119893 0.11688329014098865 0.41406802104668483 0.15233533900408552 0.13389819547963278 0.14553258586096496 0.14586903257819744 0.144579535112724 0818 -python ../Main_earth_system.py $SLURM_NTASKS 1.6548846662354117 5.2731237672233835 3.65780480808726 3.5368510939338926 0.18332041153411197 0.2347663238156871 0.3832240617108663 0.18061644943876914 0.13781970576934874 0.373277878105266 0.35028723947165064 0819 -python ../Main_earth_system.py $SLURM_NTASKS 1.122524331185461 4.609692860815928 5.072077548643499 4.147037744828458 0.17436037968439025 0.40041762368468026 0.9194507476862467 0.16987055311783827 0.13446989197262177 0.18896406986269482 0.11550713674030985 0820 -python ../Main_earth_system.py $SLURM_NTASKS 2.957566304015187 4.465408750946695 0.9420472698853246 3.660325736477508 0.1297416925221591 0.35159202051539107 0.4918126515751683 0.28815419865934666 0.13379783040377546 0.8370472708289591 0.3818471663750367 0821 -python ../Main_earth_system.py $SLURM_NTASKS 2.592270339599461 3.7904324273437355 4.014274340970045 3.5017755510580093 0.19662358716179282 0.36734051361111075 0.9390818085846304 0.17294744219297287 0.14940295408465226 0.6677370985259157 0.3390697524852716 0822 -python ../Main_earth_system.py $SLURM_NTASKS 2.3843626056958027 5.8741917631273175 2.490751942640868 3.9142320664601176 0.16963743776188783 0.1977611443941511 0.25611746355653475 0.11984901866623965 0.1270198230780672 0.2830343232180335 0.14941986599422588 0823 -python ../Main_earth_system.py $SLURM_NTASKS 1.6876243649874465 4.291017651519208 4.9204081552380075 4.3275783968469765 0.1301247883595486 0.9128197309241194 0.8126686713768556 0.21028083999961641 0.14046236658705313 0.12925476202721373 0.14359492485451378 0824 -python ../Main_earth_system.py $SLURM_NTASKS 2.7056483708217867 4.158938672199587 2.707169780021535 4.152107422712022 0.19191522647054418 0.37668807674286453 0.35905952636399774 0.11454715069096409 0.10267471565842053 0.4801480850608514 0.15564180427917088 0825 -python ../Main_earth_system.py $SLURM_NTASKS 2.4933679579303467 4.28878484778989 3.385041225099651 3.659554499016113 0.12213697320105348 0.8577838573908152 0.22557793354307837 0.16198668692087026 0.14084700146760434 0.7833818108406366 0.34701976784051125 0826 -python ../Main_earth_system.py $SLURM_NTASKS 1.0853472752197617 5.825636192753218 2.465925974789262 4.017872977710591 0.196061894474053 0.3002018020249915 0.33474739795605224 0.11011992746257 0.11048909917192945 0.4228855284840116 0.17107880610830273 0827 -python ../Main_earth_system.py $SLURM_NTASKS 2.2456164638155185 5.235270076834009 2.0383352955329017 3.663479442029261 0.19247233264682043 0.6110430646742017 0.9323917353609638 0.10763358826003243 0.11995748117693003 0.704687990592153 0.2676349251623962 0828 -python ../Main_earth_system.py $SLURM_NTASKS 1.1877131314107576 5.904215156804084 5.1139271806882265 3.842735957162316 0.14436245942227077 0.280210766838661 0.8532129298312762 0.12163500270996791 0.10112102159020224 0.6119113884923331 0.31464262574301194 0829 -python ../Main_earth_system.py $SLURM_NTASKS 2.6791832488188234 4.697459573715339 2.0462701259851186 3.6835863470855843 0.19726993015136146 0.8771260532432692 0.29235078061406267 0.1543933797340899 0.11364443705176283 0.4919325266281128 0.1910209032126307 0830 -python ../Main_earth_system.py $SLURM_NTASKS 2.923714735276861 4.633463524166647 2.9687894511256907 3.7257418055727802 0.16879811365373323 0.6805890845100833 0.2146974201658129 0.2468090569819785 0.1291943793935687 0.28925326833512066 0.11369108167765365 0831 -python ../Main_earth_system.py $SLURM_NTASKS 3.082794174977912 3.9528126821648693 1.4773967605443379 4.403759634864504 0.14033488537919375 0.5078580830723614 0.44878482271305964 0.2284027801703097 0.12220694592226022 0.13816921681993263 0.32271684096999276 0832 -python ../Main_earth_system.py $SLURM_NTASKS 1.373996968395344 4.230624372417409 1.311440373680366 3.592088057255294 0.1522629902570684 0.7911164920497197 0.376645105729554 0.21598727563807857 0.14143222651595466 0.5734538783079521 0.2710564984267827 0833 -python ../Main_earth_system.py $SLURM_NTASKS 2.3581846885530044 4.408569457860338 1.4851866942213343 3.9697218362198727 0.12613939610734784 0.49162913043765655 0.346220157833544 0.19976088717120988 0.12991037407096306 0.5375863542893305 0.3927298818692885 0834 -python ../Main_earth_system.py $SLURM_NTASKS 1.3809207233276712 3.824963205766435 3.986911600935418 4.336933856095283 0.19172418408491165 0.46238010400922214 0.17388856353804513 0.11620974944167187 0.10823599518300865 0.8150679656259993 0.3424138551513662 0835 -python ../Main_earth_system.py $SLURM_NTASKS 1.3721244161010389 5.578858752953398 1.2109708729041917 3.861428495345109 0.18578087049537073 0.7777986722469938 0.5757566454882441 0.17251906334273753 0.11587095149474166 0.17519249175209523 0.3938450282417374 0836 -python ../Main_earth_system.py $SLURM_NTASKS 0.960777960598006 4.79286825013189 1.6286962933692526 3.9235426816430645 0.17050616935365578 0.5498044063989568 0.7408237248321136 0.1358398083712634 0.11719795501732803 0.3816420286130239 0.39249109978710994 0837 -python ../Main_earth_system.py $SLURM_NTASKS 1.3002254694924151 5.132581106322121 3.3417592455752487 3.5565720874907574 0.15594192358274017 0.9611926170283379 0.7380328378000683 0.2787247159998629 0.10833676860258137 0.5127479244275099 0.26310301887900966 0838 -python ../Main_earth_system.py $SLURM_NTASKS 2.6426878973037953 5.347273783100252 4.445960353531181 3.792652758426114 0.16444708598148408 0.26783954160211243 0.7016642864771382 0.19287109359937327 0.11462208458060628 0.44692665084048266 0.22781676576438545 0839 -python ../Main_earth_system.py $SLURM_NTASKS 2.2281046722212774 5.908223845368255 4.690273896590272 3.907008918262219 0.156400835406053 0.5038123030258742 0.45792168469080696 0.19836092220943852 0.12158779567077077 0.7435029306968252 0.37617042909814846 0840 -python ../Main_earth_system.py $SLURM_NTASKS 1.9622268922977633 3.724658702173645 1.0671418470337999 3.7840102149816395 0.1491100936136982 0.46782809975152384 0.9273669095696413 0.16294974524509015 0.12971420126423316 0.29164463108577954 0.11841690409311599 0841 -python ../Main_earth_system.py $SLURM_NTASKS 2.480635660476307 3.9862857229920876 4.914744560629527 4.186483398552899 0.14687678358550454 0.2535937767826456 0.20745268554049615 0.1140384689409763 0.11633495777678438 0.5563644371573543 0.3274250973895372 0842 -python ../Main_earth_system.py $SLURM_NTASKS 1.6086623151466686 4.150874473047019 1.597948427656368 3.6866839954495747 0.143329488747891 0.5840867932893503 0.5108042720519539 0.23919291070653417 0.14216401996075462 0.6307992938452875 0.14391455522409052 0843 -python ../Main_earth_system.py $SLURM_NTASKS 2.4627657104692027 4.454261154463855 2.2085609220261917 3.755224509466144 0.16015405858327322 0.3088212875919804 0.3528552744271015 0.16696651913663052 0.10008434750518709 0.9233691103943047 0.23373410360581887 0844 -python ../Main_earth_system.py $SLURM_NTASKS 1.9733846080417028 3.506763898591046 1.0012764600475343 3.6782073781759164 0.13393529019621703 0.12583646380347271 0.7400852422123846 0.14401328842110275 0.12186327964034466 0.6508024353590004 0.1882401167655388 0845 -python ../Main_earth_system.py $SLURM_NTASKS 1.0442884717352598 4.536394105919067 5.420847883035417 3.8621773485820334 0.16863169971338676 0.599171503041457 0.16358895737872167 0.24835152787362602 0.11133661863243971 0.6239043206148506 0.3898577408342434 0846 -python ../Main_earth_system.py $SLURM_NTASKS 1.0504135767731557 3.57264528543117 3.5502822052743808 3.552779724283396 0.15374384507771588 0.12811425697975476 0.18463856990617544 0.15243648864048004 0.14778288218127106 0.3767759044828486 0.13349846607481064 0847 -python ../Main_earth_system.py $SLURM_NTASKS 2.1952432833306403 4.114066006763007 4.958695134406752 4.338615923514983 0.17007735570173366 0.4888146858474449 0.6543888195419828 0.24027284460172016 0.13936066440292139 0.5388568724849943 0.33668569527947845 0848 -python ../Main_earth_system.py $SLURM_NTASKS 2.7887579668730766 5.5088399727459425 2.155373704156082 3.964353359286271 0.1365806468122935 0.49245825121240316 0.11108689814236879 0.23501830743197075 0.14868572553850795 0.23443943645944415 0.15721519191377442 0849 -python ../Main_earth_system.py $SLURM_NTASKS 1.9053716456596774 4.149032347495362 3.686991882492758 4.110326997808887 0.10610356319253898 0.7589835309687666 0.7553748046914723 0.28682357690605664 0.10616152941586897 0.4029802919350014 0.23512537679564446 0850 -python ../Main_earth_system.py $SLURM_NTASKS 1.891949358843915 4.68929614055796 2.880470853251194 4.258735707237063 0.1920712634922317 0.6466464077779113 0.47091470027012605 0.1315347269557476 0.13406543663317327 0.7193998547741856 0.2991776991044298 0851 -python ../Main_earth_system.py $SLURM_NTASKS 2.02780286738206 5.334419671157285 2.6639014322017616 4.288307712014017 0.11815098868788225 0.1163915329594668 0.694946199028027 0.1844473479330449 0.13948163686079412 0.24445943371405537 0.2727592502462175 0852 -python ../Main_earth_system.py $SLURM_NTASKS 3.1572729128508694 4.497605920385223 4.526853591887686 4.18238959292017 0.11203823472784458 0.6428873689554614 0.32551082863621184 0.1583535070119733 0.1316046400023548 0.5146933201439116 0.25601052960761866 0853 -python ../Main_earth_system.py $SLURM_NTASKS 2.8880750786920695 3.715197677079602 4.204153936145095 3.7380744383205897 0.18960310659857027 0.6254999339179648 0.9912842605074438 0.29321861613604916 0.12347364333402538 0.40708998310110023 0.312043163698696 0854 -python ../Main_earth_system.py $SLURM_NTASKS 2.768850765423765 3.8865814122571614 3.862719861660638 4.089514057717061 0.14259784577628543 0.6822965003108398 0.30447010677359265 0.1893990024221323 0.1256236234205272 0.8496018118071794 0.34628097264227325 0855 -python ../Main_earth_system.py $SLURM_NTASKS 1.5262231852735337 5.629240114510086 5.394877059771499 4.204980893622325 0.12604905052608792 0.893157199516535 0.11367631828443929 0.23365313802810353 0.10570460812778998 0.5072195887694323 0.3825897374387246 0856 -python ../Main_earth_system.py $SLURM_NTASKS 2.4447655088451197 5.757527193256678 1.2355356595734162 4.133628952244534 0.17681652760024105 0.8175217863090111 0.5183713389451841 0.18174436071092162 0.14793699924544362 0.7709470428991899 0.2016609630177107 0857 -python ../Main_earth_system.py $SLURM_NTASKS 1.735397709715544 5.19558676889344 2.1614634477524186 4.17012918477621 0.12856186312535486 0.35908496673562773 0.5576123577852472 0.14632674253334513 0.11769169007934874 0.626611308075471 0.30707428338791765 0858 -python ../Main_earth_system.py $SLURM_NTASKS 2.7507395603392455 5.7895246013685115 4.858410309318327 3.953600289618416 0.14153151756909355 0.5970047333640702 0.6323320057069396 0.1908747184602288 0.125226066257681 0.2956764609882786 0.33557017568400427 0859 -python ../Main_earth_system.py $SLURM_NTASKS 1.6507611134720612 4.3452952165220395 1.4343177004855177 3.9761521775492077 0.19948150848506874 0.3577443077700465 0.9826648995687489 0.15018705016685183 0.1343824285015387 0.23032450429903759 0.30428133443592786 0860 -python ../Main_earth_system.py $SLURM_NTASKS 2.8587258873279486 4.0491617205608605 2.561735175668458 3.541735760513427 0.13635837637707143 0.933866253014784 0.3010210753878919 0.1990480048819171 0.10443491693310399 0.7049479439814734 0.2091069674677591 0861 -python ../Main_earth_system.py $SLURM_NTASKS 1.00752105544905 4.646666316875322 3.3007069051137066 4.207994267724558 0.1599403166737725 0.15460710570196554 0.5892818588393391 0.2427160046216144 0.14158567784060916 0.5882085405218878 0.2235300748161637 0862 -python ../Main_earth_system.py $SLURM_NTASKS 1.9257047607025581 4.947997764423917 2.240806799687996 4.47469676154975 0.1890432794819423 0.9277345410463628 0.3536254834243494 0.18982548343227054 0.12512359663185427 0.6637404350917439 0.15952140883101318 0863 -python ../Main_earth_system.py $SLURM_NTASKS 1.080936762449163 5.230467785872565 3.4971653186861884 3.834949378623957 0.16647332126621775 0.93724777187657 0.37564218370946845 0.20958939960262996 0.10314249612792648 0.5304115967803237 0.17533091224458974 0864 -python ../Main_earth_system.py $SLURM_NTASKS 2.646330641988432 4.386068734478634 1.8208118294123679 3.6952661825503275 0.1276751227308684 0.46934674051300673 0.7218198063909925 0.24859033670352387 0.1241279656218088 0.5111879796018662 0.23781963830191213 0865 -python ../Main_earth_system.py $SLURM_NTASKS 1.740124731856245 5.716347969009699 1.993150435524073 3.9083599830246123 0.11728065824408682 0.3845803375578253 0.18867082779204486 0.24314456029535325 0.12716196945049604 0.6350376580580189 0.3073419721473186 0866 -python ../Main_earth_system.py $SLURM_NTASKS 1.3450436075406444 5.997568667940392 3.508323245223858 3.735853569940515 0.138854676740523 0.19176557654412058 0.43920176984036974 0.28542056822406126 0.12745761503060044 0.21845884563007487 0.3455056791466319 0867 -python ../Main_earth_system.py $SLURM_NTASKS 1.095555423786534 5.541048102227679 1.4583566694467383 4.308698608481189 0.186186803703763 0.8861901447162885 0.756478915525861 0.29553277478289935 0.12450346439563889 0.3589804734160883 0.10670231059254752 0868 -python ../Main_earth_system.py $SLURM_NTASKS 2.243288969690071 5.808643759994051 4.033159715394578 4.1501682142632 0.14524281066026457 0.16981637326117405 0.32434820227665767 0.16842328692979947 0.11341551389162534 0.4423954284210867 0.30490417374221046 0869 -python ../Main_earth_system.py $SLURM_NTASKS 0.9968192782059815 4.348711007920461 1.2545609795097836 3.6763979150363397 0.1666626052112548 0.8500726179810909 0.6285915992746637 0.188420253448496 0.13665018612267943 0.8301753790447521 0.34684115466580984 0870 -python ../Main_earth_system.py $SLURM_NTASKS 0.8213751261940603 3.8041108170371873 4.665896012383663 3.5549865364212403 0.1695270619707792 0.7428564722836493 0.12452171407910663 0.22031200299441417 0.11955627262720842 0.9374752960663639 0.2956406312197989 0871 -python ../Main_earth_system.py $SLURM_NTASKS 1.0669437723118762 4.380823726686609 4.064111553229266 4.49737750484188 0.18921689984334533 0.4501457708544815 0.8921117173232703 0.146794705028371 0.11270722590068659 0.500891206215125 0.34573819073667245 0872 -python ../Main_earth_system.py $SLURM_NTASKS 0.9920137172752386 5.790473305057727 3.545666151067855 4.145807901740786 0.18785192545467658 0.805766658804209 0.7663571951200873 0.1743478447523361 0.1294767385207507 0.5703187475444131 0.1505988977699405 0873 -python ../Main_earth_system.py $SLURM_NTASKS 1.5518856950785036 4.629090338345069 1.006358650501456 3.6080961863456102 0.17917848683906512 0.7549866751912856 0.7834463877171648 0.1952972344005398 0.11794530489579831 0.6618596847854932 0.3094547883370091 0874 -python ../Main_earth_system.py $SLURM_NTASKS 1.6150753774029591 5.702036230101477 1.729710913971794 4.399160499487868 0.11277031473562095 0.5628203220694723 0.34813886947978634 0.20203218578785748 0.14258200487986972 0.21736105917701998 0.3478149247806287 0875 -python ../Main_earth_system.py $SLURM_NTASKS 1.4992745234181695 4.74439137114666 5.199271329148369 4.069281577557237 0.1922174060300579 0.9389514696468354 0.8154997779960655 0.18157723385104851 0.10185653060450721 0.43650553662644553 0.21047109264924993 0876 -python ../Main_earth_system.py $SLURM_NTASKS 3.0419939240299723 4.399473633069815 3.933319927718955 3.7580207442357296 0.13184177902399274 0.5811159079177237 0.9347888946770054 0.23530923539638016 0.10070003385444568 0.8590118709360572 0.2660436302131646 0877 -python ../Main_earth_system.py $SLURM_NTASKS 0.8108403109736343 5.17680637453998 4.096557540903132 3.9063656397941706 0.10791690911842951 0.23876193951912095 0.6546362327439852 0.24460543230210385 0.10449629782922183 0.36225719243255516 0.15614669195933906 0878 -python ../Main_earth_system.py $SLURM_NTASKS 2.4899122549281802 4.264373994293896 4.338119712099827 3.737323066012628 0.11626079909281102 0.39875340280792804 0.5998906476762403 0.10167353880024034 0.11106673676257557 0.9140072797458477 0.33506093131010606 0879 -python ../Main_earth_system.py $SLURM_NTASKS 1.6766748229095887 3.8377603256152932 2.4011880703676383 4.306097357491191 0.18215589300422608 0.9576352967487092 0.964168679149913 0.18355074102140195 0.13720702297049947 0.40843080230473294 0.22750787756702684 0880 -python ../Main_earth_system.py $SLURM_NTASKS 1.792706999409798 5.15907181358824 3.194305627109686 4.278471122859422 0.160501367926941 0.13167605925466863 0.6824400556058444 0.1573774546874328 0.13685232629248523 0.9690736813781503 0.1278708842547616 0881 -python ../Main_earth_system.py $SLURM_NTASKS 2.3247534229029294 5.098127293908395 2.4493764752381733 4.285728375984735 0.19518291940379162 0.7177074823202599 0.416547103301649 0.2592252145494015 0.10628852505420996 0.33347767727905087 0.3572863033827274 0882 -python ../Main_earth_system.py $SLURM_NTASKS 2.039909348415579 4.266881664909813 2.592778465323409 4.282150870092164 0.13294231045053123 0.331099582148183 0.8002142406814675 0.20413760329438418 0.14992247272834192 0.42689427311678785 0.18514784858686523 0883 -python ../Main_earth_system.py $SLURM_NTASKS 3.023162995770858 3.9566254173451076 1.4120891553512993 4.010341128694085 0.14352595711968152 0.34266035068762835 0.5150716102734147 0.1757934531621476 0.14095203156793357 0.5680422597977578 0.3269975418142224 0884 -python ../Main_earth_system.py $SLURM_NTASKS 2.1887613070950023 3.8758123162431346 1.7617824152601123 4.1890417931288075 0.1463787978732156 0.3722326331682575 0.6201733052744443 0.23066072588637604 0.13983316858394224 0.3146599409279178 0.37704763313036627 0885 -python ../Main_earth_system.py $SLURM_NTASKS 1.6103851523016974 4.241852070620849 0.9531297008793863 4.316498601605815 0.1392675702686571 0.4540597414355183 0.8730766860523175 0.14276432828799002 0.11128005616556066 0.34014305921990673 0.2051832630569577 0886 -python ../Main_earth_system.py $SLURM_NTASKS 1.4981477801757097 4.234853727414566 2.6188885766281436 4.165911844418195 0.16489011347868465 0.47424975350670784 0.6634499077151594 0.22589377063529914 0.12269078075446621 0.18512140124395027 0.12731838948883417 0887 -python ../Main_earth_system.py $SLURM_NTASKS 2.460719905493346 5.122903625664335 4.762828859348431 4.468105433286654 0.1563696852335332 0.21277601735363916 0.24624483936778474 0.15784230263615412 0.14388997614292148 0.9114399671219575 0.14770105513154722 0888 -python ../Main_earth_system.py $SLURM_NTASKS 2.539724485659586 3.8091473218474423 3.3057033794869044 4.393347088050715 0.146631376752083 0.21485899591554414 0.3270280079866158 0.20303238443665483 0.1042575826498347 0.36285808473938297 0.20983622701723081 0889 -python ../Main_earth_system.py $SLURM_NTASKS 1.8385290811387989 4.422410802391896 4.936167146749341 3.7156854483212634 0.18910891985818795 0.5635066284367323 0.6882050548621936 0.2550725214019406 0.10296244620745393 0.3271555114430703 0.25676577969624614 0890 -python ../Main_earth_system.py $SLURM_NTASKS 0.8877634273582455 5.558692610712515 3.097522620722854 3.7655561971832587 0.17200371783090318 0.2423942141640738 0.3945306115769275 0.18563661979491997 0.12986903018376347 0.7952965822748175 0.2518147348561332 0891 -python ../Main_earth_system.py $SLURM_NTASKS 2.1510614961736723 3.935801141745402 5.219251929998211 4.2168132738796835 0.19367448313809535 0.7669854112316029 0.8082874660787176 0.27465278289326467 0.1471753355205201 0.5717389413072614 0.12707667213719454 0892 -python ../Main_earth_system.py $SLURM_NTASKS 2.547402468538946 3.6174479955273964 2.1932193028651232 4.100565531975277 0.12890407213484534 0.18365151591064172 0.46131159734902727 0.12662049072228304 0.1399247316277194 0.11704776693715854 0.21354233405698786 0893 -python ../Main_earth_system.py $SLURM_NTASKS 1.0357000595495005 4.6175738219179845 3.851365380855704 3.7620554196832674 0.16826286791278272 0.9954902989199156 0.10999402123103415 0.14393080666550057 0.1306780545014108 0.8873939281945578 0.1893713761811569 0894 -python ../Main_earth_system.py $SLURM_NTASKS 0.97595131138642 3.811094311218032 4.244685955951698 4.341609277412624 0.10156839767954187 0.43299556842321585 0.10384478799305745 0.15755700420810953 0.11087147186414725 0.19011997398559743 0.3408628806757096 0895 -python ../Main_earth_system.py $SLURM_NTASKS 2.214349123778481 4.8835269193717785 4.495678820027048 3.8274684246758777 0.15918866445692484 0.5600643909215328 0.5394537471176363 0.2814588841833072 0.1099487771381035 0.5654148359526447 0.17670654926350876 0896 -python ../Main_earth_system.py $SLURM_NTASKS 2.834324353672957 4.046419492567843 3.8417577491135475 4.00799084658207 0.19289849391122332 0.8230692252596185 0.9725697862783835 0.2292655698467734 0.13659007511736126 0.1918163835674524 0.1658286515580384 0897 -python ../Main_earth_system.py $SLURM_NTASKS 1.6699982010140486 3.53906611428011 3.9412769678787116 4.225246278085718 0.13910700271379473 0.1017035001232534 0.3403156703292515 0.1191238469661482 0.11564015473244457 0.6163667375595301 0.21181638250021007 0898 -python ../Main_earth_system.py $SLURM_NTASKS 2.2922648439730846 4.540066498175257 4.570799300052262 3.589459365198529 0.1807652805908952 0.8980148327617651 0.6905651539581041 0.2827696636563304 0.1258501810726736 0.6479702073776795 0.22578392508998016 0899 -python ../Main_earth_system.py $SLURM_NTASKS 2.5100586683777357 4.5347865178673885 4.293566520530666 4.091807448596422 0.14939720909778473 0.42379512476733905 0.14110438700555897 0.15559454707037726 0.14694755224728018 0.7402306551506173 0.31103027118515514 0900 -python ../Main_earth_system.py $SLURM_NTASKS 2.45694638420008 5.69825803571906 1.516196516444501 3.8599022313899987 0.10396201120387819 0.8350725813946135 0.5361360908405259 0.26911399968982563 0.12354333964112546 0.2742201383536855 0.2733132946256063 0901 -python ../Main_earth_system.py $SLURM_NTASKS 1.7445278971374263 4.788449190452893 3.0376632356526967 3.9344640940188915 0.12436004410163598 0.14512158446068335 0.20886703595333234 0.17028333403377457 0.10301926915992206 0.2822708864016509 0.29013044589400144 0902 -python ../Main_earth_system.py $SLURM_NTASKS 2.773455472812584 3.569984983806724 5.25830627602219 4.257609739866828 0.17118382170366014 0.12063901198130673 0.15208478007221007 0.1826223881927523 0.137743955337916 0.42820722195718874 0.35066098769474285 0903 -python ../Main_earth_system.py $SLURM_NTASKS 2.8921530405375853 5.806294714602522 2.724008821099564 4.111300564999155 0.1885078527475355 0.6572035306407201 0.9834092537716346 0.2226008217674889 0.10147603454259677 0.754994347181261 0.3611927853443878 0904 -python ../Main_earth_system.py $SLURM_NTASKS 1.408781998105796 4.022400512153024 1.0376724637692367 4.138782805394171 0.18642644687721105 0.6613774927518404 0.30764181183449346 0.17200153403432084 0.12939029024639653 0.27256158582634377 0.22083420099099654 0905 -python ../Main_earth_system.py $SLURM_NTASKS 1.8576722222041488 5.4993100413010865 5.466143537650299 4.334248555966804 0.19963766250392523 0.2573557214411963 0.789696160308255 0.16354587921335687 0.11122053987219735 0.19130756415779515 0.14909588464043072 0906 -python ../Main_earth_system.py $SLURM_NTASKS 2.7556160541185584 4.200850829530508 5.231537711253379 3.9754971798512044 0.1872317300316314 0.7401893020493907 0.81142878476086 0.2638422915737385 0.10430011816046848 0.4619780246849451 0.3677850932964335 0907 -python ../Main_earth_system.py $SLURM_NTASKS 3.149751106920635 4.8926726564071945 3.7109222596235423 4.142741967619495 0.14164610459114224 0.1984835885994889 0.6248584838603581 0.1577848701937872 0.1452755116960813 0.7330756019566808 0.2653056600855339 0908 -python ../Main_earth_system.py $SLURM_NTASKS 0.9215068318008104 5.510471411147199 2.3389143615994783 3.60081151420951 0.15485771437125107 0.571181246659427 0.6225693693087839 0.295929748091508 0.12379351921369126 0.7492522351263088 0.10775739338369031 0909 -python ../Main_earth_system.py $SLURM_NTASKS 2.599431638187104 4.686158491064191 3.166368370704423 4.398662281078141 0.15304299214957756 0.7575483396935162 0.1256122605243473 0.2519315531955373 0.10133800697809937 0.25300994476312666 0.2554213974423616 0910 -python ../Main_earth_system.py $SLURM_NTASKS 3.0185423510724068 5.897928246503861 2.76418857680638 4.219547552359706 0.11699991007516747 0.8260307597057415 0.3324784513276313 0.2147813150896759 0.14881078201229006 0.522336046181608 0.1980339791278225 0911 -python ../Main_earth_system.py $SLURM_NTASKS 1.506820261459863 5.066485856526324 2.3172694786941452 4.387429696114845 0.14510945518739454 0.36427720308612765 0.30881438133242034 0.22217729971043843 0.11934857331125656 0.8382559944672052 0.1406270534499011 0912 -python ../Main_earth_system.py $SLURM_NTASKS 2.390201557415664 3.8051201356036817 5.29770236665773 3.511903634023921 0.19981860003348853 0.21591333986921635 0.95564821579316 0.14125614461545194 0.11485867457430016 0.8827439479861846 0.3254393674679986 0913 -python ../Main_earth_system.py $SLURM_NTASKS 1.5697746973397035 5.2000857577475506 3.145780480519993 4.476680272340947 0.17615448021765998 0.8454672418368262 0.634384416560327 0.19352057179117232 0.1341802771927453 0.6921556231841693 0.25130215652047155 0914 -python ../Main_earth_system.py $SLURM_NTASKS 3.1824767052134533 4.84640348030709 3.3630137347223066 4.3154131672211795 0.16903202235697262 0.8052084668131196 0.14984035059726547 0.24864737103729298 0.140585056591583 0.6828919444594284 0.24894239019353706 0915 -python ../Main_earth_system.py $SLURM_NTASKS 1.6945174998837031 5.621006923051324 3.3571198733256464 4.030993113655513 0.15979956544746401 0.2494540409757319 0.631298507909211 0.1161019495691142 0.13051101194868464 0.5574365136337016 0.28558677266156823 0916 -python ../Main_earth_system.py $SLURM_NTASKS 1.3289380494147638 5.3232525713569405 5.471665286618333 4.070865339468213 0.16995288820373905 0.44444022924525084 0.27952331342621184 0.12744305054238925 0.10488121338747498 0.943234273511439 0.16955882586152146 0917 -python ../Main_earth_system.py $SLURM_NTASKS 2.3740389710430883 5.872206474899441 3.7882960087157755 4.352485766828363 0.15920445006172287 0.164118950042413 0.4867909773237835 0.14992090258644533 0.13079710548272508 0.8118255007867763 0.22445367615870915 0918 -python ../Main_earth_system.py $SLURM_NTASKS 2.9550187003463098 5.645667600502067 1.9843972146720816 4.109196480583607 0.19481766481554275 0.4725874012253909 0.320228309267263 0.2461997862116954 0.10878662467965752 0.4287198239708149 0.2308653042453048 0919 -python ../Main_earth_system.py $SLURM_NTASKS 2.6484542022514628 5.361016037205982 4.883822137108593 4.205125478858771 0.10302495971881526 0.45528515334182407 0.18337385456026872 0.2907543231772473 0.13484210222836152 0.505755289016419 0.3524240752857576 0920 -python ../Main_earth_system.py $SLURM_NTASKS 1.6164623688295467 4.295445599029324 1.8669609887815934 3.9930383055072225 0.1653598048244485 0.4205866034480228 0.7297609961590822 0.29671257385860905 0.11901090897280614 0.7175503935340197 0.29079100092773114 0921 -python ../Main_earth_system.py $SLURM_NTASKS 3.0772821932321532 4.338375846238463 2.7657330138458507 3.9574092946157284 0.10219258019996605 0.2652825226162087 0.12380294227853296 0.2711578216629834 0.10350391724862384 0.48260035124234923 0.17740243172620565 0922 -python ../Main_earth_system.py $SLURM_NTASKS 2.317043889621627 4.792271121768482 5.0014122658520614 3.853197506893895 0.10754966268763862 0.9777938657099006 0.3163043945060873 0.10584414088580246 0.1216398149711291 0.78068657619623 0.2504279153425062 0923 -python ../Main_earth_system.py $SLURM_NTASKS 1.6401687392571813 3.887717915492771 1.1619999006477344 3.8677771092504285 0.1731216447409461 0.12707060741101361 0.3061248826846749 0.1033623648026022 0.10377181098900778 0.38067255254403387 0.35879675798083877 0924 -python ../Main_earth_system.py $SLURM_NTASKS 1.710694537385276 5.166507440700112 3.9954524044995186 3.5507591503986315 0.1949274048819525 0.8708638631235773 0.5788749068896513 0.21486723109578088 0.14544829316071084 0.5955393698729042 0.36560560314753643 0925 -python ../Main_earth_system.py $SLURM_NTASKS 0.9878448612249714 4.778009135987903 1.4059588880534808 4.253704249983158 0.12296078716373193 0.9213675041914157 0.7578740703391801 0.10788052747275201 0.14379139530424576 0.15622603400698773 0.3800894937632522 0926 -python ../Main_earth_system.py $SLURM_NTASKS 2.9341183892535874 5.453598331083177 4.819015702741448 3.705077753431146 0.10685292492732282 0.2722576926504412 0.9896177075889925 0.2713887630484171 0.14585047486682384 0.6206650169709732 0.15087783217703846 0927 -python ../Main_earth_system.py $SLURM_NTASKS 2.069639821650507 5.064512639034303 1.3861374669591007 3.9903798894218068 0.1503191814516902 0.5725417773596141 0.40791671171188026 0.27953861094907495 0.12599529928847775 0.8574374667589858 0.22713656010311634 0928 -python ../Main_earth_system.py $SLURM_NTASKS 2.4522425176038016 4.070328360824966 2.1152211742572664 4.233633559953119 0.12226758079464933 0.605859052787667 0.4723537793975656 0.19312087270363087 0.11978955313555062 0.9437250752757007 0.22866098204008745 0929 -python ../Main_earth_system.py $SLURM_NTASKS 1.718028759037715 3.500726690794184 4.367695417428734 4.1606850647259765 0.11705749081695864 0.721366378786846 0.3787144983142915 0.1481070412245197 0.13876924616580308 0.592020105994477 0.2585989236852454 0930 -python ../Main_earth_system.py $SLURM_NTASKS 2.0902794632661 4.973407614520238 3.7209190152196756 3.881185233919387 0.13740564053586207 0.7992176354916672 0.2516064434012031 0.1693381740018853 0.14436462538006514 0.9284064474817595 0.23538328496684985 0931 -python ../Main_earth_system.py $SLURM_NTASKS 2.392369082747618 5.142932313200131 4.138490198389855 4.044531830604997 0.10515493567647186 0.44953536432903285 0.6796388984887446 0.2882266214588764 0.10711552956076256 0.8076800782302832 0.18290026960843342 0932 -python ../Main_earth_system.py $SLURM_NTASKS 3.1128666669044707 4.132353661658824 2.635669871141415 4.002030139273944 0.15727686391590792 0.567799664866296 0.15949943705226366 0.25282118846508017 0.10457615365837387 0.449194398275092 0.26517247179644454 0933 -python ../Main_earth_system.py $SLURM_NTASKS 2.258134213769159 5.293648835686406 3.024859107982806 4.185106177949981 0.13662661217403474 0.4173141089888529 0.44695531042618997 0.2635921464558112 0.14164795968456872 0.18330623275440694 0.1347105502164605 0934 -python ../Main_earth_system.py $SLURM_NTASKS 1.645978091615861 4.698971376824897 0.8133909490702503 3.8011447132704737 0.1361587501918498 0.3228348042728672 0.28802115485118474 0.10910987270647086 0.1289758720525233 0.35458587515007156 0.2777249341646968 0935 -python ../Main_earth_system.py $SLURM_NTASKS 2.005629493924533 4.753237036298401 2.8977514464876117 3.631365600345405 0.130870040950636 0.6475638855338934 0.7627047001259212 0.18863740657029293 0.13512489006144035 0.44426519940015896 0.2979223361129963 0936 -python ../Main_earth_system.py $SLURM_NTASKS 2.078197100211408 4.188335142762037 3.639476060609466 4.045577160065772 0.15606834989676824 0.820446262877282 0.8463027899507731 0.1547059883696053 0.1445953047367111 0.8106703074065089 0.1085625978502452 0937 -python ../Main_earth_system.py $SLURM_NTASKS 2.0141650821724353 5.592193606751577 2.583007406403992 3.78161492885272 0.18107663723898385 0.6355744465440994 0.8547909741611317 0.24645010648716073 0.14743445555341497 0.452777302771845 0.31420394728965473 0938 -python ../Main_earth_system.py $SLURM_NTASKS 2.39685073584653 3.6814501957998536 2.170673323847603 4.4353947714340345 0.18487111950834167 0.2030856245468768 0.7178435937628755 0.2346012808382244 0.12741642642074139 0.12081464879297882 0.2200297241945387 0939 -python ../Main_earth_system.py $SLURM_NTASKS 3.0482756335065044 5.692789048715721 4.296927351471223 3.9392217589233596 0.1404580420212761 0.9161635426693627 0.9509327375671741 0.24736052295185976 0.10663691602544727 0.23407021356131674 0.38917046270942945 0940 -python ../Main_earth_system.py $SLURM_NTASKS 2.977903389230449 5.136820125652604 0.806502885069422 4.104643733921187 0.15003496419065498 0.853304577444016 0.49918094311574923 0.12315816430500012 0.11919032597399098 0.6447284980205896 0.3282944520591861 0941 -python ../Main_earth_system.py $SLURM_NTASKS 3.106587450355698 4.005998919192236 3.4291294323979242 3.507569701914235 0.16218594324820723 0.7358382989649654 0.16739369184130826 0.13213647074758644 0.13275787878021963 0.47678936132028793 0.2758099984922671 0942 -python ../Main_earth_system.py $SLURM_NTASKS 1.4312673830841953 4.7389040166471705 3.488848156948647 3.5843754709558016 0.1460762373873094 0.9734582460420868 0.3304003773556704 0.16329308134186118 0.10960313058903338 0.34922177499773155 0.2915208714625856 0943 -python ../Main_earth_system.py $SLURM_NTASKS 1.3141548159858951 3.7213599863664113 1.8861095111750075 4.176091319601182 0.11619212030004816 0.6126722353888631 0.7141131469605868 0.10055264319075186 0.11526625784038652 0.8413452543397089 0.38042101110397986 0944 -python ../Main_earth_system.py $SLURM_NTASKS 0.996148303523144 4.621838178214293 4.375402075032319 4.20285065390606 0.10275252413168973 0.903228840749853 0.7582055978668685 0.10355031075737534 0.10294230781860904 0.5393057234301437 0.17907277705952301 0945 -python ../Main_earth_system.py $SLURM_NTASKS 1.2227272907718696 5.180092308073389 3.9752485794060997 3.599730065830088 0.164363209084596 0.9126724457087281 0.38459629973276865 0.15072096975145105 0.12193055126097792 0.6373665977391267 0.2553684685377281 0946 -python ../Main_earth_system.py $SLURM_NTASKS 2.744646384930654 5.675522696544387 1.9738658336278052 4.275882411551936 0.16807131514523815 0.378939938161006 0.6279663584744678 0.2970408823777766 0.14949645522960697 0.29639884711558373 0.17190938032273595 0947 -python ../Main_earth_system.py $SLURM_NTASKS 2.352816969545892 4.355060027805576 0.9196447740241369 3.50425923014539 0.18193923014777336 0.4599463376590466 0.3019948082327788 0.10368925442669896 0.14997311473508718 0.1893404994076217 0.3520777214748593 0948 -python ../Main_earth_system.py $SLURM_NTASKS 1.809020868936714 5.040568477566236 3.650611372373201 3.717199244360862 0.1580982768323796 0.7726022916134397 0.23649192657762202 0.28765039493259736 0.12000983242170632 0.21481513490265247 0.23112824923167258 0949 -python ../Main_earth_system.py $SLURM_NTASKS 2.34279781193976 4.917284542311466 1.9874852083456236 3.5233285029862933 0.19133582196790483 0.6932132448565287 0.7249631655874116 0.1009484211222558 0.1250479938990233 0.20989479231213382 0.3607758752648125 0950 -python ../Main_earth_system.py $SLURM_NTASKS 1.3956093929984035 4.918190952375152 0.8312683162407951 4.173459881017363 0.12373541280418467 0.5214177440503937 0.5121625953033492 0.21128100657377796 0.13241205615637086 0.9168784066645153 0.37395198114721206 0951 -python ../Main_earth_system.py $SLURM_NTASKS 1.074048253311326 5.638062722246238 3.060892021841328 3.8898324368527613 0.18664107395036317 0.5516827110357941 0.6777027539118803 0.18186481329005544 0.12883826392641004 0.39372323596299963 0.3420288252153471 0952 -python ../Main_earth_system.py $SLURM_NTASKS 2.466120943349819 4.905839406253722 1.4484275299961165 3.863800083987085 0.1738603113430554 0.30309714185348235 0.13664614566985325 0.12026014310585031 0.1462977226669328 0.9264048054011444 0.1656578147030192 0953 -python ../Main_earth_system.py $SLURM_NTASKS 1.9329076219700245 4.034233116566133 0.9857907911258601 3.933663458698446 0.11773665282034416 0.10203860800898494 0.24396541670047103 0.17739863997474514 0.1075627486644632 0.619018932972322 0.37092669062353545 0954 -python ../Main_earth_system.py $SLURM_NTASKS 2.51225064145145 5.58995471516503 3.4718915245906476 4.448616986610695 0.14715027634070715 0.5778358504504627 0.6669549829217161 0.2852642841237697 0.11993118937595826 0.2312362714961513 0.13788917017902985 0955 -python ../Main_earth_system.py $SLURM_NTASKS 2.398715125671609 5.878311515457289 2.698423487277501 3.768468183245644 0.10999750756981123 0.7093005403978946 0.8448347173588626 0.263655191945853 0.14515708272380468 0.49602595319581566 0.2767029664640883 0956 -python ../Main_earth_system.py $SLURM_NTASKS 1.757636373956724 5.739822599669402 0.8386654298787014 4.024424188976586 0.1464558361745508 0.6562125971494991 0.8242571279143072 0.29960796203898654 0.12904933815990752 0.6607611577155409 0.2741720662638052 0957 -python ../Main_earth_system.py $SLURM_NTASKS 1.4774333639308042 3.857540912420893 4.747178406968702 4.124003513196147 0.1888774559024716 0.20387738219011456 0.5476311390079583 0.2433504522680887 0.12797664049429688 0.7789985706595217 0.18900527275740514 0958 -python ../Main_earth_system.py $SLURM_NTASKS 1.812294445260946 3.6718048563411685 3.6381002047968334 4.264820808102095 0.11883907549525186 0.7085887901012736 0.3960738570750454 0.23631726155507862 0.10165038419505854 0.9023646334000032 0.1840839288178974 0959 -python ../Main_earth_system.py $SLURM_NTASKS 2.997280636726356 5.501774290030443 2.827993291584252 3.9320737981555727 0.16039692575631664 0.11776313978896427 0.7842855682408475 0.1774460761866944 0.11839008106099476 0.9751404699062355 0.3748382084040741 0960 -python ../Main_earth_system.py $SLURM_NTASKS 1.6655406711845475 5.5284797375507875 4.969323165169588 4.061870872236402 0.13102607765742685 0.3528267776601294 0.11676315642670185 0.11164205332947788 0.1386969546396094 0.45625219914210313 0.3308272921842833 0961 -python ../Main_earth_system.py $SLURM_NTASKS 2.363561071900408 4.833350603391535 1.7785597833180584 4.079977198421956 0.13558563386107206 0.5500233829323755 0.6183292025856748 0.24126356398293805 0.14066463920390593 0.7668153554636747 0.18439630209922764 0962 -python ../Main_earth_system.py $SLURM_NTASKS 2.093243559536954 5.709214019783225 2.0844784093819295 3.522814308514323 0.12969250486751308 0.41208824622098816 0.41391238613764936 0.17790419700762333 0.13266484775790705 0.603655032810677 0.3704190033432565 0963 -python ../Main_earth_system.py $SLURM_NTASKS 2.180445078669076 5.7814716676614495 5.046699723945776 3.7574883891801725 0.1608230352412425 0.9045086881117758 0.7767700739727128 0.14053186206926382 0.14196658397249193 0.6685250964111055 0.1366140126142181 0964 -python ../Main_earth_system.py $SLURM_NTASKS 1.2727444395490999 4.892090325041342 2.293763216333727 3.8108607303112843 0.15151867916159892 0.9315535759145571 0.3937882755167088 0.17323348792770363 0.1016073816683793 0.9823043212379808 0.27135975489014774 0965 -python ../Main_earth_system.py $SLURM_NTASKS 2.1436034328568194 5.991085349280114 3.886221127838847 3.9879686076188774 0.13824310452706143 0.7533184438597692 0.4458902578858106 0.19599854491486318 0.14658714218145819 0.8174741571268751 0.352683410023084 0966 -python ../Main_earth_system.py $SLURM_NTASKS 2.109957840279428 3.561624435450203 1.8997382771769427 4.492591535089909 0.13242998892882626 0.10460508536941793 0.4404991516549832 0.16868206245852008 0.12486950449219239 0.5414648098170839 0.32316815196472104 0967 -python ../Main_earth_system.py $SLURM_NTASKS 3.0988684757987297 5.813870522207853 1.1027099154753666 4.21153805890674 0.11186492656974162 0.8154585357042896 0.9496250354113663 0.2283956349423005 0.1356970153000772 0.1549347059744511 0.3631206677271436 0968 -python ../Main_earth_system.py $SLURM_NTASKS 2.0640359760355187 4.857887622835915 3.5141206930114146 3.6715661009480995 0.17538540618057957 0.7254509712033131 0.7942429419343284 0.18248397987766896 0.1486189549038554 0.29340531103670797 0.18048821769364806 0969 -python ../Main_earth_system.py $SLURM_NTASKS 2.424901506722963 5.2905487778611695 5.160070407425098 3.9973383625373575 0.19408636652874314 0.8527779600404204 0.5717861949344554 0.10574036264976187 0.11185981052703005 0.6056199446151227 0.16844501473938717 0970 -python ../Main_earth_system.py $SLURM_NTASKS 1.0008633143591452 4.4443368003059485 4.197020083997318 4.009748704707565 0.1767638250539681 0.5280029748889771 0.5203828706108359 0.1322971680379045 0.14981454909871905 0.7843230704355202 0.22919703437240713 0971 -python ../Main_earth_system.py $SLURM_NTASKS 2.4405695694103358 5.161207719313552 1.5384969951184386 3.598385213455541 0.17692116994912954 0.7789162655001272 0.2986949393141163 0.10031661465736821 0.13440691401320914 0.727937321486217 0.11510741851541759 0972 -python ../Main_earth_system.py $SLURM_NTASKS 0.9413266884936571 3.651445923322767 2.7919246034996767 3.8360465508608264 0.1523510263536015 0.8791103901483205 0.7904592009325089 0.25527446338120563 0.12497965676438391 0.7930803172004589 0.10971751103746209 0973 -python ../Main_earth_system.py $SLURM_NTASKS 2.5185538693386302 4.878403085575611 3.795686285053713 3.817079645323112 0.1760213162131536 0.9508284013770048 0.9933765835736575 0.11062603427444771 0.11303997295258919 0.2241086305111447 0.24346269280641872 0974 -python ../Main_earth_system.py $SLURM_NTASKS 1.2372379592255045 4.212109171773712 1.9129877798771604 3.8483950543118803 0.19878508652992483 0.21845268142724178 0.6191399224988898 0.1727277095460591 0.11518079603483825 0.9338493129412768 0.2617080012523161 0975 -python ../Main_earth_system.py $SLURM_NTASKS 2.5297320877693297 5.681475123606102 3.748887537343399 4.249294934257292 0.15018334164740368 0.24644349916244496 0.9803596682582167 0.21251332090083808 0.13708080865675432 0.5930561730164897 0.2762006265360526 0976 -python ../Main_earth_system.py $SLURM_NTASKS 3.0937565379457537 3.5219229061238644 2.5775470309081454 4.395181566460853 0.1989180650324905 0.3812040345428037 0.1605554774199908 0.15374699508438572 0.14788910365075675 0.4213920891307348 0.2109258137902169 0977 -python ../Main_earth_system.py $SLURM_NTASKS 2.9137816240644074 5.4937671678828846 3.704313944862278 4.290616156840523 0.17576503014150702 0.414943203584609 0.13364899378756795 0.17196169457292645 0.1139859305569368 0.7887618298618109 0.11994729597359804 0978 -python ../Main_earth_system.py $SLURM_NTASKS 2.832514640774521 4.944688514862452 1.39132480124841 3.6651049416923334 0.14787080541092937 0.9066801523767829 0.11831131687095474 0.13007644276524297 0.1102403212042574 0.7650267938191925 0.3314806551288281 0979 -python ../Main_earth_system.py $SLURM_NTASKS 1.6728110224758248 4.270057196903891 3.9851503412620266 4.294586291615509 0.15668142391024745 0.9940153442866084 0.3912019055506214 0.16088192207393215 0.13728368279149558 0.9586425813519753 0.24701214261254548 0980 -python ../Main_earth_system.py $SLURM_NTASKS 1.4136199216293848 5.730481737161395 2.7191927821364406 3.7416490672093365 0.18677506405007505 0.33753294898597297 0.6507157379512004 0.2598517126822677 0.11887479902832113 0.5962976730637042 0.39109875506818803 0981 -python ../Main_earth_system.py $SLURM_NTASKS 2.2370230886791633 4.190214000878108 5.171586704691599 4.314312785502126 0.15347312052172757 0.5408706631778195 0.6653434063464475 0.18519284715229872 0.11625931269992258 0.9299664116720975 0.14342504122377248 0982 -python ../Main_earth_system.py $SLURM_NTASKS 1.5181740034699476 5.335972029557373 4.7901306969629545 4.2874780031502056 0.14096034077247793 0.4470787674578185 0.6525062084650302 0.27219740875287823 0.1318164425865776 0.9524187223005823 0.35919638396800146 0983 -python ../Main_earth_system.py $SLURM_NTASKS 0.985541202369442 3.5090377220940834 3.578986831784629 4.293383795432078 0.17796606355280875 0.289137064908112 0.7827607342434703 0.22974027891543256 0.11655554261412474 0.6576197185896775 0.18804134425871769 0984 -python ../Main_earth_system.py $SLURM_NTASKS 1.035002840415705 3.9147409804719207 1.525903590093621 4.144667706216054 0.1506141132237474 0.9648317474121483 0.549503498701489 0.20011406029857914 0.10229581407549987 0.34406486457257635 0.286721831149124 0985 -python ../Main_earth_system.py $SLURM_NTASKS 2.719664424965453 5.374540656300758 3.7637314084174314 4.32509232322776 0.1198518119924718 0.3386403653346325 0.769472503953004 0.1749131371471982 0.11182404259833413 0.590719731342553 0.3009413401298747 0986 -python ../Main_earth_system.py $SLURM_NTASKS 3.0503493322406303 5.667841376350535 2.443249209152029 3.5421029878329584 0.18973701428175316 0.785070229284066 0.22890847000233489 0.1713429611871767 0.10924693444274466 0.9870945729942802 0.2601321404450829 0987 -python ../Main_earth_system.py $SLURM_NTASKS 1.1710763938677178 5.24701713545495 4.596453542187629 4.375290679273587 0.13682898972866547 0.4330854070480141 0.7350457854590627 0.20326785732345973 0.12039891509570452 0.5544503763914624 0.13552592847579342 0988 -python ../Main_earth_system.py $SLURM_NTASKS 0.8485151164413779 5.037511763358653 1.969932971907495 3.546277899604796 0.15986810672616858 0.5096740564443655 0.9909889605385325 0.20399183248683703 0.11647683018753935 0.49351099428378664 0.19416150119317327 0989 -python ../Main_earth_system.py $SLURM_NTASKS 2.9098972584915375 4.330588673191997 5.417255474992073 4.354521181133402 0.16607253647348785 0.6075980990113083 0.732328985533467 0.16378353720268807 0.1288788294599766 0.3383356067120642 0.3783208347369985 0990 -python ../Main_earth_system.py $SLURM_NTASKS 2.864682814226879 4.814031352964218 1.8658660227127073 4.359663985053471 0.12015094412087829 0.2715952610166267 0.17760640265353683 0.15886579372081538 0.11543255870732627 0.12644855450746068 0.25246053448065725 0991 -python ../Main_earth_system.py $SLURM_NTASKS 2.8479318235640596 4.614862985531226 2.611689703670533 3.8462763269560023 0.16456681763294523 0.9705826850766104 0.4248389628400736 0.19276951812368537 0.14762984721226297 0.46433919403071 0.3018824721163734 0992 -python ../Main_earth_system.py $SLURM_NTASKS 2.015192342332107 5.851626330166739 5.489535291291396 3.8510694524996487 0.1570045889539911 0.8341565079335763 0.825165385907782 0.19447481617960538 0.12786803644564324 0.9260571218902397 0.3136370337832466 0993 -python ../Main_earth_system.py $SLURM_NTASKS 2.1188355560339094 4.838940475229371 4.459875388646573 4.489966338915571 0.1854091952634281 0.1624264476431136 0.49667713915769696 0.13861114306209288 0.13920983819321275 0.7295493461967595 0.19246272252619487 0994 -python ../Main_earth_system.py $SLURM_NTASKS 2.0747331248217806 5.328434291972727 1.604961989020126 3.9618640194264403 0.1636559838534985 0.36102864058257933 0.19321745374577498 0.13459786937205373 0.10329863320133094 0.2517533062599658 0.2473651476205581 0995 -python ../Main_earth_system.py $SLURM_NTASKS 0.8582899205832173 5.347714594112604 5.240997079253442 3.816402196825301 0.1755020986051839 0.4651202411990132 0.7623934816614218 0.20650980610046987 0.14041585919966604 0.7827716741560856 0.18318311560085637 0996 -python ../Main_earth_system.py $SLURM_NTASKS 3.004856618965544 5.364794345610223 0.9624303230484141 4.158262205541621 0.10206484768026075 0.8485353986270244 0.9326372692670026 0.10006527771914478 0.1258175536947295 0.24238650173358633 0.3037187776657773 0997 -python ../Main_earth_system.py $SLURM_NTASKS 2.202288833744471 5.929820550355005 1.5498277509163443 4.371295561862153 0.11402585571046675 0.43979263450202866 0.9421374532610217 0.16806295397910953 0.12549502013663838 0.7563663883126196 0.3430581509161969 0998 -python ../Main_earth_system.py $SLURM_NTASKS 2.6514424841902144 5.596372010573317 2.104372877752691 4.020987488611448 0.14283208462827476 0.257872869924783 0.7604681970392123 0.2217947167910621 0.10363248006819575 0.9917744236168253 0.2637818078204178 0999 diff --git a/earth_system/results/feedbacks/network_-1.0_-1.0/0000/empirical_values.txt b/earth_system/results/feedbacks/network_-1.0_-1.0/0000/empirical_values.txt deleted file mode 100644 index b32b5e0..0000000 --- a/earth_system/results/feedbacks/network_-1.0_-1.0/0000/empirical_values.txt +++ /dev/null @@ -1,12 +0,0 @@ -2.241961283016736139e+00 -4.690622821301434264e+00 -1.415941190922719528e+00 -4.102480797163987170e+00 -1.930969839004014199e-01 -5.780331277664366718e-01 -3.120089095025565529e-01 -1.197540259206236191e-01 -1.316699858272921964e-01 -2.705965076235176681e-01 -3.715199043381330890e-01 -0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_-1.0_-1.0/0000/feedbacks_0.25.txt b/earth_system/results/feedbacks/network_-1.0_-1.0/0000/feedbacks_0.25.txt deleted file mode 100644 index d2cb22e..0000000 --- a/earth_system/results/feedbacks/network_-1.0_-1.0/0000/feedbacks_0.25.txt +++ /dev/null @@ -1 +0,0 @@ -2.000000000000000000e+00 1.168271929103840145e+00 -8.226301465906085131e-01 1.248114944132563187e+00 -8.998821134627704721e-01 2.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_-1.0_-1.0/0000/time_d0.25_GMT2.0.pdf b/earth_system/results/feedbacks/network_-1.0_-1.0/0000/time_d0.25_GMT2.0.pdf deleted file mode 100644 index ba4a50a..0000000 Binary files a/earth_system/results/feedbacks/network_-1.0_-1.0/0000/time_d0.25_GMT2.0.pdf and /dev/null differ diff --git a/earth_system/results/feedbacks/network_-1.0_0.0/0000/empirical_values.txt b/earth_system/results/feedbacks/network_-1.0_0.0/0000/empirical_values.txt deleted file mode 100644 index b32b5e0..0000000 --- a/earth_system/results/feedbacks/network_-1.0_0.0/0000/empirical_values.txt +++ /dev/null @@ -1,12 +0,0 @@ -2.241961283016736139e+00 -4.690622821301434264e+00 -1.415941190922719528e+00 -4.102480797163987170e+00 -1.930969839004014199e-01 -5.780331277664366718e-01 -3.120089095025565529e-01 -1.197540259206236191e-01 -1.316699858272921964e-01 -2.705965076235176681e-01 -3.715199043381330890e-01 -0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_-1.0_0.0/0000/feedbacks_0.25.txt b/earth_system/results/feedbacks/network_-1.0_0.0/0000/feedbacks_0.25.txt deleted file mode 100644 index 9fe77ad..0000000 --- a/earth_system/results/feedbacks/network_-1.0_0.0/0000/feedbacks_0.25.txt +++ /dev/null @@ -1 +0,0 @@ -2.000000000000000000e+00 1.168271929103840145e+00 -8.226301465906007415e-01 1.248114944132562520e+00 -8.880953817084861202e-01 2.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_-1.0_0.0/0000/time_d0.25_GMT2.0.pdf b/earth_system/results/feedbacks/network_-1.0_0.0/0000/time_d0.25_GMT2.0.pdf deleted file mode 100644 index 67e3e12..0000000 Binary files a/earth_system/results/feedbacks/network_-1.0_0.0/0000/time_d0.25_GMT2.0.pdf and /dev/null differ diff --git a/earth_system/results/feedbacks/network_-1.0_1.0/0000/empirical_values.txt b/earth_system/results/feedbacks/network_-1.0_1.0/0000/empirical_values.txt deleted file mode 100644 index b32b5e0..0000000 --- a/earth_system/results/feedbacks/network_-1.0_1.0/0000/empirical_values.txt +++ /dev/null @@ -1,12 +0,0 @@ -2.241961283016736139e+00 -4.690622821301434264e+00 -1.415941190922719528e+00 -4.102480797163987170e+00 -1.930969839004014199e-01 -5.780331277664366718e-01 -3.120089095025565529e-01 -1.197540259206236191e-01 -1.316699858272921964e-01 -2.705965076235176681e-01 -3.715199043381330890e-01 -0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_-1.0_1.0/0000/feedbacks_0.25.txt b/earth_system/results/feedbacks/network_-1.0_1.0/0000/feedbacks_0.25.txt deleted file mode 100644 index 9a77b2e..0000000 --- a/earth_system/results/feedbacks/network_-1.0_1.0/0000/feedbacks_0.25.txt +++ /dev/null @@ -1 +0,0 @@ -2.000000000000000000e+00 1.168271929103840145e+00 -8.226301465905941912e-01 1.248114944132560522e+00 -8.757401875578366690e-01 2.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_-1.0_1.0/0000/time_d0.25_GMT2.0.pdf b/earth_system/results/feedbacks/network_-1.0_1.0/0000/time_d0.25_GMT2.0.pdf deleted file mode 100644 index bec89de..0000000 Binary files a/earth_system/results/feedbacks/network_-1.0_1.0/0000/time_d0.25_GMT2.0.pdf and /dev/null differ diff --git a/earth_system/results/feedbacks/network_0.0_-1.0/0000/empirical_values.txt b/earth_system/results/feedbacks/network_0.0_-1.0/0000/empirical_values.txt deleted file mode 100644 index b32b5e0..0000000 --- a/earth_system/results/feedbacks/network_0.0_-1.0/0000/empirical_values.txt +++ /dev/null @@ -1,12 +0,0 @@ -2.241961283016736139e+00 -4.690622821301434264e+00 -1.415941190922719528e+00 -4.102480797163987170e+00 -1.930969839004014199e-01 -5.780331277664366718e-01 -3.120089095025565529e-01 -1.197540259206236191e-01 -1.316699858272921964e-01 -2.705965076235176681e-01 -3.715199043381330890e-01 -0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_0.0_-1.0/0000/feedbacks_0.25.txt b/earth_system/results/feedbacks/network_0.0_-1.0/0000/feedbacks_0.25.txt deleted file mode 100644 index d0f449a..0000000 --- a/earth_system/results/feedbacks/network_0.0_-1.0/0000/feedbacks_0.25.txt +++ /dev/null @@ -1 +0,0 @@ -2.000000000000000000e+00 1.164538759359638576e+00 -7.428078528450714479e-01 1.248761064506883622e+00 -9.050190292109565604e-01 2.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_0.0_-1.0/0000/time_d0.25_GMT2.0.pdf b/earth_system/results/feedbacks/network_0.0_-1.0/0000/time_d0.25_GMT2.0.pdf deleted file mode 100644 index 4d6706a..0000000 Binary files a/earth_system/results/feedbacks/network_0.0_-1.0/0000/time_d0.25_GMT2.0.pdf and /dev/null differ diff --git a/earth_system/results/feedbacks/network_0.0_0.0/0000/empirical_values.txt b/earth_system/results/feedbacks/network_0.0_0.0/0000/empirical_values.txt deleted file mode 100644 index b32b5e0..0000000 --- a/earth_system/results/feedbacks/network_0.0_0.0/0000/empirical_values.txt +++ /dev/null @@ -1,12 +0,0 @@ -2.241961283016736139e+00 -4.690622821301434264e+00 -1.415941190922719528e+00 -4.102480797163987170e+00 -1.930969839004014199e-01 -5.780331277664366718e-01 -3.120089095025565529e-01 -1.197540259206236191e-01 -1.316699858272921964e-01 -2.705965076235176681e-01 -3.715199043381330890e-01 -0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_0.0_0.0/0000/feedbacks_0.25.txt b/earth_system/results/feedbacks/network_0.0_0.0/0000/feedbacks_0.25.txt deleted file mode 100644 index dee10e5..0000000 --- a/earth_system/results/feedbacks/network_0.0_0.0/0000/feedbacks_0.25.txt +++ /dev/null @@ -1 +0,0 @@ -2.000000000000000000e+00 1.164538759359638798e+00 -7.428078528450697826e-01 1.248761064506882512e+00 -8.880953813425112031e-01 2.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_0.0_0.0/0000/time_d0.25_GMT2.0.pdf b/earth_system/results/feedbacks/network_0.0_0.0/0000/time_d0.25_GMT2.0.pdf deleted file mode 100644 index 5c6f2e8..0000000 Binary files a/earth_system/results/feedbacks/network_0.0_0.0/0000/time_d0.25_GMT2.0.pdf and /dev/null differ diff --git a/earth_system/results/feedbacks/network_0.0_1.0/0000/empirical_values.txt b/earth_system/results/feedbacks/network_0.0_1.0/0000/empirical_values.txt deleted file mode 100644 index b32b5e0..0000000 --- a/earth_system/results/feedbacks/network_0.0_1.0/0000/empirical_values.txt +++ /dev/null @@ -1,12 +0,0 @@ -2.241961283016736139e+00 -4.690622821301434264e+00 -1.415941190922719528e+00 -4.102480797163987170e+00 -1.930969839004014199e-01 -5.780331277664366718e-01 -3.120089095025565529e-01 -1.197540259206236191e-01 -1.316699858272921964e-01 -2.705965076235176681e-01 -3.715199043381330890e-01 -0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_0.0_1.0/0000/feedbacks_0.25.txt b/earth_system/results/feedbacks/network_0.0_1.0/0000/feedbacks_0.25.txt deleted file mode 100644 index 1bf314c..0000000 --- a/earth_system/results/feedbacks/network_0.0_1.0/0000/feedbacks_0.25.txt +++ /dev/null @@ -1 +0,0 @@ -2.000000000000000000e+00 1.164538759363231701e+00 -7.428078526572003959e-01 1.248761064502752260e+00 -8.699735200150182646e-01 2.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_0.0_1.0/0000/time_d0.25_GMT2.0.pdf b/earth_system/results/feedbacks/network_0.0_1.0/0000/time_d0.25_GMT2.0.pdf deleted file mode 100644 index f9b3fec..0000000 Binary files a/earth_system/results/feedbacks/network_0.0_1.0/0000/time_d0.25_GMT2.0.pdf and /dev/null differ diff --git a/earth_system/results/feedbacks/network_1.0_-1.0/0000/empirical_values.txt b/earth_system/results/feedbacks/network_1.0_-1.0/0000/empirical_values.txt deleted file mode 100644 index b32b5e0..0000000 --- a/earth_system/results/feedbacks/network_1.0_-1.0/0000/empirical_values.txt +++ /dev/null @@ -1,12 +0,0 @@ -2.241961283016736139e+00 -4.690622821301434264e+00 -1.415941190922719528e+00 -4.102480797163987170e+00 -1.930969839004014199e-01 -5.780331277664366718e-01 -3.120089095025565529e-01 -1.197540259206236191e-01 -1.316699858272921964e-01 -2.705965076235176681e-01 -3.715199043381330890e-01 -0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_1.0_-1.0/0000/feedbacks_0.25.txt b/earth_system/results/feedbacks/network_1.0_-1.0/0000/feedbacks_0.25.txt deleted file mode 100644 index 645a45e..0000000 --- a/earth_system/results/feedbacks/network_1.0_-1.0/0000/feedbacks_0.25.txt +++ /dev/null @@ -1 +0,0 @@ -2.000000000000000000e+00 1.064138592053703425e+00 1.157356891419713207e+00 1.263691743997452654e+00 -1.006306520829145734e+00 3.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_1.0_-1.0/0000/time_d0.25_GMT2.0.pdf b/earth_system/results/feedbacks/network_1.0_-1.0/0000/time_d0.25_GMT2.0.pdf deleted file mode 100644 index e986d5e..0000000 Binary files a/earth_system/results/feedbacks/network_1.0_-1.0/0000/time_d0.25_GMT2.0.pdf and /dev/null differ diff --git a/earth_system/results/feedbacks/network_1.0_0.0/0000/empirical_values.txt b/earth_system/results/feedbacks/network_1.0_0.0/0000/empirical_values.txt deleted file mode 100644 index b32b5e0..0000000 --- a/earth_system/results/feedbacks/network_1.0_0.0/0000/empirical_values.txt +++ /dev/null @@ -1,12 +0,0 @@ -2.241961283016736139e+00 -4.690622821301434264e+00 -1.415941190922719528e+00 -4.102480797163987170e+00 -1.930969839004014199e-01 -5.780331277664366718e-01 -3.120089095025565529e-01 -1.197540259206236191e-01 -1.316699858272921964e-01 -2.705965076235176681e-01 -3.715199043381330890e-01 -0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_1.0_0.0/0000/feedbacks_0.25.txt b/earth_system/results/feedbacks/network_1.0_0.0/0000/feedbacks_0.25.txt deleted file mode 100644 index 53c3d17..0000000 --- a/earth_system/results/feedbacks/network_1.0_0.0/0000/feedbacks_0.25.txt +++ /dev/null @@ -1 +0,0 @@ -2.000000000000000000e+00 1.064138592053703869e+00 1.157356891419712985e+00 1.263691743997443329e+00 -8.880953815248957550e-01 3.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_1.0_0.0/0000/time_d0.25_GMT2.0.pdf b/earth_system/results/feedbacks/network_1.0_0.0/0000/time_d0.25_GMT2.0.pdf deleted file mode 100644 index 1aea789..0000000 Binary files a/earth_system/results/feedbacks/network_1.0_0.0/0000/time_d0.25_GMT2.0.pdf and /dev/null differ diff --git a/earth_system/results/feedbacks/network_1.0_1.0/0000/empirical_values.txt b/earth_system/results/feedbacks/network_1.0_1.0/0000/empirical_values.txt deleted file mode 100644 index b32b5e0..0000000 --- a/earth_system/results/feedbacks/network_1.0_1.0/0000/empirical_values.txt +++ /dev/null @@ -1,12 +0,0 @@ -2.241961283016736139e+00 -4.690622821301434264e+00 -1.415941190922719528e+00 -4.102480797163987170e+00 -1.930969839004014199e-01 -5.780331277664366718e-01 -3.120089095025565529e-01 -1.197540259206236191e-01 -1.316699858272921964e-01 -2.705965076235176681e-01 -3.715199043381330890e-01 -0.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_1.0_1.0/0000/feedbacks_0.25.txt b/earth_system/results/feedbacks/network_1.0_1.0/0000/feedbacks_0.25.txt deleted file mode 100644 index ebea6b2..0000000 --- a/earth_system/results/feedbacks/network_1.0_1.0/0000/feedbacks_0.25.txt +++ /dev/null @@ -1 +0,0 @@ -2.000000000000000000e+00 1.064138592057179977e+00 1.157356892547244609e+00 1.263691743995516203e+00 1.155738536829276963e+00 4.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 1.000000000000000000e+00 diff --git a/earth_system/results/feedbacks/network_1.0_1.0/0000/timelines_complete.pdf b/earth_system/results/feedbacks/network_1.0_1.0/0000/timelines_complete.pdf deleted file mode 100644 index 200ce9e..0000000 Binary files a/earth_system/results/feedbacks/network_1.0_1.0/0000/timelines_complete.pdf and /dev/null differ diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..65552c4 --- /dev/null +++ b/environment.yml @@ -0,0 +1,8 @@ +name: base +dependencies: + - python=3.11 + - netcdf4 + - pandas + - scipy + - networkx + - matplotlib diff --git a/pycascades/__init__.py b/pycascades/__init__.py index af88f4b..02c7799 100644 --- a/pycascades/__init__.py +++ b/pycascades/__init__.py @@ -4,16 +4,3 @@ __version__ = "1.0.2" __author__ = 'Nico Wunderling, Jonathan Krönke, Vitus Benson, Dorothea Kistinger, Jan Kohler, Benedikt Stumpf, Valentin Wohlfarth, Jonathan F. Donges' __credits__ = 'Potsdam Institute for Climate Impact Research' - -from . import core, gen, utils, earth_system, amazon - -from pycascades.core.tipping_element import cusp, hopf, realistic_cusp -from pycascades.core.tipping_element_economic import economic_logistic -from pycascades.core.tipping_network import tipping_network -from pycascades.core.tipping_network_economic import tipping_network_economic -from pycascades.core.coupling import linear_coupling, cusp_to_hopf, hopf_x_to_cusp, hopf_x_to_hopf, hopf_y_to_cusp, hopf_y_to_hopf -from pycascades.core.coupling_economic import linear_coupling as linear_coupling_economic -from pycascades.core.evolve import evolve -from pycascades.core.evolve_sde import evolve as evolve_sde -from pycascades.core.evolve_economic import evolve as evolve_economic -from pycascades.utils import plotter diff --git a/pycascades/amazon/__init__.py b/pycascades/amazon/__init__.py deleted file mode 100644 index 21e5a03..0000000 --- a/pycascades/amazon/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ - - -from . import amazon - -from pycascades.amazon.amazon import generate_network \ No newline at end of file diff --git a/pycascades/amazon/amazon.py b/pycascades/amazon/amazon.py deleted file mode 100644 index a426426..0000000 --- a/pycascades/amazon/amazon.py +++ /dev/null @@ -1,151 +0,0 @@ - - -from pycascades.core.tipping_network import tipping_network -from pycascades.core.tipping_element import cusp -from pycascades.core.coupling import linear_coupling - - -from netCDF4 import Dataset - -import networkx as nx -import numpy as np - - - -def Rain(datasets): - """ - Computation of rainfall values; all datasets are necessary and a potential rain factor - """ - rain = [] - for data in datasets: - net_data = Dataset(data) - #get mean value for rainfall - rain_dataset = net_data.variables["rain"][:] - if len(rain) == 0: - rain = rain_dataset - else: - rain = np.add(rain, rain_dataset) - rain = np.array(rain) - return rain - -def Amazon_CUSPc(a, b, rain_current, rain_critical, rain_mean): - """ - c = c(rainfall) where tipping occurs at sqrt((4*b**3)/(27*a)) - """ - c = np.sqrt((4*np.abs(b)**3) / (27*np.abs(a)))/(rain_critical - rain_mean)*(rain_current - rain_mean) - return c - - - -def Amazon_cpl(a, b, rain_critical, rain_current, rain_mean, delta_rain): - """ - Factor of (1/2) is necessary since delta(state)=2 from -1 to +1 - Factor (-1) is necessary since delta_rain < 0, but the coupling must be positive - """ - - #rain [c, cpl]-values - c = np.sqrt((4*np.abs(b)**3) / (27*np.abs(a)))/(rain_critical - rain_mean)*(rain_current - rain_mean) - cpl = np.sqrt((4*np.abs(b)**3) / (27*np.abs(a)))/(rain_mean - rain_critical)*(1/2)*(-1)*delta_rain - - - if cpl < 0.0: - raise ValueError("Coupling strengths below 0.0 are not allowed") - - return cpl - - - -def Rain_moisture_delta_only(moist_rec_val): - """ - Computation of moisture recycling value for a year - """ - rain_moist = - np.sum(moist_rec_val) - return rain_moist - - -def generate_network(rain_crit, data_eval, no_cpl_dummy): - net = tipping_network() - - #get longitude and latitude values, for that use first network - net_data = Dataset(data_eval[0]) - lon_x = net_data.variables["lon"][:] - lat_y = net_data.variables["lat"][:] - - #rainfall value - rain = Rain(data_eval) - rain_mean = np.nanmean(rain) - - for idx, val in enumerate(lon_x): - #constants that are necessary to set up the tipping network - rain_current = rain[idx] #rainfall in a certain cell - rain_critical = rain_crit #critical rainfall of a certain cell - - a = 1 - b = 1 - element = cusp( a = -1, b = 1, c = Amazon_CUSPc(a, b, rain_current, rain_critical, rain_mean), x_0 = 0) - net.add_element(element) - net.nodes[idx]['pos'] = (val, lat_y[idx]) - - - flows_xy_total = [] - for data in data_eval: - data_file = Dataset(data) - flows_xy_total.append(data_file.variables["network"][:, :]) - flows_xy_total = np.array(flows_xy_total) - - #compute total moisture recycling within a year - flows_xy = Dataset(data_eval[0]).variables["network"][:, :] - it = np.nditer(flows_xy, flags=['multi_index']) - - - couplings = [] - while not it.finished: - if not it.multi_index[0] == it.multi_index[1]: - ########### - #need to get value for each month - monthly = [] - for i in range(0, len(flows_xy_total)): - monthly.append(flows_xy_total[i, it.multi_index[0], it.multi_index[1]]) - - appender = [it.multi_index[1], it.multi_index[0], np.sum(monthly)] - for i in monthly: - appender.append(i) - couplings.append([i for i in appender]) - it.iternext() - - couplings = np.array(couplings) - couplings = np.array(sorted(couplings, key=lambda x: x[2])) - - - #sort out zero values in array - cpl_hist = np.array(couplings).T[2] - start_idx = len(couplings) - np.count_nonzero(cpl_hist)#count length of zeros - couplings = np.array(couplings[start_idx:]) # sort out where couplings are zero - - - - #Resolution dependent coupling limit: Setting where couplings below cpl_limit mm/year are neglected; default value 1.0 mm - cpl_limit = 1.0 # time to compute the new network sensitively depends on the coupling limit; - - for cpl in couplings: - if cpl[2] > cpl_limit: - if no_cpl_dummy == True: - coupling_object = linear_coupling(strength = 0.0) - else: - #get the difference between rainfall in the respective cell after[rain_new] and before[rain_old] tipping - delta_rain = Rain_moisture_delta_only([cpl[i] for i in range(3, len(cpl))]) #delta_rain is a negative number - #current and critical values are required for the rainfall and mcwd - rain_current = rain[int(cpl[1])] - rain_critical = rain_crit - - #Amount of change of MCWD is the coupling strength - coupling_object = linear_coupling(strength = Amazon_cpl(a, b, rain_critical, rain_current, rain_mean, delta_rain)) - net.add_coupling( int(cpl[0]), int(cpl[1]), coupling_object ) #needs to be saved as integer here - - print("Amazon rainforest network generated! Restriction: Only moisture recycling links above {} mm/yr are considered".format(cpl_limit)) - d = net.number_of_edges() / net.number_of_nodes() - average_clustering = nx.average_clustering(net) - #print("Average degree: ", d) - #print("Average clustering: ", average_clustering) - return net - diff --git a/pycascades/applications/amazon/amazon.py b/pycascades/applications/amazon/amazon.py new file mode 100644 index 0000000..a2df51c --- /dev/null +++ b/pycascades/applications/amazon/amazon.py @@ -0,0 +1,86 @@ +from core.system.system import double_fold +from core.system.coupling import linear_coupling + +import numpy as np + + +class amazon_double_well(double_fold): + def __init__(self, map, mcwd, map_crit, mcwd_crit, map_mean, mcwd_mean): + """Constructor with additional parameters for cusp""" + super().__init__() + self.mcwd = mcwd + self.map = map + self.map_crit = map_crit + self.map_mean = map_mean + self.mcwd_mean = mcwd_mean + self.mcwd_crit = mcwd_crit + + self._control = self._calculate_control() + + def _calculate_control(self): + c_rain = ( + np.sqrt(4 / 27) * (self.map - self.map_mean) + / (self.map_crit - self.map_mean) + ) + c_mcwd = ( + np.sqrt(4 / 27) + * (self.mcwd - self.mcwd_mean) + / (self.mcwd_crit - self.mcwd_mean) + if self.mcwd_crit > 0.0 + else 0.0 + ) + + if c_mcwd < 0.0: + c_mcwd = 0.0 + + c = c_mcwd + c_rain + return c + + def f(self, x, t): + return -1.0 * pow(x, 3) + 1.0 * x + self._control + + +class amazon_coupling(linear_coupling): + def __init__( + self, + delta_map, + delta_mcwd, + map, + mcwd, + map_crit, + mcwd_crit, + map_mean, + mcwd_mean, + x_0 + ): + self._strength = self._calculate_strength( + delta_map, + delta_mcwd, + map, + mcwd, + map_crit, + mcwd_crit, + map_mean, + mcwd_mean + ) + self._x_0 = x_0 + + def _calculate_strength( + self, + delta_map, + delta_mcwd, + map, + mcwd, + map_crit, + mcwd_crit, + map_mean, + mcwd_mean + ): + cpl_rain = np.sqrt(4 / 27) * (1 / 2) * delta_map / (map_mean - map_crit) + cpl_mcwd = ( + np.sqrt(4 / 27) * (1 / 2) * delta_mcwd + / (mcwd_crit - mcwd_mean) + if mcwd_crit > 0.0 else 0.0 + ) + cpl = cpl_mcwd + cpl_rain + return cpl diff --git a/pycascades/applications/amazon/deforestation.py b/pycascades/applications/amazon/deforestation.py new file mode 100644 index 0000000..1ca7c1c --- /dev/null +++ b/pycascades/applications/amazon/deforestation.py @@ -0,0 +1,29 @@ +import numpy as np + +NUMBER_OF_CELLS = 416 + + +def random_deforestation_scenario(seed): + generator = np.random.default_rng(seed=seed) + cells = list(range(NUMBER_OF_CELLS)) + generator.shuffle(cells) + return cells + + +def soares_filho_deforestation_scenario(deforestation_values): + return list(reversed(sorted( + range(len(deforestation_values)), + key=lambda i: deforestation_values[i] + ))) + + +def east_to_west_deforestation_scenario(longitudes, seed): + indices = np.arange(len(longitudes)) + _, counts = np.unique(longitudes, return_counts=True) + grouped_indices = np.split(indices, np.cumsum(counts)[:-1]) + reversed_groups = list(grouped_indices) + + generator = np.random.default_rng(seed=seed) + cells = [generator.permutation(group) for group in reversed_groups] + + return np.concatenate(cells) diff --git a/pycascades/applications/amazon/generate.py b/pycascades/applications/amazon/generate.py new file mode 100644 index 0000000..2f72c76 --- /dev/null +++ b/pycascades/applications/amazon/generate.py @@ -0,0 +1,67 @@ +from core.system.system import network +from .amazon import amazon_double_well + +NUMBER_OF_CELLS = 416 + + +def construct_amazon( + historical_data, + current_data, + links, + coordinates, + mean_data +): + cells = [ + amazon_double_well( + map = current_data["map"][i], + mcwd = current_data["mcwd"][i], + map_crit = historical_data["map_crit"][i], + mcwd_crit = historical_data["mcwd_crit"][i], + map_mean = mean_data["map"][i], + mcwd_mean = mean_data["mcwd"][i], + ) for i in range(NUMBER_OF_CELLS) + ] + + amazon = network() + for cell in cells: + amazon.add_element(cell) + + for i in range(NUMBER_OF_CELLS): + amazon.nodes[i]['pos'] = (coordinates["lon"][i], coordinates["lat"][i]) + + #for idx, val in enumerate(np.transpose(links["delta_map"])): + # if (val[2] > 1 or links["delta_mcwd"][2, idx] > 0.1): + # amazon.add_coupling( + # from_id = int(val[1]), + # to_id = int(val[0]), + # coupling = amazon_coupling( + # delta_map = val[2], + # delta_mcwd = links["delta_mcwd"][2, idx], + # map = current_data["map"][int(val[0])], + # mcwd = current_data["mcwd"][int(val[0])], + # map_crit = historical_data["map_crit"][int(val[0])], + # mcwd_crit = historical_data["mcwd_crit"][int(val[0])], + # map_mean = mean_data["map"][int(val[0])], + # mcwd_mean = mean_data["mcwd"][int(val[0])], + # x_0 = -1.0 + # ) + # ) + for x_val in range(NUMBER_OF_CELLS): + for y_val in range(NUMBER_OF_CELLS): + if (links["delta_map"][x_val][y_val] > 1 or links["delta_mcwd"][x_val][y_val] > 0.1) and x_val != y_val: + amazon.add_coupling( + from_id = y_val, + to_id = x_val, + coupling = amazon_coupling( + delta_map = links["delta_map"][x_val][y_val], + delta_mcwd = links["delta_mcwd"][x_val][y_val], + map = current_data["map"][x_val], + mcwd = current_data["mcwd"][x_val], + map_crit = historical_data["map_crit"][x_val], + mcwd_crit = historical_data["mcwd_crit"][x_val], + map_mean = mean_data["map"][x_val], + mcwd_mean = mean_data["mcwd"][x_val], + x_0 = -1.0 + ) + ) + return amazon diff --git a/pycascades/applications/amazon/sample.py b/pycascades/applications/amazon/sample.py new file mode 100644 index 0000000..6b2c50f --- /dev/null +++ b/pycascades/applications/amazon/sample.py @@ -0,0 +1,21 @@ +import numpy as np + +NUMBER_OF_CELLS = 416 + + +def adaptation_sample(limits, seed): + beta_randomizer = 2.53 + generator = np.random.default_rng(seed=seed) + beta_sample = ( + (limits[1] - limits[0]) + * generator.beta(beta_randomizer, beta_randomizer, NUMBER_OF_CELLS) + + limits[0] + ) + return beta_sample + + +def sensitivity_sample(mean_and_std, seed): + generator = np.random.default_rng(seed=seed) + cell_sample = generator.normal(loc=mean_and_std[0], scale=mean_and_std[1]) + flow_sample = generator.normal(loc=mean_and_std[2], scale=mean_and_std[3]) + return cell_sample, flow_sample diff --git a/pycascades/applications/economic/README.md b/pycascades/applications/economic/README.md new file mode 100644 index 0000000..ab6766d --- /dev/null +++ b/pycascades/applications/economic/README.md @@ -0,0 +1,2 @@ +This directory contains old files from economic application that reduntantly defined the core classes. +If this is used in the future it needs to be updated and integrated into pycascades. diff --git a/pycascades/core/coupling_economic.py b/pycascades/applications/economic/coupling_economic.py similarity index 100% rename from pycascades/core/coupling_economic.py rename to pycascades/applications/economic/coupling_economic.py diff --git a/pycascades/core/evolve_economic.py b/pycascades/applications/economic/evolve_economic.py similarity index 100% rename from pycascades/core/evolve_economic.py rename to pycascades/applications/economic/evolve_economic.py diff --git a/pycascades/core/tipping_element_economic.py b/pycascades/applications/economic/tipping_element_economic.py similarity index 100% rename from pycascades/core/tipping_element_economic.py rename to pycascades/applications/economic/tipping_element_economic.py diff --git a/pycascades/core/tipping_network_economic.py b/pycascades/applications/economic/tipping_network_economic.py similarity index 100% rename from pycascades/core/tipping_network_economic.py rename to pycascades/applications/economic/tipping_network_economic.py diff --git a/pycascades/core/__init__.py b/pycascades/core/__init__.py index 37025f1..e69de29 100644 --- a/pycascades/core/__init__.py +++ b/pycascades/core/__init__.py @@ -1 +0,0 @@ -from . import coupling, coupling_economic, evolve_economic, evolve_sde, evolve, tipping_element, tipping_element_economic, tipping_network, tipping_network_economic \ No newline at end of file diff --git a/pycascades/core/coupling.py b/pycascades/core/coupling.py deleted file mode 100644 index 5578a9a..0000000 --- a/pycascades/core/coupling.py +++ /dev/null @@ -1,193 +0,0 @@ -"""coupling module - -Provides classes for couplings. -Note that a coupling consists of two elements. The active element (called -coupling element here) affects the passive element (called coupled -element here). -""" -import math - -class coupling: - """Abstract class for coupling of two tipping_elements - Class should not be used but rather be inherited from by concrete coupling - classes.""" - - def __init__(self): - pass - - def dxdt_cpl(self): - """Returns callable for the coupling term of dxdt.""" - return lambda t, x_from , x_to : 0 - - def jac_cpl(self): - """Returns callable for the jacobian coupling matrix element.""" - return lambda t, x_from , x_to : 0 - - def jac_diag(self): - return lambda t, x_from , x_to : 0 - - def projection(self): - return lambda t : 1 - - -class linear_coupling(coupling): - """Class for linear coupling - The coupling consists of a factor (strength) and a coupling element. - """ - - def __init__(self, strength): - """Constructor""" - coupling.__init__(self) - self._strength = strength - - def dxdt_cpl(self): - """Returns callable for the coupling term of dxdt.""" - return lambda t, x_from , x_to : self._strength * x_from - - def jac_cpl(self): - """Returns callable for the jacobian coupling matrix element.""" - return lambda t, x_from , x_to : self._strength - - def jac_diag(self): - return lambda t, x_from , x_to : 0 - - def bif_impact(self): - return lambda t, x_from , x_to : self._strength * x_from - - - -class cusp_to_hopf(coupling): - """Class for coupling """ - - def __init__(self, _from, _to, a_hopf, strength): - coupling.__init__(self, _from, _to) - self._strength = strength - self._a = a_hopf - - def dxdt_cpl(self): - """coupling""" - return lambda t, x_from, r_to : self._a*r_to*self._strength*x_from - - def jac_cpl(self): - """partial derivative of dxdt with respect to x_from""" - return lambda t, x_from, r_to : self._a*r_to*self._strength - - def jac_diag(self): - """partial derivative with respect to r_to""" - return lambda t, x_from, r_to : self._a*self._strength*x_from - - def bif_impact(self): - return lambda t, x_from, r_to : self._strength*x_from - - -class hopf_x_to_cusp(coupling): - """Class for coupling """ - - def __init__(self, _from, _to, b_hopf, strength): - """Constructor""" - coupling.__init__(self, _from, _to) - self._b = b_hopf - self._strength = strength - - def dxdt_cpl(self): - """coupling""" - return lambda t, r_from, x_to : self._strength*r_from*math.cos(self._b - *t) - - def jac_cpl(self): - """partial derivative of dxdt with respect to r_from""" - return lambda t, r_from, x_to : self._strength*math.cos(self._b*t) - - def jac_diag(self): - """partial derivative with respect to x_to""" - return lambda t, r_from, x_to : 0 - - def projection(self): - return lambda t : math.cos(self._b*t) - - def bif_impact(self): - return lambda t, r_from, x_to : self._strength*r_from*math.cos(self._b - *t) - -class hopf_y_to_cusp(coupling): - """Class for coupling """ - - def __init__(self, _from, _to, b_hopf, strength): - """Constructor""" - self._b = b_hopf - self._strength = strength - - def dxdt_cpl(self): - """coupling""" - return lambda t, r_from, x_to : self._strength*r_from*math.sin(self._b - *t) - - def jac_cpl(self): - """partial derivative of dxdt with respect to r_from""" - return lambda t, r_from, x_to : self._strength*math.sin(self._b*t) - - def jac_diag(self): - """partial derivative with respect to x_to""" - return lambda t, r_from, x_to : 0 - - def projection(self): - return lambda t : math.sin(self._b*t) - - def bif_impact(self): - return lambda t, r_from, x_to : self._strength*r_from*math.sin(self._b - *t) - -class hopf_x_to_hopf(coupling): - """Class for coupling """ - def __init__(self, _from, _to, a_to, b_from, strength): - coupling.__init__(self, _from, _to) - self._a_to = a_to - self._b_from = b_from - self._strength = strength - - def dxdt_cpl(self): - return lambda t, r_from, r_to : self._a_to*r_to*self._strength*r_from*\ - math.cos(self._b_from*t) - - def jac_cpl(self): - return lambda t, r_from, r_to : self._a_to*r_to*self._strength*\ - math.cos(self._b_from*t) - - def jac_diag(self): - return lambda t, r_from, r_to : self._a_to*self._strength*r_from*\ - math.cos(self._b_from*t) - - def projection(self): - return lambda t : math.cos(self._b_from*t) - - def bif_impact(self): - return lambda t, r_from, r_to : self._strength*r_from*\ - math.cos(self._b_from*t) - -class hopf_y_to_hopf(coupling): - """Class for coupling """ - - def __init__(self, _from, _to, a_to, b_from, strength): - coupling.__init__(self, _from, _to) - self._a_to = a_to - self._b_from = b_from - self._strength = strength - - def dxdt_cpl(self): - return lambda t, r_from, r_to: self._a_to*r_to*self._strength*r_from*\ - math.sin(self._b_from * t) - - def jac_cpl(self): - return lambda t, r_from, r_to: self._a_to*r_to*self._strength*\ - math.sin(self._b_from * t) - - def jac_diag(self): - return lambda t, r_from, r_to: self._a_to*self._strength*r_from*\ - math.sin(self._b_from * t) - - def projection(self): - return lambda t : math.sin(self._b_from * t) - - def bif_impact(self): - return lambda t, r_from, r_to : self._strength*r_from*\ - math.sin(self._b_from*t) diff --git a/pycascades/core/evolve.py b/pycascades/core/evolve.py deleted file mode 100644 index f133617..0000000 --- a/pycascades/core/evolve.py +++ /dev/null @@ -1,84 +0,0 @@ -from scipy.integrate import odeint -import numpy as np -import time - -"""evolve module""" -class NoEquilibrium(Exception): - pass - -class evolve(): - def __init__( self, tipping_network, initial_state ): - # Initialize solver - self._net = tipping_network - # Initialize state - self._times = [] - self._states = [] - - self._t = 0 - self._x = initial_state - - self.save_state( self._t, self._x ) - - def save_state( self , t, x): - """Save current state if save flag is set""" - self._times.append( t ) - self._states.append( x ) - - def get_timeseries( self ): - times = np.array ( self._times ) - states = np.array ( self._states ) - return times , states - - def _integrate( self, t_step ): - - t_span = [ self._t , self._t + t_step ] - x_init = self._x - sol = odeint( self._net.f , x_init, t_span, Dfun=self._net.jac ) - self._t = t_span[1] - self._x = sol[1] - self.save_state(self._t, self._x) - - def integrate( self, t_step, t_end ): - """Manually integrate to t_end""" - while self._times[-1] < t_end: - self._integrate( t_step ) - - def equilibrate( self, tol , t_step, t_break=None ): - """Iterate system until it is in equilibrium. - After every iteration it is checked if the system is in a stable - equilibrium""" - t0 = time.process_time() - while not self.is_equilibrium( tol ): - self._integrate( t_step ) - if t_break and (time.process_time() - t0) >= t_break: - raise NoEquilibrium( - "No equilibrium found " \ - "in " + str(t_break) + " seconds." \ - " Increase tolerance or breaktime." - ) - - def is_equilibrium( self, tol ): - """Check if the system is in an equilibrium state, e.g. if the - absolute value of all elements of f_prime is less than tolerance. - If True the state can be considered as close to a fixed point""" - n = self._net.number_of_nodes() - f = self._net.f( self._x, self._t) - fix = np.less( np.abs( f) , tol * np.ones( n )) - - if fix.all(): - return True - else: - return False - - def is_stable( self ): - """Check stability of current system state by calculating the - eigenvalues of the jacobian (all eigenvalues < 0 => stable).""" - n = self._net.number_of_nodes() - jacobian = self._net.jac( self._x, self._t) - val, vec = np.linalg.eig( jacobian ) - stable = np.less( val, np.zeros( n ) ) - - if stable.all(): - return True - else: - return False diff --git a/pycascades/core/evolve/__init__.py b/pycascades/core/evolve/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pycascades/core/evolve/evolve.py b/pycascades/core/evolve/evolve.py new file mode 100644 index 0000000..c94d24f --- /dev/null +++ b/pycascades/core/evolve/evolve.py @@ -0,0 +1,66 @@ +from scipy.integrate import solve_ivp +import numpy as np + + +def integrate( + tipping_network, + initial_state, + t_span, + t_step, + strategy = None, + **opts +): + if strategy: + sol = strategy( + tipping_network.f, + t_span, + initial_state, + opts, + ) + else: + sol = solve_ivp( + lambda t, x : tipping_network.f(x, t), + t_span, + initial_state, + t_eval=np.arange(t_span[0], t_span[1], step=t_step), + events=opts.get("events", None) + ) + return sol + + +def make_equilibrium_event(network, tol): + def event(t, x): + dxdt = network.f(x, t) + res = np.any(np.abs(dxdt) > tol) + return res + event.terminal = True + event.direction = 0 + return event + + +def is_equilibrium(f, t, x, tol): + """Check if the system is in an equilibrium state, e.g. if the + absolute value of all elements of f (f is dxdt) is less than tolerance. + If True the state can be considered as close to a fixed point""" + dxdt = f(x, t) + n = len(dxdt) + fix = np.less(np.abs(dxdt), tol * np.ones(n)) + + if fix.all(): + return True + else: + return False + + +def is_stable(jacobian, t, x): + """Check stability of current system state by calculating the + eigenvalues of the jacobian (all eigenvalues < 0 => stable).""" + jac_values = jacobian(x, t) + n = len(jac_values) + val, vec = np.linalg.eig(jac_values) + stable = np.less(val, np.zeros(n)) + + if stable.all(): + return True + else: + return False diff --git a/pycascades/core/evolve/itoint.py b/pycascades/core/evolve/itoint.py new file mode 100644 index 0000000..76d47f9 --- /dev/null +++ b/pycascades/core/evolve/itoint.py @@ -0,0 +1,53 @@ +import sdeint +import numpy as np +from scipy.stats import levy, cauchy, levy_stable + + +def itoint(f, G, y0, tspan, noise = "normal", levy_alpha = 1.5): + """ Numerically integrate the Ito equation dy = f(y,t)dt + G(y,t)dW + where y is the d-dimensional state vector, f is a vector-valued function, + G is an d x m matrix-valued function giving the noise coefficients and + dW(t) = (dW_1, dW_2, ... dW_m) is a vector of independent Wiener increments + Args: + f: callable(y,t) returning a numpy array of shape (d,) + Vector-valued function to define the deterministic part of the system + G: callable(y,t) returning a numpy array of shape (d,m) + Matrix-valued function to define the noise coefficients of the system + y0: array of shape (d,) giving the initial state vector y(t==0) + tspan (array): The sequence of time points for which to solve for y. + These must be equally spaced, e.g. np.arange(0,10,0.005) + tspan[0] is the intial time corresponding to the initial state y0. + Returns: + y: array, with shape (len(tspan), len(y0)) + With the initial value y0 in the first row + Raises: + SDEValueError + """ + # In future versions we can automatically choose here the most suitable + # Ito algorithm based on properties of the system and noise. + (d, m, f, G, y0, tspan, __, __) = sdeint.integrate._check_args( + f, + G, + y0, + tspan, + None, + None + ) + N = len(tspan) + h = (tspan[N - 1] - tspan[0]) / (N - 1) # assuming equal time steps + if noise == "levy": + dW = ( + levy.rvs(0., 1e-11, (N - 1, m)) + + np.random.normal(0., np.sqrt(h), (N - 1, m)) + ) + elif noise == "levy_stable": + dW = ( + (h ** (1 / levy_alpha)) + * levy_stable.rvs(levy_alpha, 0.0, (N - 1, m)) + ) + elif noise == "cauchy": + dW = cauchy.rvs(0., 1e-4, (N - 1, m)) + else: + dW = None + chosenAlgorithm = sdeint.integrate.itoSRI2 + return chosenAlgorithm(f, G, y0, tspan, dW = dW) diff --git a/pycascades/core/evolve/semi_impl_euler_maruyama_alphastable_sde.py b/pycascades/core/evolve/semi_impl_euler_maruyama_alphastable_sde.py new file mode 100644 index 0000000..abd59d8 --- /dev/null +++ b/pycascades/core/evolve/semi_impl_euler_maruyama_alphastable_sde.py @@ -0,0 +1,145 @@ +from numba import jit +from scipy.stats import levy_stable +import numpy as np +import warnings + + +def gen_levy_noise_preproc(alpha, sigma, dt, n = 1): + if not isinstance(alpha, np.ndarray): + if not isinstance(alpha, list): + alpha = [alpha] + alpha = np.array(alpha) + if len(alpha) < n: + alpha = np.repeat(alpha, n // len(alpha) + 1)[:n] + if not isinstance(sigma, np.ndarray): + if not isinstance(sigma, list): + sigma = [sigma] + sigma = np.array(sigma) + if len(sigma) < n: + sigma = np.repeat(sigma, n // len(sigma) + 1)[:n] + return alpha, sigma, dt, n + + +@jit(nopython = True) +def semi_impl_euler_maruyama_alphastable_sde_nb_loop( + n, N, x, xs, t, ts, dt_scaled, coupl, c, L, dt +): + for i in range(1, N): + x_new = x.copy() + + transp = (coupl @ x) + for j in range(n): + if (not np.isnan(x[j])) and (not np.isinf(x[j])): + candidates = np.roots(np.array( + [ + dt_scaled[j], + 0.0, + 1.0 - dt_scaled[j], + - x[j] - (c[j] + transp[j]) * dt_scaled[j] + ] + ).astype(np.complex128)) + if (np.abs(candidates.imag) < 1e-5).sum() == 1: + drift = ( + candidates[np.abs(candidates.imag) < 1e-5][0] + ).real + else: + best_idx = np.argmin(np.abs(candidates - x[j])) + drift = (candidates[best_idx]).real + else: + drift = x[j] + + x_new[j] = drift + L[j, i] + + # x2 = x1 + (-x2^3 + x2 + c)*dt/taos + + t += dt + ts[i] = t + x = x_new # .copy() + xs[i, :] = x + return ts, xs + + +def semi_impl_euler_maruyama_alphastable_sde( + x0 = [-1.0, -1.0, -1.0], + dt = 0.1, + cs = [0.0, 0.3, 0.4], + taos = [1.0, 1.0, 1.0], + t_end = 1000, + alphas = [1.5, 1.5, 1.5], + sigmas = [0.0, 0.0, 0.1], + coupl = np.array([[0.0, 0.1, 0.1], [-0.1, 0.0, 0.2], [0.0, -0.1, 0.0]]), + rng = None +): + if any(alphas) < 0.1: + warnings.warn( + """The CMS algorithm for generating levy-stable noise is not + reliable for alphas < 0.1. The implementation provided here + truncates large noise values above +-1e12 and sets any + nans to 0.""" + ) + + x0 = np.array(x0, dtype="float").flatten() + taos = np.array(taos, dtype="float").flatten() + cs = np.array(cs, dtype="float").flatten() + alphas = np.array(alphas, dtype="float").flatten() + sigmas = np.array(sigmas, dtype="float").flatten() + coupl = np.array(coupl, dtype="float") + + alphas, sigmas, dt_scaled, n = gen_levy_noise_preproc( + alphas, sigmas, dt / (taos + 1e-6), n = len(x0) + ) + + x = x0.copy() + N = int(t_end // dt) + 1 + xs = np.zeros((N, n)) + xs[0, :] = x + t = 0 + ts = np.zeros(N) + + L = np.zeros((n, N)) + for i in range(n): + if sigmas[i] > 0: + L[i, :] = ( + sigmas[i] + * (dt_scaled[i] ** (1 / alphas[i])) + * levy_stable.rvs(alphas[i], 0.0, size=N, random_state = rng) + ) + L[np.abs(L) > 1e12] = (np.sign(L) * 1e12)[np.abs(L) > 1e12] + L[np.isinf(L)] = (np.sign(L) * 1e12)[np.isinf(L)] + L[np.isnan(L)] = 0.0 + + ts, xs = semi_impl_euler_maruyama_alphastable_sde_nb_loop( + n, N, x, xs, t, ts, dt_scaled, coupl, cs, L, dt + ) + return ts, xs, rng + + +def get_params_from_es_network(net): + + n_nodes = net.number_of_nodes() + + cs = np.zeros(n_nodes) + taos = np.zeros(n_nodes) + coupl = np.zeros((n_nodes, n_nodes)) + + for i in range(n_nodes): + + node = net.nodes[i] + pars = node["data"].get_par() + taos[i] = 1 / pars["b"] + cs[i] = pars["c"] * taos[i] + + in_idxs = [e[0] for e in list(net.in_edges(i))] + for j in in_idxs: + if hasattr(net.get_edge_data(j, i)["data"], "_x_0"): + x0 = net.get_edge_data(j, i)["data"]._x_0 + else: + x0 = 0.0 + + d = taos[i] * net.get_edge_data(j, i)["data"]._strength + + coupl[i, j] = d + + cs[i] += -x0 * d + + return cs, taos, coupl diff --git a/pycascades/core/evolve_sde.py b/pycascades/core/evolve_sde.py deleted file mode 100644 index b408e93..0000000 --- a/pycascades/core/evolve_sde.py +++ /dev/null @@ -1,315 +0,0 @@ -from scipy.integrate import odeint -import numpy as np -import time -import sdeint -from scipy.stats import levy, cauchy, levy_stable -from numba import jit -import warnings - -"""evolve module""" -class NoEquilibrium(Exception): - pass - - - - -def gen_levy_noise_preproc(alpha, sigma, dt, n = 1): - if not isinstance(alpha, np.ndarray): - if not isinstance(alpha, list): - alpha = [alpha] - alpha = np.array(alpha) - if len(alpha) < n: - alpha = np.repeat(alpha, n//len(alpha) + 1)[:n] - if not isinstance(sigma, np.ndarray): - if not isinstance(sigma, list): - sigma = [sigma] - sigma = np.array(sigma) - if len(sigma) < n: - sigma = np.repeat(sigma, n//len(sigma) + 1)[:n] - return alpha, sigma, dt, n - - - -@jit(nopython = True) -def semi_impl_euler_maruyama_alphastable_sde_nb_loop(n, N, x, xs, t, ts, dt_scaled, coupl, c, L, dt): - for i in range(1,N): - x_new = x.copy() - - transp = (coupl @ x) - - for j in range(n): - if (not np.isnan(x[j])) and (not np.isinf(x[j])): - candidates = np.roots(np.array([dt_scaled[j], 0.0, 1.0 - dt_scaled[j], - x[j] - (c[j] + transp[j]) * dt_scaled[j]]).astype(np.complex128)) - if (np.abs(candidates.imag)<1e-5).sum() == 1: - drift = (candidates[np.abs(candidates.imag)<1e-5][0]).real - else: - best_idx = np.argmin(np.abs(candidates - x[j])) - drift = (candidates[best_idx]).real - else: - drift = x[j] - - x_new[j] = drift + L[j, i] - - # x2 = x1 + (-x2^3 + x2 + c)*dt/taos - - t += dt - ts[i] = t - x = x_new#.copy() - xs[i,:] = x - - return ts, xs - - -def semi_impl_euler_maruyama_alphastable_sde(x0 = [-1.0, -1.0, -1.0], dt = 0.1, cs = [0.0, 0.3, 0.4], taos = [1.0, 1.0, 1.0], t_end = 1000, alphas = [1.5, 1.5, 1.5], sigmas = [0.0, 0.0, 0.1], coupl = np.array([[0.0, 0.1, 0.1], [-0.1, 0.0, 0.2], [0.0, -0.1, 0.0]]), rng = None): - - x0 = np.array(x0, dtype="float").flatten() - taos = np.array(taos, dtype="float").flatten() - cs = np.array(cs, dtype="float").flatten() - alphas = np.array(alphas, dtype="float").flatten() - sigmas = np.array(sigmas, dtype="float").flatten() - coupl = np.array(coupl, dtype="float") - - alphas, sigmas, dt_scaled, n = gen_levy_noise_preproc(alphas, sigmas, dt / (taos + 1e-6), n = len(x0)) - - x = x0.copy() - N = int(t_end // dt) + 1 - xs = np.zeros((N,n)) - xs[0,:] = x - t = 0 - ts = np.zeros(N) - - L = np.zeros((n, N)) - for i in range(n): - if sigmas[i] > 0: - L[i,:] = sigmas[i] * (dt_scaled[i] ** (1/alphas[i])) * levy_stable.rvs(alphas[i], 0.0, size=N, random_state = rng) - - L[np.abs(L) > 1e12] = (np.sign(L) * 1e12)[np.abs(L) > 1e12] - L[np.isinf(L)] = (np.sign(L) * 1e12)[np.isinf(L)] - L[np.isnan(L)] = 0.0 - - ts, xs = semi_impl_euler_maruyama_alphastable_sde_nb_loop(n, N, x, xs, t, ts, dt_scaled, coupl, cs, L, dt) - - return ts, xs, rng - - - -def itoint(f, G, y0, tspan, noise = "normal", levy_alpha = 1.5): - """ Numerically integrate the Ito equation dy = f(y,t)dt + G(y,t)dW - where y is the d-dimensional state vector, f is a vector-valued function, - G is an d x m matrix-valued function giving the noise coefficients and - dW(t) = (dW_1, dW_2, ... dW_m) is a vector of independent Wiener increments - Args: - f: callable(y,t) returning a numpy array of shape (d,) - Vector-valued function to define the deterministic part of the system - G: callable(y,t) returning a numpy array of shape (d,m) - Matrix-valued function to define the noise coefficients of the system - y0: array of shape (d,) giving the initial state vector y(t==0) - tspan (array): The sequence of time points for which to solve for y. - These must be equally spaced, e.g. np.arange(0,10,0.005) - tspan[0] is the intial time corresponding to the initial state y0. - Returns: - y: array, with shape (len(tspan), len(y0)) - With the initial value y0 in the first row - Raises: - SDEValueError - """ - # In future versions we can automatically choose here the most suitable - # Ito algorithm based on properties of the system and noise. - (d, m, f, G, y0, tspan, __, __) = sdeint.integrate._check_args(f, G, y0, tspan, None, None) - N = len(tspan) - h = (tspan[N-1] - tspan[0])/(N - 1) # assuming equal time steps - if noise == "levy": - dW = levy.rvs(0., 1e-11, (N-1, m))+np.random.normal(0., np.sqrt(h), (N-1, m)) - elif noise == "levy_stable": - dW = (h ** (1/levy_alpha)) * levy_stable.rvs(levy_alpha, 0.0, (N-1, m))#+np.random.normal(0., np.sqrt(h), (N-1, m)) - elif noise == "cauchy": - dW = cauchy.rvs(0., 1e-4, (N-1, m)) - else: - dW = None - chosenAlgorithm = sdeint.integrate.itoSRI2 - return chosenAlgorithm(f, G, y0, tspan, dW = dW) - -def get_params_from_es_network(net): - - n_nodes = net.number_of_nodes() - - cs = np.zeros(n_nodes) - taos = np.zeros(n_nodes) - coupl = np.zeros((n_nodes, n_nodes)) - - for i in range(n_nodes): - - node = net.nodes[i] - pars = node["data"].get_par() - taos[i] = 1 / pars["b"] - cs[i] = pars["c"] * taos[i] - - in_idxs = [e[0] for e in list(net.in_edges(i))] - for j in in_idxs: - - if hasattr(net.get_edge_data(j,i)["data"], "_x_0"): - x0 = net.get_edge_data(j,i)["data"]._x_0 - else: - x0 = 0.0 - - d = taos[i] * net.get_edge_data(j,i)["data"]._strength - - coupl[i,j] = d - - cs[i] += -x0 * d - - - return cs, taos, coupl - - -class evolve(): - def __init__( self, tipping_network, initial_state ): - # Initialize solver - - self._all_cusp = all([n == "cusp" for n in tipping_network.get_node_types()]) - self._all_linear_coupl = all([tipping_network.get_edge_data(e[0], e[1])["data"].__class__.__name__ in ["linear_coupling_earth_system", "linear_coupling"] for e in tipping_network.edges]) - - if self._all_cusp and self._all_linear_coupl: - # get c, taos, coupl - self._cs, self._taos, self._coupl = get_params_from_es_network(tipping_network) - - - self._net = tipping_network - # Initialize state - self._times = [] - self._states = [] - - self._t = 0 - self._x = initial_state - - self.save_state( self._t, self._x ) - - self._rng = None - - def save_state( self , t, x): - """Save current state if save flag is set""" - self._times.append( t ) - self._states.append( x ) - - def get_timeseries( self ): - times = np.array ( self._times ) - states = np.array ( self._states ) - return [times , states] - - def _integrate_sde( self, t_step, sigma=None, noise = "normal"): - - t_span = [ self._t , self._t + t_step ] - x_init = self._x - - diffusion = lambda x,t: sigma - sol=itoint(self._net.f,diffusion,x_init,t_span, noise = noise) - self._t = t_span[1] - - self._x = sol[1] - self.save_state(self._t, self._x) - - def _integrate_ode( self, t_step): - - t_span = [ self._t , self._t + t_step ] - x_init = self._x - - sol = odeint( self._net.f , x_init, t_span, Dfun=self._net.jac ) - - self._t = t_span[1] - - self._x = sol[1] - - self.save_state(self._t, self._x) - - def _integrate_duffing_sde(self, dt, t_end, alphas, sigmas, rng = None): - - if any(alphas) < 0.1: - warnings.warn("The CMS algorithm for generating levy-stable noise is not reliable for alphas < 0.1. The implementation provided here truncates large noise values above +-1e12 and sets any nans to 0.") - - - x0 = self._x - cs = self._cs - taos = self._taos - coupl = self._coupl - - ts, xs, rng = semi_impl_euler_maruyama_alphastable_sde(x0 = x0, dt = dt, cs = cs, taos = taos, t_end = t_end, alphas = alphas, sigmas = sigmas, coupl = coupl, rng = rng) - - self._times = ts.tolist() - self._states = xs.tolist() - self._t = self._times[-1] - self._x = self._states[-1] - self._rng = rng - - - def integrate( self, t_step, t_end, sigmas = None , noise = "normal", alphas = None, seed = None): - """Manually integrate to t_end""" - - if sigmas is None: - while self._times[-1] < t_end: - self._integrate_ode( t_step ) - elif self._all_cusp and self._all_linear_coupl: - if (noise == "normal") and (alphas is None): - alphas = [2.0 for _ in range(len(self._x))] - elif alphas is None: - raise NotImplementedError - - if self._rng is None: - rng = np.random.RandomState(seed) - else: - rng = self._rng - - self._integrate_duffing_sde(t_step, t_end, alphas = alphas, sigmas = sigmas, rng = rng) - else: - while self._times[-1] < t_end: - self._integrate_sde( t_step, sigmas, noise = noise) - - def equilibrate( self, tol , t_step, t_break=None,sigma=None ): - """Iterate system until it is in equilibrium. - After every iteration it is checked if the system is in a stable - equilibrium""" - t0 = time.process_time() - - if sigma is None: - while not self.is_equilibrium( tol ): - self._integrate_ode( t_step,sigma ) - if t_break and (time.process_time() - t0) >= t_break: - raise NoEquilibrium( - "No equilibrium found " \ - "in " + str(t_break) + " seconds." \ - " Increase tolerance or breaktime." - ) - else: - while not self.is_equilibrium( tol ): - self._integrate_sde( t_step,sigma ) - if t_break and (time.process_time() - t0) >= t_break: - raise NoEquilibrium( - "No equilibrium found " \ - "in " + str(t_break) + " seconds." \ - " Increase tolerance or breaktime." - ) - - def is_equilibrium( self, tol ): - """Check if the system is in an equilibrium state, e.g. if the - absolute value of all elements of f (f is x_dot) is less than tolerance. - If True the state can be considered as close to a fixed point""" - n = self._net.number_of_nodes() - f = self._net.f( self._x, self._t) - fix = np.less( np.abs(f) , tol * np.ones( n )) - - if fix.all(): - return True - else: - return False - - def is_stable( self ): - """Check stability of current system state by calculating the - eigenvalues of the jacobian (all eigenvalues < 0 => stable).""" - n = self._net.number_of_nodes() - jacobian = self._net.jac( self._x, self._t) - val, vec = np.linalg.eig( jacobian ) - stable = np.less( val, np.zeros( n ) ) - - if stable.all(): - return True - else: - return False diff --git a/pycascades/core/system/coupling.py b/pycascades/core/system/coupling.py new file mode 100644 index 0000000..53db909 --- /dev/null +++ b/pycascades/core/system/coupling.py @@ -0,0 +1,54 @@ +import math + + +class linear_coupling(): + sizes = (1, 1) + + def __init__(self, strength): + self._strength = strength + + def f(self, t, x_from, x_to): + return self._strength * x_from + + +class multiplicative_coupling(): + sizes = (1, 1) + + def __init__(self, strength): + self._strength = strength + + def f(self, t, x_from, x_to): + return self._strength * x_from * x_to + + +class hopf_to_cusp(): + sizes = (1, 1) + + def __init__(self, strength, frequency, shift): + self._strength = strength + self._frequency = frequency + self._shift = shift + + def f(self, t, x_from, x_to): + return ( + self._strength + * x_from + * math.sin(self._frequency * t + self._shift) + ) + + +class hopf_to_hopf(): + sizes = (1, 1) + + def __init__(self, strength, frequency, shift): + self._strength = strength + self._frequency = frequency + self._shift = shift + + def f(self, t, x_from, x_to): + return ( + self._strength + * x_to + * x_from + * math.sin(self._frequency * t + self._shift) + ) diff --git a/pycascades/core/system/system.py b/pycascades/core/system/system.py new file mode 100644 index 0000000..926087a --- /dev/null +++ b/pycascades/core/system/system.py @@ -0,0 +1,90 @@ +import numpy as np +import abc + + +class system(metaclass=abc.ABCMeta): + @classmethod + def __subclasshook__(cls, subclass): + return ( + hasattr(subclass, 'size') + and callable(subclass.size) + and hasattr(subclass, 'f') + and callable(subclass.f) + or NotImplemented + ) + + @abc.abstractmethod + def size(self): + raise NotImplementedError + + @abc.abstractmethod + def f(self, x, t): + raise NotImplementedError + + +class network(system): + def __init__(self): + self._elements = [] + self._couplings = [] + + def size(self): + return np.sum([element.size() for element in self._elements]) + + def add_element(self, element): + self._elements.append(element) + + def add_coupling(self, from_coupling, to_coupling, coupling): + if ( + self._elements[from_coupling].size() != coupling.sizes[0] + or self._elements[to_coupling].size() != coupling.sizes[1] + ): + raise Exception("Coupling not possible!") + self._couplings.append((from_coupling, to_coupling, coupling)) + + def f(self, x, t): + matrix = np.zeros((self.size(), self.size())) + for cpl in self._couplings: + i, j, val = cpl + matrix[i, j] = val.f(t, x[j], x[i]) + diagonal = np.diag( + [ + element.f(x[idx], t) + for idx, element + in enumerate(self._elements) + ] + ) + matrix = matrix + diagonal + return np.add.reduce(matrix, axis=1) + + +class double_fold(system): + def __init__(self, a=-1, b=1, c=lambda t: 0, x_0=0.0): + self._par = {} + self._par['a'] = a + self._par['b'] = b + self._par['c'] = c + self._par['x_0'] = x_0 + + def size(self): + return 1 + + def f(self, x, t): + return np.array( + self._par['a'] * pow(x - self._par['x_0'], 3) + + self._par['b'] * (x - self._par['x_0']) + + self._par['c'].__call__(t) + ) + + +class pitchfork(system): + """Can also be used as polar representation of hopf""" + + def __init__(self, a, c): + self._par['a'] = a + self._par['c'] = c + + def size(self): + return 1 + + def f(self, x, t): + return np.array((self._par['c'] - pow(x, 2)) * x * self._par['a']) diff --git a/pycascades/core/tipping_element.py b/pycascades/core/tipping_element.py deleted file mode 100644 index e73ab56..0000000 --- a/pycascades/core/tipping_element.py +++ /dev/null @@ -1,129 +0,0 @@ -"""tipping_element module - -Provides classes for tipping_element objects -""" -import numpy as np - -class tipping_element: - """Abstract tipping_element class - This class provides the interface for tipping_element classes. - It should not be used but rather inherited from by the concrete - tipping_element classes. - """ - - def __init__(self): - """Constructor""" - self._type = None - self._par = {} - - """dx/dt and jacobian diagonal element of tipping element. - This method should be overwritten from the - concrete tipping_element classes to implement - the special form of the tipping element. - """ - - def get_type(self): - return self._type - - def get_par(self): - return self._par - - def set_par(self, key, val): - self._par[key] = val - - def dxdt_diag(self): - """dx/dt diagonal element of tipping element. - This method should be overwritten from the - concrete tipping_element classes to implement - the special form of the tipping element. - """ - return lambda t, x : 0 - - def jac_diag(self): - """jacobian diagonal element of tipping element. - This method should be overwritten from the - concrete tipping_element classes to implement - the special form of the tipping element. - """ - return lambda t, x : 0 - - def tip_state(self): - return lambda x : 0 - -class cusp(tipping_element): - """Concrete class for cusp-like tipping element""" - def __init__(self, a = -4, b = 1, c = 0, x_0 = 0.5 ): - """Constructor with additional parameters for cusp""" - super().__init__() - self._type = 'cusp' - self._par['a'] = a - self._par['b'] = b - self._par['c'] = c - self._par['x_0'] = x_0 - - def dxdt_diag(self): - """returns callable of dx/dt diagonal element of cusp""" - return lambda t, x : self._par['a'] * pow(x - self._par['x_0'],3) \ - + self._par['b'] * (x - self._par['x_0']) \ - + self._par['c'] - - def jac_diag(self): - """returns callable jacobian diagonal element of cusp.""" - return lambda t, x : 3 * self._par['a'] * pow(x - self._par['x_0'],2) \ - + self._par['b'] - - def tip_state(self): - return lambda x : x > self._par['x_0'] - -class realistic_cusp(cusp): - """Class for cusp-like tipping elements with realistic parameters""" - def __init__(self, timescale, x_tuple, rho_tuple, rho_init ): - b = 1/timescale - x_0 = (x_tuple[0] + x_tuple[1]) / 2 - a = - 4 * b / pow(x_tuple[1] - x_tuple[0], 2) - - self._rho_tuple = rho_tuple - self._tip_width = 2 * np.sqrt(-4 * pow(b, 3) / (27 * a) ) - - super().__init__( a = a, b = b, c = 0, x_0 = x_0) - self._par['rho'] = rho_init - self._update_par() - - def set_par(self, key, val): - if key == 'c': - raise ValueError("c is bounded to the control parameter rho!") - self._par[key] = val - self._update_par() - - def _update_par(self): - rho1 = self._rho_tuple[0] - rho2 = self._rho_tuple[1] - width = self._tip_width - rho = self._par['rho'] - self._par['c'] = width / (rho2 - rho1) * (rho - (rho1 + rho2) / 2) - -class hopf(tipping_element): - """Concrete class for tipping_elements following the dynamics of a - Hopfbifurcation. - Implementation using a representation with polar coordinates: - dr/dt=(bif_par-r^2)*r*a, dphi/dt=b (time-dependence of angle)""" - - def __init__(self, a, c): - """Constructor with additional parameters for (half a) Hopf - element""" - super().__init__() - self._type = 'hopf' - self._par['a'] = a - self._par['c'] = c - - def dxdt_diag(self): - """returns callable of dx/dt diagonal element of Hopf element""" - return lambda t, r: ( self._par['c'] - pow(r,2) ) * r * self._par['a'] - - def jac_diag(self): - """returns callable jacobian diagonal element of Hopf""" - return lambda t, r: self._par['a'] * self._par['c'] - \ - self._par['a'] * 3 * pow(r,2) - - def tip_state(self): - return lambda x: self._par['c'] > 0 diff --git a/pycascades/core/tipping_network.py b/pycascades/core/tipping_network.py deleted file mode 100644 index eaa4215..0000000 --- a/pycascades/core/tipping_network.py +++ /dev/null @@ -1,99 +0,0 @@ -import networkx as nx -import numpy as np -from copy import deepcopy - -class tipping_network(nx.DiGraph): - - def __init__( self, incoming_graph_data=None, **attr): - nx.DiGraph.__init__( self, incoming_graph_data=None, **attr) - - def add_element( self, tipping_element ): - tipping_element = deepcopy(tipping_element) - ind = self.number_of_nodes() - super().add_node( ind, data = tipping_element ) - self.nodes[ind]['lambda_f'] = tipping_element.dxdt_diag() - self.nodes[ind]['lambda_jac'] = tipping_element.jac_diag() - - def add_coupling( self, from_id, to_id, coupling): - coupling = deepcopy(coupling) - super().add_edge( from_id, to_id, data = coupling) - self[from_id][to_id]['lambda_f'] = coupling.dxdt_cpl() - self[from_id][to_id]['lambda_jac'] = coupling.jac_cpl() - self[from_id][to_id]['lambda_jac_diag'] = coupling.jac_diag() - - def set_param( self, node_id, key, val ): - element = self.nodes[node_id]['data'] - element.set_par( key, val) - self.nodes[node_id]['lambda_f'] = self.nodes[node_id]['data'].dxdt_diag() - self.nodes[node_id]['lambda_jac'] = self.nodes[node_id]['data'].jac_diag() - - def get_tip_states( self, x): - tipped = [self.nodes[i]['data'].tip_state()(x[i]) for i in self.nodes()] - return np.array( tipped ) - - def get_node_types( self ): - type_list = [self.nodes[i]['data'].get_type() for i in self.nodes()] - return type_list - - def get_number_tipped( self, x): - return np.count_nonzero( self.get_tip_states( x ) ) - - def f( self, x, t): - f = np.zeros( self.number_of_nodes() ) - for node in self.nodes(data=True): - ind = node[0] - x_comp = x[ind] - f[ind] = node[1]['lambda_f'].__call__( t, x_comp) - for edge in self.edges(data=True): - from_id = edge[0] - to_id = edge[1] - lmd = edge[2]['lambda_f'] - f[to_id] += lmd.__call__( t, x[from_id], x[to_id]) - return f - - def jac(self, x, t): - jac = np.zeros((self.number_of_nodes(), self.number_of_nodes())) - for node in self.nodes(data=True): - ind = node[0] - x_comp = x[ind] - jac[ind,ind] = node[1]['lambda_jac'].__call__( t, x_comp) - for edge in self.edges(data=True): - from_id = edge[0] - to_id = edge[1] - lmd = edge[2]['lambda_jac'] - jac[to_id, from_id] = lmd.__call__( t, x[from_id], x[to_id] ) - lmd_diag = edge[2]['lambda_jac_diag'] - jac[to_id, to_id] += lmd_diag.__call__( t, x[from_id], x[to_id] ) - return jac - - def set_vulnerability(self, node_id, bool_val): - self.nodes[node_id]["vulnerable"] = bool_val - - def get_vulnerability_network(self): - G = nx.Graph() - for node in self.nodes(): - G.add_node(node) - G.nodes[node]["vulnerable"] = self.nodes[node]["vulnerable"] - for edge in self.edges(): - if self.nodes[edge[0]]["vulnerable"] and self.nodes[edge[1]]["vulnerable"]: - G.add_edge(edge[0],edge[1]) - return G - - def get_out_component_size(self, from_id): - out_component_size = -1 - for node in self.nodes(): - if nx.has_path(self, from_id, node): - out_component_size += 1 - return out_component_size - - def compute_impact_matrix(self): - n = self.number_of_nodes() - impact_matrix = [[lambda t, x1, x2: 0 for j in range(n)] for i in range(n)] - for edge in self.edges.data(): - print(edge[2]['data'].bif_impact()) - impact_matrix[edge[1]][edge[0]]=edge[2]['data'].bif_impact() - # if self.get_node_types()[edge[1]]=='cusp': - # impact_matrix[edge[1]][edge[0]]=edge['data'].dxdt_cpl() - # elif self.get_node_types()[edge[1]]=='hopf': - # impact_matrix[edge[1]][edge[0]]=edge['data'] - return impact_matrix diff --git a/pycascades/earth_system/__init__.py b/pycascades/earth_system/__init__.py deleted file mode 100644 index 71e3b67..0000000 --- a/pycascades/earth_system/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -from . import earth, functions_earth_system, timing, tipping_network_earth_system - -from pycascades.earth_system.earth import Earth_System -from pycascades.earth_system.timing import Timing - diff --git a/pycascades/earth_system/earth.py b/pycascades/earth_system/earth.py deleted file mode 100644 index ecc6d56..0000000 --- a/pycascades/earth_system/earth.py +++ /dev/null @@ -1,86 +0,0 @@ -import numpy as np -# private imports from sys.path -from pycascades.core.coupling import coupling -from pycascades.core.tipping_element import cusp -from pycascades.earth_system.tipping_network_earth_system import tipping_network -from pycascades.earth_system.functions_earth_system import global_functions - -""" -Here the Earth system network is defined after Kriegler et al., 2009 -""" - -class linear_coupling_earth_system(coupling): - - def __init__(self, strength, x_0): - coupling.__init__(self) - self._strength = strength - self._x_0 = x_0 - - def dxdt_cpl(self): - return lambda t, x_from, x_to: self._strength * (x_from - self._x_0) - - def jac_cpl(self): - return lambda t, x_from, x_to: self._strength - - def jac_diag(self): - return lambda t, x_from, x_to: 0 - - def bif_impact(self): - return lambda t, x_from, x_to: self._strength * (x_from - self._x_0) - - -class Earth_System(): - def __init__(self, gis_time, thc_time, wais_time, amaz_time, limits_gis, limits_thc, limits_wais, limits_amaz, - pf_wais_to_gis, pf_thc_to_gis, pf_gis_to_thc, pf_wais_to_thc, pf_gis_to_wais, pf_thc_to_wais, pf_thc_to_amaz): - #timescales - self._gis_time = gis_time - self._thc_time = thc_time - self._wais_time = wais_time - self._amaz_time = amaz_time - - #tipping limits - self._limits_gis = limits_gis - self._limits_thc = limits_thc - self._limits_wais = limits_wais - self._limits_amaz = limits_amaz - - #probability fractions - self._pf_wais_to_gis = pf_wais_to_gis - self._pf_thc_to_gis = pf_thc_to_gis - self._pf_gis_to_thc = pf_gis_to_thc - self._pf_wais_to_thc = pf_wais_to_thc - self._pf_gis_to_wais = pf_gis_to_wais - self._pf_thc_to_wais = pf_thc_to_wais - self._pf_thc_to_amaz = pf_thc_to_amaz - - """ - you must provide this method with a global mean temperature, a coupling strength and - an integer (-1, 0, +1) for the network type that you want to invoke, i.e. kk0, kk1 and kk2 must be -1, 0 or +1 - """ - def earth_network(self, effective_GMT, strength, kk0, kk1): - gis = cusp(a=-1 / self._gis_time, b=1 / self._gis_time, c=(1 / self._gis_time) * global_functions.CUSPc(0., self._limits_gis, effective_GMT), x_0=0.0) - thc = cusp(a=-1 / self._thc_time, b=1 / self._thc_time, c=(1 / self._thc_time) * global_functions.CUSPc(0., self._limits_thc, effective_GMT), x_0=0.0) - wais = cusp(a=-1 / self._wais_time, b=1 / self._wais_time, c=(1 / self._wais_time) * global_functions.CUSPc(0., self._limits_wais, effective_GMT), x_0=0.0) - amaz = cusp(a=-1 / self._amaz_time, b=1 / self._amaz_time, c=(1 / self._amaz_time) * global_functions.CUSPc(0., self._limits_amaz, effective_GMT), x_0=0.0) - - # set up network - net = tipping_network() - net.add_element(gis) - net.add_element(thc) - net.add_element(wais) - net.add_element(amaz) - - - ######################################Set edges to active state##################################### - net.add_coupling(1, 0, linear_coupling_earth_system(strength=-(1 / self._gis_time) * strength * self._pf_thc_to_gis, x_0=-1)) - net.add_coupling(2, 0, linear_coupling_earth_system(strength=(1 / self._gis_time) * strength * self._pf_wais_to_gis, x_0=-1)) - - net.add_coupling(0, 1, linear_coupling_earth_system(strength=(1 / self._thc_time) * strength * self._pf_gis_to_thc, x_0=-1)) - net.add_coupling(2, 1, linear_coupling_earth_system(strength=(1 / self._thc_time) * strength * self._pf_wais_to_thc * kk0, x_0=-1)) - - net.add_coupling(0, 2, linear_coupling_earth_system(strength=(1 / self._wais_time) * strength * self._pf_gis_to_wais, x_0=-1)) - net.add_coupling(1, 2, linear_coupling_earth_system(strength=(1 / self._wais_time) * strength * self._pf_thc_to_wais, x_0=-1)) - - net.add_coupling(1, 3, linear_coupling_earth_system(strength=(1 / self._amaz_time) * strength * self._pf_thc_to_amaz * kk1, x_0=-1)) - - return net diff --git a/pycascades/earth_system/functions_earth_system.py b/pycascades/earth_system/functions_earth_system.py deleted file mode 100644 index 4a2e595..0000000 --- a/pycascades/earth_system/functions_earth_system.py +++ /dev/null @@ -1,45 +0,0 @@ -import numpy as np - -""" -Here all global functions are stored - the functions are up to "choice": Here, linear functions are used -""" - - -class global_functions(): - """ - Linear feedback function to compute feedbacks. Maximal feedback is obtained from 2.0°C onwards. - feedbacks for Arctic summer sea ice, mountain glaciers, GIS and WAIS are proven to be constant also for higher temperatures - feedbacks for Amazon and feedbacks_steffen are computed for a temperature increase of 2.0°C until 2100, see paper - """ - def feedback_function(GMT, fbmax): - # fbmax = maximal feedback - # only returns a value in case GMT is higher than lower boundary of the respective tipping element, otherwise return 0.0 (lower cap), N.B.: No upper cap - if GMT <= 2.0: - y = (fbmax / 2.0) * GMT - return y - elif GMT > 2.0: - return fbmax - else: - raise Exception("GMT negativ: Feedbacks do not work for temperatures smaller 0!") - - # feedbacks of state dependent variables, linear increase of feedbacks between state -1 and +1 for GIS, WAIS, THC, NINO and AMAZ - def state_feedback(state, fbmax): - if state >= -1 and state <= 1: - y = fbmax / 2 * (state + 1) - elif state < -1: - y = 0. - elif state > +1: - y = fbmax - return y - - # c = c(GMT) where tipping occurs at sqrt(4/27) ~ 0.38 - # Linear function through two points maps GMT --> c, where x-values represent GMT and y-values represent CUSP-c values - def CUSPc(x1, x2, x): - # only returns a value in case GMT is higher than lower boundary of the respective tipping element, otherwise return 0.0 (lower cap), N.B.: No upper cap - if x >= x1: - y1 = 0.0 - y2 = np.sqrt(4 / 27) - y = (y2 - y1) / (x2 - x1) * (x - x1) + y1 - return y - else: - return 0.0 \ No newline at end of file diff --git a/pycascades/earth_system/timing.py b/pycascades/earth_system/timing.py deleted file mode 100644 index 6343c4d..0000000 --- a/pycascades/earth_system/timing.py +++ /dev/null @@ -1,75 +0,0 @@ -""" -Timing module: This module computes the conversion factor -between one year in the simulation and one "real" year depending on the tipping time scale of the Amazon rainforest -""" - - -import numpy as np -from pycascades.core.tipping_element import cusp -from pycascades.core.evolve import evolve -from pycascades.earth_system.functions_earth_system import global_functions -from pycascades.earth_system.tipping_network_earth_system import tipping_network - - -class Timing(): - - def __init__(self): - #Timescales - self._gis_realtime = 4900. - self._thc_realtime = 300. - self._wais_realtime = 2400. - self._amaz_realtime = 50. - - - #Compute conversion factor - self._real_timescale = self._gis_realtime #value normed to GIS - self._timescale = self._gis_realtime/self._amaz_realtime #value normed to GIS - self._tip_point_gis = 1.8 # most probable tipping point (see Robinson, 2012) #value normed to GIS - self._c_krit = np.sqrt(4 / 27) - self._GMT_cal = 4.0 #normed temperature - self._epsilon_c = global_functions.CUSPc(0., self._tip_point_gis, self._GMT_cal) - self._c_krit - self._initial_state = [-1.] - self._threshold = 1.0 - - - """ - Time scale, normed to the shortest tipping scale, in years - N.B.: Note that we can only insert a RELATIVE time scale, in principle the time scale is dependent on the GMT, - Here we insert tipping time scales at a temperature around 4°C above pre-industrial, since time scales are shifting during simulation due to structure of CUSP-catastrophe - """ - def timescales(self): - gis_time = self._gis_realtime/self._amaz_realtime - thc_time = self._thc_realtime/self._amaz_realtime - wais_time = self._wais_realtime/self._amaz_realtime - amaz_time = self._amaz_realtime/self._amaz_realtime - return gis_time, thc_time, wais_time, amaz_time - - - """ - Here we insert a conversion factor to get a translation from a.u. to "true" years - """ - def conversion(self): - cusp_deq = cusp(a=-1/self._timescale, b=1/self._timescale, c=self._c_krit/self._timescale, x_0=0.0) - net = tipping_network() - net.add_element(cusp_deq) - cusp_deq._par['c'] = self._c_krit/self._timescale + self._epsilon_c/self._timescale - - timestep = 0.01 - t_end = 5000 - ev = evolve(net, self._initial_state) - ev.integrate(timestep, t_end) - - t_arr = np.array(ev.get_timeseries()[0]) - cusp_deq = np.array(ev.get_timeseries()[1][:, 0]) - - # find point where state crosses threshold - th = cusp_deq > self._threshold - th[1:][th[:-1] & th[1:]] = False - - # conversion factor from arbitrary units to years - conv_fac = self._real_timescale / t_arr[np.nonzero(th)[0][0]] - return conv_fac - - - - diff --git a/pycascades/earth_system/tipping_network_earth_system.py b/pycascades/earth_system/tipping_network_earth_system.py deleted file mode 100644 index 6a5751e..0000000 --- a/pycascades/earth_system/tipping_network_earth_system.py +++ /dev/null @@ -1,96 +0,0 @@ -import networkx as nx -import numpy as np - -class tipping_network(nx.DiGraph): - - def __init__( self, incoming_graph_data=None, **attr): - nx.DiGraph.__init__( self, incoming_graph_data=None, **attr) - - def add_element( self, tipping_element ): - ind = self.number_of_nodes() - super().add_node( ind, data = tipping_element ) - self.nodes[ind]['lambda_f'] = tipping_element.dxdt_diag() - self.nodes[ind]['lambda_jac'] = tipping_element.jac_diag() - - def add_coupling( self, from_id, to_id, coupling): - super().add_edge( from_id, to_id, data = coupling) - self[from_id][to_id]['lambda_f'] = coupling.dxdt_cpl() - self[from_id][to_id]['lambda_jac'] = coupling.jac_cpl() - self[from_id][to_id]['lambda_jac_diag'] = coupling.jac_diag() - - def set_param( self, node_id, key, val ): - element = self.nodes[node_id]['data'] - element.set_par( key, val) - self.nodes[node_id]['lambda_f'] = self.nodes[node_id]['data'].dxdt_diag() - self.nodes[node_id]['lambda_jac'] = self.nodes[node_id]['data'].jac_diag() - - def get_tip_states( self, x): - tipped = [self.nodes[i]['data'].tip_state()(x[i]) for i in self.nodes()] - return np.array( tipped ) - - def get_node_types( self ): - type_list = [self.nodes[i]['data'].get_type() for i in self.nodes()] - return type_list - - def get_number_tipped( self, x): - return np.count_nonzero( self.get_tip_states( x ) ) - - def f( self, x, t): - f = np.zeros( self.number_of_nodes() ) - for node in self.nodes(data=True): - ind = node[0] - x_comp = x[ind] - f[ind] = node[1]['lambda_f'].__call__( t, x_comp) - for edge in self.edges(data=True): - from_id = edge[0] - to_id = edge[1] - lmd = edge[2]['lambda_f'] - f[to_id] += lmd.__call__( t, x[from_id], x[to_id]) - return f - - def jac(self, x, t): - jac = np.zeros((self.number_of_nodes(), self.number_of_nodes())) - for node in self.nodes(data=True): - ind = node[0] - x_comp = x[ind] - jac[ind,ind] = node[1]['lambda_jac'].__call__( t, x_comp) - for edge in self.edges(data=True): - from_id = edge[0] - to_id = edge[1] - lmd = edge[2]['lambda_jac'] - jac[to_id, from_id] = lmd.__call__( t, x[from_id], x[to_id] ) - lmd_diag = edge[2]['lambda_jac_diag'] - jac[to_id, to_id] += lmd_diag.__call__( t, x[from_id], x[to_id] ) - return jac - - def set_vulnerability(self, node_id, bool_val): - self.nodes[node_id]["vulnerable"] = bool_val - - def get_vulnerability_network(self): - G = nx.Graph() - for node in self.nodes(): - G.add_node(node) - G.nodes[node]["vulnerable"] = self.nodes[node]["vulnerable"] - for edge in self.edges(): - if self.nodes[edge[0]]["vulnerable"] and self.nodes[edge[1]]["vulnerable"]: - G.add_edge(edge[0],edge[1]) - return G - - def get_out_component_size(self, from_id): - out_component_size = -1 - for node in self.nodes(): - if nx.has_path(self, from_id, node): - out_component_size += 1 - return out_component_size - - def compute_impact_matrix(self): - n = self.number_of_nodes() - impact_matrix = [[lambda t, x1, x2: 0 for j in range(n)] for i in range(n)] - for edge in self.edges.data(): - print(edge[2]['data'].bif_impact()) - impact_matrix[edge[1]][edge[0]]=edge[2]['data'].bif_impact() - # if self.get_node_types()[edge[1]]=='cusp': - # impact_matrix[edge[1]][edge[0]]=edge['data'].dxdt_cpl() - # elif self.get_node_types()[edge[1]]=='hopf': - # impact_matrix[edge[1]][edge[0]]=edge['data'] - return impact_matrix diff --git a/pycascades/gen/__init__.py b/pycascades/gen/__init__.py deleted file mode 100644 index 7623fdb..0000000 --- a/pycascades/gen/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from . import networks \ No newline at end of file diff --git a/pycascades/gen/networks.py b/pycascades/gen/networks.py index 0f2815d..6bd2671 100644 --- a/pycascades/gen/networks.py +++ b/pycascades/gen/networks.py @@ -3,54 +3,53 @@ which are supposed to be lists of element and coupling objects from which a random one is chosen for each node and edge respectively.""" -from pycascades.core.tipping_network import tipping_network -from pycascades.core.coupling import linear_coupling +from pycascades.core.system.system import network +from pycascades.core.system.coupling import linear_coupling -from random import choice,uniform,randint,seed +from random import choice, uniform, randint, seed from copy import deepcopy import networkx as nx -from math import sqrt,exp,ceil +from math import sqrt, exp, ceil import numpy as np -def from_nxgraph( G, element_pool, coupling_pool, coupling=None, sd=None): + +def from_nxgraph(G, element_pool, coupling_pool, coupling=None, sd=None): if not nx.is_directed(G): raise ValueError("Only directed graphs supported!") couplings = [] if coupling == 'uniform': - seed_list=np.random.randint(0,100*G.number_of_edges(), - size=G.number_of_edges()) + seed_list = np.random.randint( + 0, + 100 * G.number_of_edges(), + size=G.number_of_edges() + ) for ind in range(G.number_of_edges()): seed(seed_list[ind]) - strength = uniform(coupling_pool[0],coupling_pool[1]) - couplings.append( linear_coupling( strength ) ) + strength = uniform(coupling_pool[0], coupling_pool[1]) + couplings.append(linear_coupling(strength)) else: for ind in range(G.number_of_edges()): - couplings.append( choice(coupling_pool) ) - + couplings.append(choice(coupling_pool)) - net = tipping_network() + net = network() - for node in G.nodes(): - net.add_element(choice(element_pool)) + for node, element in zip(G.nodes(), element_pool): + net.add_element(element) - for ind, edge in enumerate(G.edges()): - net.add_coupling( edge[0], edge[1], couplings[ind] ) + for edge, cpl in zip(G.edges(), coupling_pool): + net.add_coupling(edge[1], edge[0], cpl) return net -def complete_graph( number, element_pool, coupling_pool): - G = nx.complete_graph(number, nx.DiGraph()) - net = from_nxgraph(G, element_pool, coupling_pool) - return net def directed_watts_strogatz_graph(n, degree, beta, element_pool, coupling_pool, sd=None): k = ceil(degree/2)*2 if k > n: raise nx.NetworkXError("k>n, choose smaller k or larger n") - + #If k == n, the graph is complete not Watts-Strogatz if k == n: return nx.complete_graph(n) diff --git a/pycascades/tests/test_core.py b/pycascades/tests/test_core.py new file mode 100644 index 0000000..5b2604b --- /dev/null +++ b/pycascades/tests/test_core.py @@ -0,0 +1,65 @@ +from pycascades.core.evolve.evolve import make_equilibrium_event, integrate +from pycascades.core.system.system import network, double_fold +from pycascades.core.system.coupling import linear_coupling + +from scipy.integrate import odeint +import unittest +import numpy as np + + +class TestBasicFunctionality(unittest.TestCase): + def test_system(self): + sys1 = double_fold(a = -4, b = 1, c = lambda t: 0, x_0 = 0.5) + sys2 = double_fold(a = -4, b = 1, c = lambda t: 0, x_0 = 0.5) + + sys = network() + sys.add_element(sys1) + sys.add_element(sys2) + sys.add_coupling(0, 1, linear_coupling(strength=0.05)) + sys.add_coupling(1, 0, linear_coupling(strength=0.2)) + + initial_state = [0.1, 0.9] + sol = integrate(sys, initial_state, [0, 10], 0.1) + self.assertTrue(np.allclose( + sol.y[:, -1], + np.array([0.02726913, 1.00262741]) + )) + + def test_equilibration(self): + sys1 = double_fold(a = -4, b = 1, c = lambda t: 0, x_0 = 0.5) + sys2 = double_fold(a = -4, b = 1, c = lambda t: 0, x_0 = 0.5) + + sys = network() + sys.add_element(sys1) + sys.add_element(sys2) + sys.add_coupling(0, 1, linear_coupling(strength=0.05)) + sys.add_coupling(1, 0, linear_coupling(strength=0.2)) + + event = make_equilibrium_event(sys, 0.001) + sol = integrate(sys, [0.1, 0.9], [0, 10], 0.1, events=event) + self.assertTrue(sol.y.shape[1] == 38) + + def test_custom_strategy(self): + def custom_strategy(f, x_init, t_span, opts): + return odeint(f, x_init, t_span) + + sys1 = double_fold(a = -4, b = 1, c = lambda t: 0, x_0 = 0.5) + sys2 = double_fold(a = -4, b = 1, c = lambda t: 0, x_0 = 0.5) + + sys = network() + sys.add_element(sys1) + sys.add_element(sys2) + sys.add_coupling(0, 1, linear_coupling(strength=0.05)) + sys.add_coupling(1, 0, linear_coupling(strength=0.2)) + + sol = integrate( + sys, + [0.1, 0.9], + [0, 10], + 0.1, + strategy=custom_strategy + ) + self.assertTrue(np.allclose( + sol[-1, :], + np.array([0.02567962, 1.06074957]) + )) diff --git a/setup.py b/setup.py index 56e70bd..119c706 100644 --- a/setup.py +++ b/setup.py @@ -1,37 +1,27 @@ from setuptools import setup, find_packages - with open("README.md", "r") as fh: long_description = fh.read() - install_requires = [ "numpy", "scipy", - "matplotlib", - "cartopy", - "seaborn", - "netCDF4", "networkx", - "ipykernel", - "pyDOE", - "PyPDF2", - "numba" ] - -setup(name='pycascades', - version='1.0.2', - url = 'https://github.com/pik-copan/pycascades', - author = 'Nico Wunderling, Jonathan Krönke, Vitus Benson, Dorothea Kistinger, Jan Kohler, Benedikt Stumpf, Valentin Wohlfarth, Jonathan F. Donges', - author_email = 'nico.wunderling@pik-potsdam.de', - long_description=long_description, - long_description_content_type="text/markdown", - classifiers=[ - "Intended Audience :: Science/Research", - "License :: Other/Proprietary License", - "Programming Language :: Python :: 3" - ], - packages=find_packages(), - install_requires=install_requires, - ) +setup( + name='pycascades', + version='1.0.2', + url = 'https://github.com/pik-copan/pycascades', + author = 'Nico Wunderling, Jonathan Krönke, Vitus Benson, Dorothea Kistinger, Jan Kohler, Benedikt Stumpf, Valentin Wohlfarth, Jonathan F. Donges', + author_email = 'nico.wunderling@pik-potsdam.de', + long_description=long_description, + long_description_content_type="text/markdown", + classifiers=[ + "Intended Audience :: Science/Research", + "License :: Other/Proprietary License", + "Programming Language :: Python :: 3" + ], + packages=find_packages(), + install_requires=install_requires, +)