Skip to content
Snippets Groups Projects
Commit febb86d1 authored by Bas van der Tol's avatar Bas van der Tol
Browse files

Add comparison oskar stationresponse

parent 6adcdf4c
No related branches found
No related tags found
1 merge request!59Resolve "Add stationresponse comparison for oskar"
Pipeline #3527 failed
Showing
with 238 additions and 17 deletions
...@@ -95,6 +95,9 @@ build-compare-oskar: ...@@ -95,6 +95,9 @@ build-compare-oskar:
- export NPIXELS=8 && export APPLY_TRANSPOSE=OFF && MAX_ORDER=3 && TOLERANCE=1e-12 - export NPIXELS=8 && export APPLY_TRANSPOSE=OFF && MAX_ORDER=3 && TOLERANCE=1e-12
- cd /opt/everybeam/build - cd /opt/everybeam/build
- make VERBOSE=1 comparison-oskar - make VERBOSE=1 comparison-oskar
# Run OSKAR stationresponse comparison
- export NPIXELS=32 && TOLERANCE=1e-5
- make VERBOSE=1 comparison-oskar-stationresponse
deploy-doc: deploy-doc:
stage: deploy stage: deploy
......
...@@ -3,11 +3,11 @@ ...@@ -3,11 +3,11 @@
add_executable(comparison-oskar-generate-beampattern main.cpp) add_executable(comparison-oskar-generate-beampattern main.cpp)
target_link_libraries(comparison-oskar-generate-beampattern oskar) target_link_libraries(comparison-oskar-generate-beampattern oskar)
add_executable(comparison-oskar-station-response stationresponse.cpp) add_executable(comparison-oskar-generate-station-response stationresponse.cpp)
target_link_libraries(comparison-oskar-station-response everybeam) target_link_libraries(comparison-oskar-generate-station-response everybeam)
# Required to get the config.h header # Required to get the config.h header
target_include_directories(comparison-oskar-station-response PRIVATE "${CMAKE_BINARY_DIR}") target_include_directories(comparison-oskar-generate-station-response PRIVATE "${CMAKE_BINARY_DIR}")
file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/telescope.tm/layout.txt" file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/telescope.tm/layout.txt"
...@@ -19,17 +19,23 @@ file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/telescope.tm/position.txt" ...@@ -19,17 +19,23 @@ file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/telescope.tm/position.txt"
file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/telescope.tm/station000/layout.txt" file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/telescope.tm/station000/layout.txt"
DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/station000/telescope.tm") DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/station000/telescope.tm")
execute_process( COMMAND ${CMAKE_COMMAND} -E copy_directory
"${CMAKE_CURRENT_SOURCE_DIR}/skalowmini-coef.tm" "${CMAKE_CURRENT_BINARY_DIR}/skalowmini-coef.tm")
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
# comparison-oskar knits together the cpp code and the python scripts # comparison-oskar knits together the cpp code and the python scripts
add_custom_target(comparison-oskar add_custom_target(comparison-oskar
COMMAND ${CMAKE_COMMAND} -E env COMMAND ${CMAKE_COMMAND} -E env
EXTRA_PATH="${CMAKE_CURRENT_BINARY_DIR}:${CMAKE_SOURCE_DIR}/scripts/coeff_scripts" EXTRA_PATH="${CMAKE_CURRENT_BINARY_DIR}:${CMAKE_SOURCE_DIR}/scripts/coeff_scripts"
TOLERANCE=1e-12
"${CMAKE_CURRENT_SOURCE_DIR}/generate_basefunction_plots.sh" "${CMAKE_CURRENT_SOURCE_DIR}/generate_basefunction_plots.sh"
DEPENDS comparison-oskar-generate-beampattern DEPENDS comparison-oskar-generate-beampattern
) )
add_test(NAME comparison-oskar-test add_custom_target(comparison-oskar-station-response
CONFIGURATIONS integration COMMAND ${CMAKE_COMMAND} -E env
COMMAND make comparison-oskar) EXTRA_PATH="${CMAKE_CURRENT_BINARY_DIR}:${CMAKE_SOURCE_DIR}/scripts/coeff_scripts:${CMAKE_SOURCE_DIR}/scripts/misc"
"${CMAKE_CURRENT_SOURCE_DIR}/compare_stationresponse.sh"
DEPENDS comparison-oskar-generate-station-response
)
import os
import sys
import numpy as np
from read_oskar_beams import read_oskar_beams
import run_oskar_simulation
import subprocess
tolerance = float(os.environ["TOLERANCE"]) if "TOLERANCE" in os.environ else 0.0
npixels = int(os.environ["NPIXELS"]) if "NPIXELS" in os.environ else 256
run_oskar_simulation.main(npixels)
subprocess.check_call(["add_beaminfo.py", "skalowmini-coef.MS", "skalowmini-coef.tm"])
subprocess.check_call(["oskar_csv_to_hdf5.py", "skalowmini-coef.tm", "oskar.h5"])
subprocess.check_call(["./comparison-oskar-generate-station-response", str(npixels)])
A = read_oskar_beams()
B = np.load('station-response.npy')
if tolerance:
difference = np.nanmax(np.abs(A - B))
if difference > tolerance:
sys.exit(
"Difference between OSKAR and EveryBeam spherical wave model is {}, which is larger than the tolerance {}".format(
difference, tolerance
)
)
#!/bin/sh
export PATH=$EXTRA_PATH:$PATH
python3 -B `dirname "${0}"`/compare_stationresponse.py
#!/bin/sh #!/bin/sh
export PATH=$EXTRA_PATH:$PATH export PATH=$EXTRA_PATH:$PATH
export TOLERANCE="1e-12"
python3 -B `dirname "${0}"`/generate_basefunction_plots.py python3 -B `dirname "${0}"`/generate_basefunction_plots.py
import numpy as np
from matplotlib import pyplot as plt
from read_oskar_beams import read_oskar_beams
A = read_oskar_beams()
B = np.load('station-response.npy')
B = B-A
#B = np.load('response.npy')
for ant_xy_idx in range(2):
plt.subplot(2, 4, 1 + ant_xy_idx*4)
plt.imshow(np.abs(B[:, :, ant_xy_idx, 0]).T, origin="lower")
plt.colorbar()
plt.title("abs(Etheta)")
plt.subplot(2, 4, 2 + ant_xy_idx*4)
plt.imshow(np.abs(B[:, :, ant_xy_idx, 1]).T, origin="lower")
plt.colorbar()
plt.title("abs(Ephi)")
plt.subplot(2, 4, 3 + ant_xy_idx*4)
plt.imshow(
np.angle(B[:, :, ant_xy_idx, 0]).T, clim=(-np.pi, np.pi), cmap="twilight", origin="lower"
)
plt.colorbar()
plt.title("angle(Etheta)")
plt.subplot(2, 4, 4 + ant_xy_idx*4)
plt.imshow(
np.angle(B[:, :, ant_xy_idx, 1]).T, clim=(-np.pi, np.pi), cmap="twilight", origin="lower"
)
plt.colorbar()
plt.title("angle(Ephi)")
plt.show()
...@@ -59,12 +59,12 @@ if __name__ == "__main__": ...@@ -59,12 +59,12 @@ if __name__ == "__main__":
A = read_oskar_beams() A = read_oskar_beams()
plt.subplot(2, 2, 1) plt.subplot(2, 2, 1)
plt.imshow(np.abs(A[:, :, 0, 0]).T, clim=(0, 0.25), origin="lower") plt.imshow(np.abs(A[:, :, 0, 0]).T, origin="lower")
plt.colorbar() plt.colorbar()
plt.title("abs(Etheta)") plt.title("abs(Etheta)")
plt.subplot(2, 2, 2) plt.subplot(2, 2, 2)
plt.imshow(np.abs(A[:, :, 0, 1]).T, clim=(0, 0.25), origin="lower") plt.imshow(np.abs(A[:, :, 0, 1]).T, origin="lower")
plt.colorbar() plt.colorbar()
plt.title("abs(Ephi)") plt.title("abs(Ephi)")
......
...@@ -125,7 +125,7 @@ def main(npixels): ...@@ -125,7 +125,7 @@ def main(npixels):
'basefunctions': { 'basefunctions': {
'telescope/input_directory': 'telescope.tm', 'telescope/input_directory': 'telescope.tm',
'telescope/aperture_array/element_pattern/enable_numerical': True, 'telescope/aperture_array/element_pattern/enable_numerical': True,
'telescope/aperture_array/element_pattern/swap_xy': True, 'telescope/aperture_array/element_pattern/swap_xy': False,
'telescope/aperture_array/array_pattern/enable': False 'telescope/aperture_array/array_pattern/enable': False
}, },
} }
......
...@@ -21,7 +21,7 @@ import oskar ...@@ -21,7 +21,7 @@ import oskar
def get_start_time(ra0_deg, length_sec): def get_start_time(ra0_deg, length_sec):
"""Returns optimal start time for field RA and observation length.""" """Returns optimal start time for field RA and observation length."""
t = Time('2000-01-01 00:00:00', scale='utc', location=('116.764d', '0d')) t = Time('2000-01-01 12:00:00', scale='utc', location=('116.764d', '0d'))
dt_hours = (24.0 - t.sidereal_time('apparent').hour) / 1.0027379 dt_hours = (24.0 - t.sidereal_time('apparent').hour) / 1.0027379
dt_hours += (ra0_deg / 15.0) dt_hours += (ra0_deg / 15.0)
start = t + TimeDelta(dt_hours * 3600.0 - length_sec / 2.0, format='sec') start = t + TimeDelta(dt_hours * 3600.0 - length_sec / 2.0, format='sec')
...@@ -37,7 +37,7 @@ def main(npixels): ...@@ -37,7 +37,7 @@ def main(npixels):
# Define some basic observation parameters. # Define some basic observation parameters.
ra0_deg = 0.0 ra0_deg = 0.0
dec0_deg = -27.0 dec0_deg = -27.0
length_sec = 3600.0*6 length_sec = 60 # 3600.0*6
# Define base settings dictionary. # Define base settings dictionary.
common_settings = { common_settings = {
...@@ -64,9 +64,9 @@ def main(npixels): ...@@ -64,9 +64,9 @@ def main(npixels):
telescopes = { telescopes = {
#'stationresponse': { #'stationresponse': {
'basefunctions': { 'basefunctions': {
'telescope/input_directory': 'telescope.tm', 'telescope/input_directory': 'skalowmini-coef.tm',
'telescope/aperture_array/element_pattern/enable_numerical': True, 'telescope/aperture_array/element_pattern/enable_numerical': True,
'telescope/aperture_array/element_pattern/swap_xy': True, 'telescope/aperture_array/element_pattern/swap_xy': False,
'telescope/aperture_array/array_pattern/enable': True, 'telescope/aperture_array/array_pattern/enable': True,
'telescope/aperture_array/array_pattern/normalise': True 'telescope/aperture_array/array_pattern/normalise': True
}, },
...@@ -93,7 +93,7 @@ def main(npixels): ...@@ -93,7 +93,7 @@ def main(npixels):
tel_root = re.sub(r'[^\w]', '', tel) # Strip symbols from tel. tel_root = re.sub(r'[^\w]', '', tel) # Strip symbols from tel.
root_path = tel_root + ('_%03d_MHz' % freq) root_path = tel_root + ('_%03d_MHz' % freq)
settings['observation/start_frequency_hz'] = 1e6 * freq settings['observation/start_frequency_hz'] = 1e6 * freq
settings['interferometer/ms_filename'] = 'blah.ms' settings['interferometer/ms_filename'] = 'skalowmini-coef.MS'
# Run the app with the settings file. # Run the app with the settings file.
subprocess.call([app1, settings_path]) subprocess.call([app1, settings_path])
...@@ -120,4 +120,4 @@ def main(npixels): ...@@ -120,4 +120,4 @@ def main(npixels):
if __name__ == '__main__': if __name__ == '__main__':
main(32) main(256)
-0.00057704,-2.8957e-20,-0.00089769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
7.0103e-17,-9.4077e-19,3.0507e-18,2.8e-19,4.0339e-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-0.00015642,4.6392e-20,-0.0029085,2.6042e-20,-0.0030713,2.0643e-20,-0.00011042,0,0,0,0,0,0,0,0,0,0,0,0
3.2342e-19,-1.036e-20,-5.133e-18,-2.3185e-19,6.3137e-20,-1.9915e-19,-1.0125e-17,4.2448e-20,-4.5297e-19,0,0,0,0,0,0,0,0,0,0
-4.7326e-06,-1.2424e-20,-2.631e-05,1.1848e-19,0.00039328,1.7565e-20,0.00052237,-8.6119e-20,-2.9113e-05,2.9644e-20,-4.2062e-06,0,0,0,0,0,0,0,0
4.0193e-20,-1.0887e-20,-5.8721e-19,-3.842e-21,-7.619e-19,-9.9278e-20,3.7022e-19,-4.31e-19,1.1563e-18,3.3605e-20,-8.026e-20,-1.8931e-20,4.612e-19,0,0,0,0,0,0
-8.1383e-08,1.193e-20,1.6811e-08,2.0062e-20,3.99e-06,2.2829e-20,-1.7224e-05,-1.5877e-20,-4.3708e-05,5.1848e-20,4.9211e-06,-1.7049e-20,6.3197e-09,2.9562e-20,-4.6697e-08,0,0,0,0
2.9667e-19,-7.4827e-20,1.5924e-19,6.6251e-20,2.1782e-19,5.3332e-20,-1.8841e-20,4.9342e-20,-7.7363e-19,2.473e-19,4.5613e-19,-1.413e-20,3.3402e-19,-2.6286e-20,-1.7169e-19,-3.3568e-20,-2.0272e-19,0,0
-7.96e-10,-1.0695e-20,2.718e-09,-1.1024e-20,2.0648e-08,6.1275e-20,-1.9554e-07,-2.4587e-20,1.3733e-07,1.7435e-20,2.5476e-06,5.6603e-20,-2.7092e-07,6.071e-20,2.4319e-08,9.4771e-21,1.8053e-09,2.0617e-20,-4.9611e-10
-0.0067665,-8.8864e-20,-0.0066286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
6.3184e-18,-3.2399e-20,5.4117e-17,-6.3877e-19,-1.3338e-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-0.00016252,6.0024e-20,0.0011901,-4.7787e-20,0.0015679,-1.2869e-19,-0.00019723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6.8899e-19,1.4611e-20,9.4217e-18,-2.8e-19,-1.7873e-17,-1.9648e-19,-7.6713e-18,1.7812e-20,-7.5098e-19,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.7774e-06,2.1443e-20,8.9232e-05,2.5167e-20,0.0010157,-3.6099e-20,0.0010819,1.2414e-19,8.6756e-05,3.431e-20,2.8053e-06,0,0,0,0,0,0,0,0,0,0,0,0
8.1259e-19,2.9648e-20,9.0589e-19,3.149e-20,-1.4479e-18,8.6259e-19,5.2558e-19,7.3775e-19,1.1887e-18,-1.0155e-20,3.9687e-19,2.2566e-20,4.4147e-19,0,0,0,0,0,0,0,0,0,0
1.253e-07,4.9757e-21,1.496e-06,-6.4192e-21,-3.36e-06,-8.3307e-20,-0.0002156,1.8471e-20,-0.00029974,7.2641e-20,1.2774e-06,-4.8996e-20,1.4294e-06,-8.1446e-20,7.3792e-08,0,0,0,0,0,0,0,0
-1.295e-19,-4.2066e-20,5.4805e-19,1.8293e-20,7.3478e-19,9.1921e-21,-1.5087e-19,1.2217e-18,7.532e-19,7.3894e-19,-5.0291e-20,2.6597e-20,-8.9318e-20,1.8336e-20,1.2347e-19,1.9129e-20,1.9151e-19,0,0,0,0,0,0
1.1055e-09,-6.7759e-20,8.3545e-09,-5.2766e-20,-1.2973e-07,3.3414e-21,-8.5291e-07,-5.0106e-20,1.7628e-05,8.8104e-20,3.5128e-05,-6.7535e-20,-1.8026e-06,1.4312e-20,-1.2883e-07,3.6756e-20,9.7842e-09,-1.6622e-20,4.7807e-09,0,0,0,0
-8.7758e-19,1.0931e-19,-1.2428e-18,-9.0299e-20,6.7527e-19,6.3755e-20,1.0829e-19,-1.0722e-19,9.5095e-20,2.152e-19,-3.3625e-19,4.0662e-19,3.7922e-19,-4.5695e-20,6.1356e-20,4.7705e-21,1.9455e-19,-2.8408e-20,-3.6262e-21,-1.3763e-21,-4.7443e-19,0,0
2.9123e-11,-1.3196e-20,4.427e-11,1.7654e-21,-1.0255e-09,7.2197e-20,1.8028e-09,-9.8904e-21,1.0712e-07,1.624e-20,-7.6939e-07,3.0389e-20,-2.5543e-06,7.7549e-20,1.8258e-07,-3.3474e-21,-4.2061e-10,1.4717e-20,-1.1824e-09,7.195e-20,-3.8281e-11,-3.3064e-20,2.6431e-11
0.0040595,-5.1573e-20,0.0044396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2.5325e-17,8.1682e-19,-3.2812e-18,1.4592e-18,-8.1314e-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
0.00013925,1.2345e-19,0.00082464,-3.0705e-20,0.001206,6.2832e-20,0.00011872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1.3722e-18,5.228e-21,9.4471e-17,7.1189e-20,2.3212e-18,9.045e-19,-4.8129e-19,4.2306e-20,-4.7949e-19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
6.151e-06,-2.7772e-20,-3.174e-05,-1.1156e-19,-0.0031544,-2.1717e-20,-0.0032927,-7.0243e-20,-3.1786e-05,1.6946e-20,2.4815e-06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
7.5323e-19,4.6742e-20,-7.8115e-19,-3.431e-20,-2.3764e-17,2.0955e-19,-5.4122e-19,-3.8641e-20,1.8766e-18,4.826e-20,2.6944e-19,-4.0309e-20,-1.3109e-18,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1.0224e-07,-2.1562e-20,-1.9404e-06,2.1533e-20,-3.1947e-05,-2.7455e-20,0.00098611,4.2963e-20,0.00088061,-2.5841e-21,-2.5547e-05,1.2939e-20,-1.6492e-06,6.5688e-21,1.2754e-07,0,0,0,0,0,0,0,0,0,0,0,0
-3.0618e-19,2.7318e-20,-8.6803e-19,-2.0029e-20,-5.1274e-19,-3.5925e-20,2.3284e-18,-1.4262e-18,-8.6681e-20,-1.7243e-18,8.0492e-19,-1.5597e-20,-9.0559e-19,3.2315e-20,3.0557e-19,-3.0694e-20,-9.0757e-20,0,0,0,0,0,0,0,0,0,0
4.4353e-09,-8.2532e-21,-2.0876e-08,2.8332e-20,7.8254e-08,-9.2811e-20,1.0453e-05,6.509e-20,-0.00014949,-3.9983e-20,-0.00010068,-1.4841e-19,7.6593e-06,4.6233e-20,6.692e-08,7.6868e-21,-2.6932e-08,1.0608e-24,-2.2638e-10,0,0,0,0,0,0,0,0
-2.4795e-19,3.221e-21,5.8643e-19,3.2404e-20,2.9566e-19,5.2654e-20,-5.9687e-19,2.8209e-21,-5.0052e-19,-2.586e-20,2.8325e-19,1.1682e-19,-2.255e-19,-1.617e-20,-9.7737e-20,-2.3877e-20,-6.7269e-19,5.3379e-20,-1.9994e-19,-7.9946e-21,2.8348e-19,0,0,0,0,0,0
1.6107e-11,-5.7244e-20,-3.1563e-10,1.4049e-20,2.5375e-09,-1.1051e-20,3.3321e-08,7.3604e-21,-1.3526e-06,-6.7808e-22,1.4745e-05,-4.0726e-20,6.1386e-06,1.9535e-19,-8.8987e-07,-1.1727e-20,3.0968e-08,-5.4259e-21,2.3064e-09,-3.3327e-20,-1.8128e-10,5.9035e-20,5.4098e-11,0,0,0,0
7.6174e-20,-1.0364e-19,1.007e-18,2.045e-20,-2.444e-19,4.2901e-20,-4.6892e-19,-1.5205e-20,3.4757e-20,4.3117e-20,-1.0222e-19,1.757e-18,-4.6939e-19,1.8575e-18,3.3804e-20,-4.2724e-20,-1.2016e-19,-8.5558e-21,-4.2482e-19,1.198e-21,-3.8024e-19,-1.5633e-20,-2.1692e-19,3.9362e-20,-2.6038e-19,0,0
8.0286e-13,-2.0399e-20,-5.8611e-13,1.623e-20,2.0308e-11,-2.6891e-20,-1.0838e-10,7.471e-20,-5.4995e-09,-6.3194e-21,1.0051e-07,-3.1431e-20,-1.0662e-06,-6.4814e-20,-1.8801e-07,1.3744e-19,6.0266e-08,-5.5731e-20,-4.646e-09,4.8727e-20,-4.6609e-11,-3.7383e-20,2.0566e-11,-2.3406e-21,-3.0579e-12,-4.0629e-20,9.7154e-15
0.00050482,-2.6187e-20,0.00056239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
6.6744e-18,-6.3609e-20,-1.7427e-18,-3.6561e-20,-1.0818e-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-9.0343e-05,1.8418e-20,-0.00043941,-9.4287e-21,-0.00040383,4.1475e-20,-6.1464e-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1.0162e-18,-1.8849e-20,-2.5462e-18,5.3741e-19,-3.223e-18,1.2484e-20,-7.9185e-18,2.0955e-20,-7.8745e-19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.4323e-05,-2.3164e-20,7.022e-05,-6.5836e-21,-0.0022292,1.013e-20,-0.0022457,-1.8659e-20,6.1399e-05,-8.5927e-21,-1.5703e-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1.0315e-18,-9.0856e-21,-1.1944e-19,-4.376e-20,9.1084e-18,2.6157e-20,9.1348e-18,3.3291e-20,2.1797e-17,-3.5814e-20,1.2249e-19,1.1176e-20,-1.4382e-19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.5462e-06,-1.7796e-20,4.3297e-06,4.5522e-20,-9.5127e-05,4.4439e-21,0.00059489,-4.3597e-20,0.00044495,-2.3355e-20,-9.4007e-05,-1.6273e-20,5.5128e-06,7.6233e-21,-1.0067e-06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2.7343e-20,2.8299e-20,-6.5454e-19,-1.337e-21,-4.2486e-21,-1.6222e-21,-7.3957e-18,-6.9792e-19,-5.0389e-18,-8.1265e-19,-1.122e-17,-3.1063e-21,-2.5494e-19,2.2374e-20,-1.7144e-19,1.8482e-20,-9.4568e-22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5.7717e-08,-1.0873e-20,2.8265e-07,8.9512e-21,-2.1369e-06,-4.5824e-20,4.2111e-05,7.1923e-20,0.00025635,5.4562e-21,0.00041724,5.3377e-21,3.9884e-05,3.4278e-20,-2.2694e-06,-2.8977e-20,1.645e-07,3.5713e-20,-4.4999e-08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
5.0081e-20,-4.9118e-21,-1.2738e-20,-1.5532e-20,4.3651e-19,-2.6293e-21,-5.3683e-19,5.9002e-21,2.5937e-18,5.9448e-22,1.4916e-18,1.1295e-20,2.5436e-18,3.1788e-20,2.7128e-19,-3.1371e-20,-3.3708e-19,-1.5185e-21,1.4711e-20,1.578e-21,1.6462e-19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2.3976e-09,2.1808e-20,7.8305e-09,4.727e-21,-1.8173e-08,2.7274e-21,8.6225e-07,7.1384e-22,-7.3983e-06,1.4129e-20,-0.00013929,-9.1756e-20,-0.00021353,1.4895e-20,-5.2694e-06,8.7037e-21,8.4708e-07,2.0993e-21,-1.4111e-08,-2.0528e-20,9.0313e-09,-1.6797e-20,-1.3888e-09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.6898e-20,1.3051e-20,-2.2141e-19,-2.0583e-20,5.3353e-19,-2.7839e-20,-1.2817e-20,2.0097e-20,-1.0213e-19,8.3609e-20,-6.2143e-19,6.682e-19,3.0622e-20,7.2527e-19,-4.8297e-19,-2.5423e-20,-2.0058e-20,2.6217e-20,-5.3133e-20,2.3167e-22,-2.393e-19,1.614e-20,3.1354e-19,-3.0498e-20,-8.5226e-20,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4.3422e-11,2.1627e-20,3.69e-10,-2.0236e-20,-3.3154e-10,-1.2322e-20,4.4724e-09,-3.6257e-21,-1.8655e-07,-9.6706e-21,3.6003e-07,1.4898e-20,2.8686e-05,5.95e-20,4.8337e-05,-2.321e-20,-4.3071e-07,2.3713e-20,-1.6615e-07,9.7138e-21,4.3223e-09,2.3355e-20,-4.5774e-10,7.0603e-21,1.8503e-10,-2.0605e-20,-2.2976e-11,0,0,0,0,0,0,0,0,0,0,0,0
-9.282e-20,1.4811e-21,8.3419e-19,4.62e-21,1.946e-19,2.7703e-20,-1.7527e-19,3.5845e-20,1.3014e-19,-1.9722e-20,1.8146e-20,-4.9763e-20,-4.9465e-20,3.228e-19,3.762e-19,2.158e-19,-2.0457e-19,-5.0098e-20,1.7027e-19,-8.5367e-21,-6.3817e-20,1.1237e-20,4.9145e-20,2.8975e-20,-2.4576e-19,-1.1273e-20,-3.8226e-19,-1.516e-21,-9.3792e-21,0,0,0,0,0,0,0,0,0,0
-9.3821e-13,-1.8444e-20,4.6075e-12,2.3312e-20,-1.1355e-11,1.6464e-20,2.9951e-11,-8.1661e-21,-9.5013e-10,-1.8565e-20,2.4014e-08,-5.207e-21,8.0526e-08,3.3565e-20,-3.4864e-06,-8.8814e-21,-6.8767e-06,2.6529e-20,2.3607e-07,-7.3865e-21,1.7418e-08,-1.1945e-20,-1.0248e-09,6.3995e-21,3.4831e-11,-9.1565e-22,-5.892e-12,-2.2277e-20,4.1387e-12,3.3099e-20,-4.6062e-13,0,0,0,0,0,0,0,0
-2.5024e-20,-3.1955e-21,-2.9578e-19,1.1135e-20,-3.6926e-19,-3.7794e-20,-1.1994e-19,-3.5194e-21,-3.9019e-19,1.4717e-20,2.5884e-19,-3.7379e-21,-4.323e-20,4.0271e-20,1.9102e-19,-1.2466e-18,-1.3853e-19,-1.4048e-18,-7.0453e-20,-2.235e-21,2.2069e-20,-1.4042e-20,1.3896e-19,-5.7253e-21,-9.7621e-20,-5.5146e-21,-2.2169e-20,4.7832e-20,4.4945e-19,-4.6431e-20,5.9352e-19,-1.7513e-20,1.8495e-19,0,0,0,0,0,0
-9.9744e-15,4.5766e-21,1.2445e-13,-6.086e-21,-1.4039e-13,-1.3527e-20,3.4639e-14,-8.235e-21,-5.4909e-12,-2.4544e-20,1.1849e-10,4.7905e-22,-1.9511e-09,4.1086e-20,-1.8969e-08,6.8742e-20,2.8338e-07,2.6116e-20,6.9625e-07,2.6118e-20,-3.7891e-08,1.8574e-20,-7.9511e-10,-3.5671e-21,1.4345e-10,-6.6246e-21,-6.1109e-12,4.6285e-20,3.4643e-14,-1.4043e-21,-1.5541e-13,6.9917e-21,5.4646e-14,1.5022e-21,-3.2557e-15,0,0,0,0
1.7879e-19,1.5866e-20,6.4493e-20,5.5003e-23,2.1612e-19,1.2774e-20,-6.665e-19,-1.9434e-20,1.6793e-19,3.9779e-20,-1.6325e-19,-2.0629e-20,4.9045e-20,3.1653e-20,3.133e-19,-2.0555e-20,-2.0732e-19,-3.8403e-19,2.3837e-19,-3.0556e-19,9.7602e-21,-2.7305e-20,-1.9041e-19,-6.6362e-21,-8.8035e-20,4.4477e-21,2.3413e-19,-3.261e-20,-9.0752e-20,1.1891e-20,1.1201e-19,2.6633e-20,-1.6655e-19,7.6884e-23,2.4163e-19,2.3346e-20,-1.0642e-19,0,0
-1.3212e-16,-1.2676e-20,8.6046e-16,-1.2337e-20,-3.7797e-15,-1.399e-20,1.5433e-15,-2.3551e-20,-5.2732e-15,-1.7095e-21,6.7088e-13,5.7216e-20,-1.0016e-11,-6.1342e-20,9.6592e-11,4.3232e-21,2.1707e-09,-2.4855e-20,-1.6129e-08,-5.0452e-20,-5.3644e-08,1.566e-20,3.7143e-09,-2.4276e-20,-3.4945e-11,4.087e-20,-1.2923e-11,1.593e-21,7.8182e-13,-4.6082e-20,-1.501e-15,5.4164e-20,2.4469e-15,-1.5926e-20,-1.6613e-15,5.2297e-21,5.7963e-16,-4.1151e-20,-5.2162e-17
-0.00013821,-2.9858e-21,-9.0648e-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-7.3599e-19,-3.445e-19,3.1443e-19,-6.5393e-20,9.2714e-19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.043e-05,-8.4157e-20,0.00023391,1.8121e-20,0.00020685,-2.086e-21,-1.0594e-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
7.5937e-19,1.4853e-20,-1.8724e-18,-2.6781e-19,-2.1755e-19,-6.034e-20,2.5739e-18,8.0282e-21,-8.6614e-19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2.1994e-06,1.48e-20,-2.0468e-05,6.407e-21,0.00092335,-3.1805e-21,0.00090613,5.6273e-20,-4.729e-05,2.6352e-21,-4.659e-06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
9.3412e-20,1.8085e-20,5.5935e-20,-1.0689e-20,2.1967e-18,2.0837e-19,-1.6434e-19,3.8879e-19,-2.255e-18,-1.2627e-20,-6.9049e-19,-1.1584e-20,3.3946e-20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.6653e-06,1.3308e-20,-8.5461e-06,9.2121e-22,-1.0635e-05,-1.1383e-20,0.0011427,1.3142e-20,0.0010922,4.545e-21,1.8383e-05,9.4587e-21,-1.6321e-06,-5.2947e-22,-2.2036e-08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
6.6318e-20,2.6633e-20,-1.1686e-19,-1.1569e-20,-2.2551e-19,4.1281e-21,8.2255e-19,5.7962e-19,-7.1229e-19,5.7813e-19,-1.9405e-18,6.7905e-21,5.0834e-19,4.5346e-20,-1.8795e-20,-4.2847e-21,6.4939e-20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.0901e-07,3.7711e-20,6.8359e-08,-3.4659e-20,9.8309e-07,-1.3732e-20,4.3939e-05,1.7142e-20,-0.00041412,3.5415e-20,-0.00041092,-4.8032e-21,2.0719e-05,-2.9827e-21,-1.1183e-06,3.7214e-21,-1.0047e-06,-3.4587e-20,-1.2076e-07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2.7958e-20,1.6785e-20,-7.6208e-20,1.6804e-21,1.4189e-19,-4.0771e-21,4.7791e-20,-2.256e-20,-2.7896e-18,-4.1554e-19,4.1159e-19,-4.3754e-19,4.7025e-18,-3.7696e-21,1.8328e-19,-5.0141e-21,-4.0764e-20,1.747e-20,1.7128e-19,-3.0224e-22,4.4903e-20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.5206e-08,5.7686e-21,-3.9833e-08,-1.1776e-20,-8.364e-09,1.5372e-20,1.9545e-06,3.0807e-20,-2.3983e-05,-5.2481e-22,-0.00091872,7.3172e-21,-0.00090609,2.1653e-20,-9.5685e-06,5.2051e-21,1.8327e-06,1.1202e-20,2.2163e-07,-7.1931e-22,-8.8168e-09,-2.6409e-21,-1.5739e-09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.6624e-19,-2.8081e-21,-1.1631e-22,-8.0391e-22,1.7708e-20,-9.1756e-21,9.7366e-21,-1.2389e-20,1.9958e-19,2.6628e-20,1.9391e-18,-3.2934e-19,1.0103e-19,-5.6238e-19,-3.0442e-18,-5.5535e-21,-1.9756e-19,1.1569e-20,3.2248e-19,-2.7473e-20,6.4737e-22,1.5802e-20,2.7443e-20,-2.3507e-20,7.9647e-20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5.1434e-10,-8.9433e-21,1.6537e-09,-3.9945e-21,8.999e-09,1.5888e-20,2.7009e-08,-4.2114e-21,-1.3637e-06,-3.2687e-20,-9.9684e-07,4.9122e-21,0.00078034,3.4756e-20,0.00078895,1.2379e-20,-8.5965e-06,-4.756e-22,-1.0682e-06,2.0648e-21,-2.9682e-08,1.9428e-20,2.7709e-09,-8.3552e-21,-3.2252e-09,3.2329e-21,-3.7725e-10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1.5284e-19,-4.8151e-21,-1.0059e-19,4.326e-21,2.7374e-19,-7.3656e-21,-2.9809e-19,-9.3308e-21,-1.0228e-19,1.4395e-20,-1.1766e-19,1.4811e-20,-8.3045e-19,3.0794e-19,-3.4799e-19,2.8892e-19,1.1863e-18,2.6936e-20,3.6745e-20,-4.2133e-20,-3.0394e-20,2.3149e-20,-1.6044e-19,-5.6164e-21,-2.5364e-19,2.2993e-21,-2.6321e-21,1.2842e-20,-3.7803e-20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2.9308e-11,-1.1372e-20,-2.3314e-11,6.1706e-21,3.588e-11,-1.4345e-20,-3.808e-10,1.7061e-20,-1.0869e-08,-2.2403e-21,4.7156e-07,2.1674e-20,5.3118e-06,6.3512e-21,-0.00029792,-8.0924e-21,-0.00030945,1.812e-20,8.4334e-06,-1.868e-20,3.337e-07,1.3094e-20,4.1934e-09,6.2622e-21,3.1669e-10,-1.0293e-20,4.1882e-10,-1.6371e-20,-1.3896e-11,3.8889e-21,-1.9621e-12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-3.62e-21,-8.1215e-21,-2.4319e-19,-2.1374e-20,-4.6222e-19,-3.7215e-21,-4.0518e-19,2.1322e-20,2.3234e-19,2.3325e-20,-3.2709e-19,8.8945e-21,-1.7409e-21,3.2709e-20,1.9082e-19,6.6879e-19,2.3032e-19,7.6629e-19,-4.2235e-19,-1.2141e-20,9.5685e-20,-7.0731e-21,-1.766e-20,-2.22e-20,-1.8553e-19,3.4928e-20,1.7047e-19,4.6469e-21,3.986e-19,-4.2609e-21,2.5887e-21,-1.1639e-20,6.6624e-20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5.9056e-13,2.4578e-20,3.3371e-12,-1.8976e-21,8.3509e-12,9.0775e-21,9.938e-13,-5.0537e-22,-1.2976e-10,-3.788e-21,3.1966e-09,-1.78e-20,-9.5729e-08,-4.4909e-20,-2.4283e-06,1.3623e-20,7.1123e-05,-2.4575e-21,7.6231e-05,2.2278e-20,-3.3271e-06,1.8529e-20,-4.9191e-08,-2.0403e-20,1.1751e-10,-9.2924e-21,-1.0831e-10,2.0062e-20,-2.542e-11,7.6086e-21,5.8152e-12,-1.9916e-20,-3.5704e-12,4.2206e-23,-3.0199e-13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.1051e-19,-4.8099e-21,-2.4182e-20,-1.0276e-20,2.719e-19,8.3731e-21,1.0846e-19,-4.131e-22,1.8185e-19,-7.5928e-22,1.2064e-19,8.5811e-21,-1.9535e-19,-1.6581e-20,2.1675e-20,-7.4758e-21,1.6569e-19,6.6582e-20,-2.1995e-20,-2.913e-20,3.0776e-20,-2.287e-20,-2.8661e-19,-8.4426e-21,1.2943e-19,-1.3779e-20,1.923e-20,1.3998e-20,1.1043e-19,-1.9471e-20,-5.3503e-19,1.2718e-20,-5.3944e-19,1.4102e-20,6.806e-20,1.104e-20,6.5746e-20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.8424e-14,1.5786e-20,1.2217e-14,1.4257e-20,-4.7461e-14,2.346e-20,-5.2432e-13,-5.0732e-21,-8.9311e-13,-3.0953e-22,4.5461e-11,-5.22e-21,-6.8645e-10,-7.4229e-21,1.0657e-08,1.3839e-20,6.2555e-07,-6.865e-21,-1.1978e-05,-2.5205e-20,-1.3312e-05,5.7024e-21,8.0392e-07,1.9875e-20,-1.2287e-09,8.1659e-21,-2.6623e-10,-1.8918e-20,2.508e-11,-1.9875e-20,1.8755e-12,1.6747e-20,-2.0362e-13,-6.3238e-21,3.1373e-13,2.7412e-20,-1.4127e-14,-2.2052e-20,1.4811e-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6.3065e-20,2.0831e-20,-4.8344e-20,2.116e-21,2.6401e-20,-2.3491e-20,-9.8952e-20,1.5325e-20,3.1997e-19,-2.0464e-20,1.8037e-19,3.7879e-21,1.9636e-19,-2.9072e-20,7.9077e-20,4.9268e-21,1.1374e-20,2.3057e-20,-7.7807e-20,-4.2981e-19,-7.6855e-20,-3.1686e-19,7.2108e-20,-1.4312e-21,-7.0552e-20,-1.9083e-20,7.5769e-20,9.4085e-21,-1.1064e-19,1.1029e-20,1.3832e-19,-8.8209e-21,-3.0013e-19,-3.0496e-21,1.5931e-19,1.5672e-20,-4.5228e-20,-7.2202e-21,1.045e-19,-3.7637e-22,-1.9903e-20,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2.4676e-16,1.7747e-20,1.948e-15,-3.0963e-20,2.5922e-15,9.2421e-21,-1.5667e-15,-1.8876e-20,2.0805e-14,-5.9344e-23,1.2215e-13,-1.5455e-20,-8.9878e-12,-2.3836e-20,1.0745e-10,2.0868e-21,-1.3184e-10,1.3513e-20,-1.1102e-07,1.587e-20,1.5194e-06,1.5658e-20,1.76e-06,2.9598e-20,-1.3572e-07,6.9574e-21,2.1287e-09,9.5799e-21,6.8795e-11,-1.2214e-20,-5.6275e-12,-8.3464e-21,-2.7128e-13,-1.6992e-20,-7.0689e-15,2.2239e-20,-1.2349e-14,2.4795e-20,3.2975e-15,-2.8203e-20,-1.6712e-15,1.1736e-20,-8.282e-17,0,0,0,0,0,0,0,0,0,0,0,0
2.241e-20,1.5784e-20,4.9997e-20,-1.0856e-20,4.6511e-19,5.8104e-21,-4.282e-19,2.4518e-20,1.0059e-19,-3.6196e-20,2.1624e-19,4.6453e-21,-8.1092e-20,-3.0632e-20,2.3827e-19,-5.8317e-21,-1.8726e-19,2.4859e-20,5.6375e-21,1.0866e-20,-9.3512e-20,3.6085e-19,-4.8135e-20,3.5312e-19,2.4975e-19,1.6557e-20,-9.9469e-20,-8.4969e-21,-1.294e-19,2.152e-20,-1.1625e-20,-2.5371e-20,1.5469e-19,-1.1424e-21,-9.9406e-20,5.1497e-21,1.7062e-19,-3.3729e-21,6.1412e-20,-7.0364e-21,-1.7876e-19,7.2549e-22,-8.3988e-20,-1.5925e-20,1.5406e-19,0,0,0,0,0,0,0,0,0,0
-4.7968e-18,3.7159e-21,1.0338e-17,-3.1881e-20,-4.9285e-17,2.5582e-21,-1.3943e-16,-5.766e-21,-1.7561e-17,-2.099e-20,2.1702e-16,1.5132e-21,-1.673e-14,2.2271e-21,1.3049e-12,1.1674e-20,-1.266e-11,-2.2866e-20,-1.8164e-10,1.1181e-20,1.4769e-08,5.1553e-21,-1.5145e-07,-1.3123e-20,-1.838e-07,-1.3452e-20,1.714e-08,-1.6203e-21,-5.0499e-10,-1.9899e-20,-9.5956e-12,1.5069e-20,9.9434e-13,8.829e-21,3.8561e-14,-2.3562e-20,9.7132e-16,5.2567e-21,3.4895e-16,2.1129e-21,-1.3622e-16,4.263e-21,1.0933e-16,2.6336e-21,-7.3646e-18,-1.9721e-20,3.2137e-19,0,0,0,0,0,0,0,0
4.179e-20,9.8667e-21,1.3786e-19,2.6617e-20,2.1308e-19,-3.4489e-20,-2.8633e-19,1.4713e-20,-3.1281e-20,-4.9758e-21,-4.4668e-20,3.6162e-20,2.1801e-19,-5.7268e-23,-4.4896e-20,-1.0948e-20,2.3721e-19,1.375e-20,-1.0635e-19,-9.1313e-21,2.039e-20,5.3766e-22,-1.9695e-22,8.834e-19,-1.3139e-19,8.7032e-19,9.855e-20,-4.2215e-20,-1.2683e-20,-5.9031e-21,1.1909e-19,-1.1515e-20,6.5068e-20,1.3565e-20,-1.5825e-19,-5.9745e-21,-1.6622e-20,-1.7173e-20,9.7376e-20,6.3083e-21,3.38e-21,1.3388e-20,-4.1646e-19,1.3401e-20,2.5814e-19,4.0485e-21,4.2278e-20,3.8143e-21,-7.6082e-20,0,0,0,0,0,0
-3.3921e-20,-3.2197e-20,4.0276e-19,-2.1451e-21,-2.976e-19,3.4264e-21,3.1586e-19,-6.5155e-21,5.1663e-18,1.8951e-20,4.4695e-18,1.1984e-20,-1.8271e-16,9.3205e-21,2.0691e-15,1.3371e-20,-1.4839e-13,3.1098e-20,1.1558e-12,-2.01e-20,3.8249e-11,-5.1791e-21,-1.5466e-09,1.579e-20,1.2223e-08,1.4281e-22,1.5626e-08,-2.5598e-20,-1.6905e-09,1.9327e-20,7.3749e-11,-3.7617e-20,7.9082e-13,2.807e-20,-1.3011e-13,1.2354e-20,-3.7983e-15,2.5544e-20,-3.2336e-17,5.273e-21,-1.0332e-17,9.6691e-21,2.597e-18,1.3955e-20,-3.8443e-18,2.343e-21,1.5825e-18,4.5546e-21,-5.0651e-19,-1.7762e-20,-1.9785e-21,0,0,0,0
5.2953e-20,1.52e-20,-1.3437e-19,-5.6319e-21,-1.7918e-19,-4.3465e-21,1.8967e-20,1.0289e-20,9.6669e-20,6.8659e-22,-2.1695e-20,7.4274e-21,-1.5312e-19,-1.1446e-20,7.4008e-20,-7.0793e-21,-1.0062e-22,1.5172e-21,6.1151e-20,-6.9803e-21,-4.0796e-20,1.4388e-20,-1.0985e-20,4.6056e-21,8.7147e-20,1.1812e-18,-7.072e-20,1.1337e-18,1.3688e-19,-4.3893e-21,-4.5448e-20,-2.0932e-21,1.3181e-19,-1.6126e-20,-1.3772e-19,6.4133e-21,9.7926e-20,1.2284e-21,-7.9884e-20,2.1175e-20,3.3954e-19,-4.1758e-21,-1.1136e-21,1.2435e-20,3.9818e-20,6.3451e-21,-1.2132e-19,5.0353e-21,-3.3306e-19,2.331e-20,2.9805e-19,2.2806e-20,-4.0238e-20,0,0
2.3069e-20,-1.5675e-21,2.9605e-19,5.7912e-21,-2.3982e-19,1.6551e-21,8.5506e-20,2.3972e-21,6.8828e-20,-8.2068e-21,1.6759e-19,1.1113e-20,-4.8639e-19,4.3364e-21,2.3903e-17,-9.1061e-21,-2.0039e-16,1.1182e-20,1.3596e-14,2.3494e-20,-8.3055e-14,-1.9053e-20,-4.8209e-12,1.702e-20,1.3177e-10,1.33e-20,-8.1682e-10,1.7355e-20,-1.1064e-09,-5.8995e-20,1.3418e-10,6.8e-21,-7.8673e-12,1.9607e-20,-2.6462e-14,-9.0465e-21,1.2757e-14,-1.4826e-20,2.4154e-16,8.453e-21,-7.569e-19,1.1488e-20,8.0194e-19,-1.4258e-20,2.6161e-19,1.0795e-20,-3.4133e-19,1.8596e-20,2.9655e-19,-1.2003e-20,-4.011e-19,1.7257e-20,-7.4957e-20,3.1109e-21,3.4769e-21
-0.011881,-4.1894e-20,-0.011787,0,0,0,0,0,0
5.2455e-16,-4.5418e-19,-4.5295e-18,-1.0796e-18,-5.0368e-16,0,0,0,0
-8.7311e-05,-1.1547e-19,0.00019058,1.7074e-19,0.00017395,-4.2611e-20,-7.7375e-05,0,0
-5.2161e-18,4.7056e-20,-4.7824e-19,-4.3635e-19,1.4078e-19,-3.7333e-19,2.1418e-18,-6.766e-20,6.8298e-18
0.011474,-9.9714e-20,0.010507,0,0,0,0,0,0,0,0,0,0
1.5579e-17,2.6621e-18,-8.2332e-19,1.6467e-19,-9.356e-18,0,0,0,0,0,0,0,0
0.00012714,-1.1033e-19,-0.00047217,1.4849e-19,-0.00074514,-1.4902e-19,0.00010084,0,0,0,0,0,0
-2.3571e-19,8.2936e-20,1.761e-19,9.6068e-19,-8.404e-19,1.4386e-18,3.4818e-21,1.0037e-19,-6.39e-19,0,0,0,0
7.4963e-07,-6.8853e-20,-3.9411e-06,-4.2376e-20,-4.5934e-06,7.8095e-20,4.4136e-05,-1.4241e-19,-5.1299e-06,4.3554e-20,5.3503e-07,0,0
-1.0012e-18,-6.006e-20,-4.5873e-19,-4.0948e-20,5.6173e-19,-1.3102e-18,-1.106e-18,-6.3966e-19,-5.2209e-19,-1.9866e-20,1.8813e-18,-6.4178e-21,-1.0698e-18
-0.0072913,4.2413e-20,-0.0077129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
5.2956e-18,-2.0331e-19,-2.1807e-17,-7.8115e-19,-2.8048e-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-0.00013405,4.2817e-21,0.0010872,-1.478e-19,0.0015195,-7.7002e-20,-8.3212e-05,0,0,0,0,0,0,0,0,0,0,0,0
5.3417e-19,1.8859e-20,2.1197e-17,-6.7057e-19,3.2551e-18,-6.5571e-19,-1.6488e-17,-4.5079e-20,-4.6913e-19,0,0,0,0,0,0,0,0,0,0
5.8813e-07,1.9838e-20,4.0684e-05,-5.9181e-20,0.00024489,-5.1703e-20,6.1059e-06,-1.6179e-20,3.3343e-05,-8.3833e-21,5.6097e-07,0,0,0,0,0,0,0,0
-2.0844e-19,-5.2311e-20,5.315e-19,3.3026e-20,-4.5638e-18,3.5907e-19,5.5923e-19,8.1919e-19,2.8399e-18,-9.1239e-20,6.9955e-19,1.3959e-20,3.2243e-19,0,0,0,0,0,0
1.5345e-08,-5.6737e-21,3.5262e-07,-3.1641e-20,-8.5903e-07,-9.1859e-20,-5.303e-05,-2.0095e-20,4.1013e-06,9.4603e-21,-1.5578e-06,5.7229e-21,3.1638e-07,-1.3858e-20,5.3427e-08,0,0,0,0
-1.2711e-19,5.2439e-20,9.2034e-20,-1.4185e-20,1.7307e-19,-4.2126e-20,2.9584e-19,9.0361e-19,3.4056e-19,6.7533e-19,8.2521e-20,-6.4475e-20,-1.1414e-19,-1.037e-20,6.0334e-19,-3.8814e-20,-3.9146e-19,0,0
4.5472e-10,3.0618e-20,1.3754e-09,-1.1453e-20,-1.9425e-08,-2.3307e-20,-1.4264e-07,-1.6334e-20,4.9087e-06,-3.2193e-20,-1.5043e-06,1.2131e-19,4.3903e-08,-5.3029e-20,-1.8265e-08,-1.0468e-20,7.5819e-11,-3.2437e-22,4.6855e-10
0.00056441,-7.8961e-20,0.00098797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
4.3204e-17,-2.693e-19,-6.0319e-19,1.227e-18,-3.0447e-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
6.8708e-05,5.37e-20,0.0066024,-1.2172e-20,0.0067502,3.335e-21,9.7244e-06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1.3443e-18,-3.4844e-20,-1.2248e-17,-8.727e-19,2.7815e-18,6.5393e-19,5.7747e-18,2.3481e-20,-1.321e-18,0,0,0,0,0,0,0,0,0,0,0,0,0,0
3.7195e-06,5.9966e-20,0.00010678,2.0649e-20,-0.0016603,5.1882e-20,-0.0020176,-1.5841e-19,0.00010711,2.5672e-22,7.1718e-06,0,0,0,0,0,0,0,0,0,0,0,0
-1.3385e-20,-1.3809e-21,6.7993e-19,-1.2173e-20,-4.9606e-19,1.3554e-19,-1.0493e-18,-1.0582e-19,1.7153e-18,-1.3758e-21,5.1648e-19,2.2584e-20,3.7758e-19,0,0,0,0,0,0,0,0,0,0
2.7408e-07,8.0252e-21,5.1207e-07,-5.4626e-20,-2.9301e-05,-4.0028e-20,8.9619e-05,-2.8826e-20,0.00024023,8.5236e-20,-2.9381e-05,4.6373e-20,2.969e-07,3.2771e-20,9.2062e-08,0,0,0,0,0,0,0,0
5.4879e-19,-1.7612e-20,-9.6586e-19,-3.8079e-20,6.4595e-19,5.4531e-20,2.8665e-19,-6.2183e-19,-5.2396e-19,-5.7427e-19,-5.658e-21,6.1658e-20,-5.3137e-19,-1.8589e-20,-6.4829e-20,-7.4467e-20,-1.2178e-19,0,0,0,0,0,0
2.1807e-09,-3.2677e-20,-8.6485e-09,-5.0556e-20,-2.0946e-07,-5.0302e-20,2.5234e-06,9.8184e-20,8.9214e-06,-9.0381e-20,-2.0674e-05,1.2291e-19,3.0449e-06,7.8387e-21,-1.9e-07,-4.7249e-20,-3.241e-09,9.9483e-20,3.2628e-09,0,0,0,0
8.0516e-20,-1.6557e-20,-1.8461e-20,2.7752e-20,5.2843e-20,9.6013e-21,-1.049e-19,-6.432e-20,2.6508e-19,1.4077e-18,-4.3335e-19,1.4018e-18,-5.2178e-19,8.6816e-21,-6.0666e-19,-2.0161e-20,8.939e-19,-2.9287e-20,-1.098e-18,2.4091e-20,4.0212e-19,0,0
6.306e-11,5.6482e-20,-7.1572e-11,-1.0507e-20,-4.4614e-10,4.9126e-20,1.9848e-08,6.8538e-20,-8.4264e-08,-1.8197e-19,-1.7168e-06,5.8157e-20,1.607e-06,-6.8636e-20,-1.892e-07,5.9836e-20,1.8911e-08,4.5462e-20,-5.237e-10,-5.5054e-20,-1.1241e-10,-2.8018e-20,1.352e-11
-0.0010581,5.416e-20,-0.0010261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
3.2842e-17,1.6729e-18,1.1507e-17,1.4505e-19,-5.7758e-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
5.5673e-05,7.6876e-20,-0.0060295,-3.5669e-20,-0.0062965,3.6278e-20,7.4178e-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
6.793e-18,2.3855e-20,-6.122e-17,4.1614e-20,-7.5293e-18,4.3159e-19,1.1508e-16,-6.7405e-22,-6.9863e-18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2.1604e-07,8.3878e-21,-0.0001795,7.2555e-20,0.0020302,1.3346e-20,0.0017221,3.9853e-20,-0.00017247,-8.2112e-20,1.1034e-06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.6414e-18,-2.6315e-20,-4.9997e-19,4.1009e-20,8.9513e-18,4.3635e-19,2.5196e-18,-2.1401e-20,-2.1799e-17,-3.8896e-20,3.4097e-19,1.0127e-20,7.2466e-19,0,0,0,0,0,0,0,0,0,0,0,0,0,0
5.3096e-08,-4.5327e-20,-1.9548e-06,1.5319e-20,5.6158e-05,4.3867e-20,-0.00016509,5.6452e-21,6.4365e-05,-1.2762e-21,5.5116e-05,5.9591e-20,-2.204e-06,-8.7642e-20,3.8324e-08,0,0,0,0,0,0,0,0,0,0,0,0
9.5013e-20,5.387e-20,3.8002e-19,-1.2392e-20,-3.3804e-19,5.64e-20,8.5783e-19,9.5236e-19,-2.0583e-19,3.555e-19,1.0396e-18,-6.7138e-20,-3.4486e-19,6.8291e-21,1.8556e-19,-3.4339e-20,4.6513e-19,0,0,0,0,0,0,0,0,0,0
3.0679e-10,1.0616e-20,-1.2046e-08,1.7701e-20,5.9161e-07,-7.0677e-20,-6.5634e-06,-7.5419e-20,1.9028e-06,-1.0468e-19,-6.4312e-05,-1.1518e-19,-5.9293e-06,7.2268e-20,6.5752e-07,-9.1039e-20,-1.152e-08,-9.9051e-21,1.943e-09,0,0,0,0,0,0,0,0
6.0096e-21,5.4126e-20,-4.865e-19,-2.1561e-20,-1.2668e-20,6.5762e-21,-1.7424e-19,4.2126e-20,-4.9898e-19,-1.3281e-18,1.2916e-19,-1.6146e-18,9.1444e-19,2.2478e-20,-1.0346e-19,1.6407e-20,2.4546e-20,-3.1102e-20,3.0555e-19,-2.6066e-21,3.8121e-19,0,0,0,0,0,0
4.5205e-11,-2.6807e-20,-6.9584e-11,-4.02e-20,2.9895e-09,-3.9703e-20,-7.211e-08,9.1134e-20,3.9023e-07,-1.1608e-19,-6.1016e-07,8.7526e-20,1.0238e-05,4.8587e-20,1.2114e-07,-3.2835e-20,-8.1708e-08,3.1373e-20,2.6318e-09,-4.1223e-20,-1.1389e-10,-1.7936e-20,1.2849e-11,0,0,0,0
6.7951e-19,-5.402e-20,3.0323e-20,-3.2593e-20,-4.4518e-19,-1.859e-20,-1.2102e-19,-6.3083e-22,2.793e-20,-4.7558e-20,6.0521e-19,-1.3031e-18,-9.8721e-19,-1.271e-18,9.7273e-19,6.687e-20,3.7225e-19,-5.5505e-21,-5.4012e-19,-2.4494e-21,1.1888e-18,-5.8616e-20,-9.435e-19,7.1715e-20,4.1024e-19,0,0
2.9685e-13,-6.7147e-20,-1.272e-12,-1.042e-20,7.9365e-12,5.0709e-20,-3.6755e-10,-4.3511e-20,4.6202e-09,4.1151e-20,-1.6232e-08,-1.2937e-20,1.9917e-07,1.2253e-19,-9.4592e-07,-3.6873e-20,2.8605e-08,-1.5575e-21,5.0327e-09,2.1023e-20,-3.5376e-10,1.8855e-20,7.6144e-12,-1.8717e-20,-4.5955e-13,3.5251e-20,5.2406e-13
-0.0011464,8.1008e-22,-0.0012145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2.5649e-17,-2.152e-19,-4.1278e-18,-3.6427e-19,1.6985e-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
8.1498e-05,1.8641e-20,-0.0018928,-4.1315e-20,-0.0019861,-1.6575e-20,1.5309e-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5.5727e-19,2.7975e-20,-7.1351e-18,1.9231e-19,-6.1848e-18,2.051e-19,-4.1239e-18,1.9291e-20,9.6646e-19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1.2402e-06,-2.4369e-21,-5.1756e-05,-7.9455e-22,-0.00048667,5.0797e-20,-0.00060596,4.5294e-20,-1.8568e-05,-1.9748e-21,1.6671e-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1.2429e-18,1.0561e-20,5.9797e-19,-3.0419e-21,2.3593e-17,7.3983e-19,1.7924e-17,7.1278e-19,1.9803e-17,-7.9401e-21,8.2591e-20,-2.8312e-20,1.7551e-18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
8.2752e-07,-1.1843e-20,-1.3986e-06,-9.1816e-21,-2.5964e-05,1.2252e-20,0.0021991,-3.6831e-20,0.0024852,4.6665e-20,-3.1731e-05,-4.728e-21,-3.8845e-06,-1.5868e-20,5.43e-07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2.1508e-19,-1.2842e-20,2.5705e-19,1.5474e-20,-5.1794e-19,2.1187e-20,-1.3357e-17,-2.0242e-19,-9.3112e-18,4.4408e-19,-1.4358e-17,-4.4067e-21,-4.7303e-19,2.9632e-20,-4.5124e-19,-4.7184e-20,-5.0055e-20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
3.5139e-09,-1.336e-21,-1.815e-07,2.3158e-20,5.1112e-07,3.4576e-20,4.2627e-05,-4.8659e-20,-0.0010121,8.6099e-20,-0.0012149,-1.1336e-20,4.3689e-05,-2.3815e-20,2.5341e-07,-2.8565e-20,-3.6803e-08,9.3908e-21,7.0101e-08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1.8229e-19,-4.913e-21,2.3255e-20,2.6676e-20,5.2902e-19,-1.3173e-20,1.9024e-19,-3.1987e-20,3.294e-18,-4.5121e-19,2.1136e-18,-7.0713e-19,4.5458e-18,-3.9645e-20,5.2294e-19,7.4175e-21,4.8965e-19,8.4555e-22,8.6206e-20,-2.5552e-21,5.6828e-21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
9.6878e-10,-1.6285e-21,1.4367e-10,-1.766e-20,1.5765e-08,1.9395e-20,1.372e-07,1.0472e-20,-1.7492e-05,-5.031e-20,0.00021024,-4.4066e-20,0.00029012,8.1671e-21,-1.8584e-05,1.1648e-21,1.8447e-07,2.5456e-20,6.2475e-10,4.0413e-20,-1.0925e-08,-2.9095e-20,1.2581e-09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1.4212e-19,1.8686e-21,-1.0476e-20,-1.5509e-20,5.8373e-20,6.0489e-21,-2.7643e-20,5.9243e-21,-2.4942e-21,-2.3359e-20,-5.3604e-19,-9.4344e-19,-3.4877e-19,-1.0606e-18,-6.9117e-19,4.9184e-20,-8.6744e-20,4.3493e-21,5.6084e-20,4.871e-21,1.6378e-19,2.3937e-20,6.158e-20,-1.0186e-20,-8.7678e-20,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1.6367e-13,2.1316e-20,-1.487e-10,-4.4957e-21,1.1399e-10,5.8539e-21,-2.2197e-09,-1.3872e-20,-1.0725e-07,4.3173e-21,3.5805e-06,-1.2581e-20,-2.362e-05,4.1489e-20,-4.3965e-05,-3.9538e-20,4.2097e-06,1.2552e-20,-1.0469e-07,-2.7004e-22,-2.7787e-10,-2.7641e-20,3.6807e-10,2.5179e-20,-9.89e-11,-1.7349e-20,5.3735e-11,0,0,0,0,0,0,0,0,0,0,0,0
-1.7486e-19,-7.0419e-21,-2.375e-19,1.3737e-20,-4.6665e-19,8.3598e-21,-2.7987e-19,-2.4409e-21,1.5164e-19,-1.8653e-20,7.4107e-20,-2.2412e-20,1.7636e-19,1.029e-18,-2.2077e-19,1.1111e-18,3.51e-19,-5.3328e-20,1.1051e-20,1.4574e-20,1.3258e-19,-5.0701e-20,-2.9092e-19,1.6351e-20,-2.6029e-19,1.9039e-20,2.8247e-19,-1.0449e-20,-4.415e-21,0,0,0,0,0,0,0,0,0,0
2.6804e-13,2.4952e-20,6.6026e-13,5.1644e-21,5.6172e-12,8.7965e-21,-3.2781e-11,1.7638e-20,1.6809e-10,1.3938e-20,2.5818e-08,-2.8265e-20,-4.3592e-07,-3.6353e-20,1.2475e-06,1.4607e-20,4.8373e-06,2.8415e-20,-6.136e-07,-1.3379e-20,2.4785e-08,-1.2331e-20,-9.7793e-11,-7.7375e-21,-1.4698e-11,5.6453e-21,1.2148e-12,7.5974e-21,-7.1355e-12,-5.5729e-21,6.0049e-13,0,0,0,0,0,0,0,0
3.6772e-20,-7.6466e-21,4.0162e-19,-2.9648e-20,-3.8095e-19,9.1358e-21,-1.0808e-19,-1.1136e-20,-1.3763e-19,-1.2848e-20,1.5154e-19,-2.8389e-21,1.2641e-19,6.9123e-20,-1.0607e-19,-3.9236e-20,7.7912e-20,-1.6645e-20,2.3381e-19,-9.6836e-21,-1.5113e-19,1.9807e-20,3.8143e-20,1.7234e-20,-4.4593e-20,-2.4593e-20,4.9985e-19,1.4561e-20,5.8776e-20,5.7415e-22,-2.4694e-19,-5.8689e-21,8.0601e-20,0,0,0,0,0,0
-8.1051e-16,1.0488e-20,-3.0759e-14,-2.5859e-20,-2.1827e-14,-4.2484e-21,-1.3985e-13,1.1961e-20,4.1413e-12,-1.9965e-20,2.0803e-11,1.4778e-22,-3.5344e-09,2.4787e-20,3.3518e-08,4.0102e-20,3.8774e-08,-4.6281e-20,-4.2158e-07,-1.2183e-20,6.3726e-08,1.1243e-20,-3.5279e-09,-2.181e-22,3.8282e-11,-1.285e-20,2.0177e-12,-2.9156e-20,5.7188e-14,-2.2686e-21,2.1482e-13,2.7763e-20,-4.437e-14,-8.4197e-21,1.2464e-14,0,0,0,0
-1.1291e-19,2.0408e-20,3.6337e-19,2.8449e-20,1.2997e-19,9.8517e-22,-3.6226e-19,-7.4872e-21,2.5999e-19,-1.5731e-20,-1.3228e-19,4.7981e-21,-6.5169e-20,2.3736e-20,1.2567e-19,2.3413e-20,5.8171e-21,-1.1949e-19,2.0266e-20,7.7282e-20,-1.8157e-19,-2.9537e-21,1.7098e-19,-3.6646e-20,8.4982e-20,1.2735e-20,-2.5841e-20,2.3009e-20,3.9105e-19,-1.2626e-20,-5.2113e-21,2.7673e-20,-3.6263e-19,4.2991e-21,9.1356e-20,1.6836e-20,5.7147e-20,0,0
2.2325e-17,5.2803e-20,2.2305e-16,-3.0133e-20,9.7621e-16,-9.4274e-21,-4.7749e-16,1.4141e-20,1.2993e-14,1.0012e-20,-2.7893e-13,-3.8197e-21,-6.4347e-12,4.0825e-21,3.2128e-10,-2.4212e-20,-1.544e-09,6.3316e-20,-1.3899e-08,-2.6321e-20,3.0719e-08,2.0623e-20,-5.0315e-09,-2.7104e-20,3.4662e-10,1.6473e-20,-5.8788e-12,-3.5013e-20,-1.1725e-13,4.493e-20,8.0447e-16,-1.3866e-21,-1.5174e-15,-2.4052e-20,1.0283e-15,-1.5352e-20,-1.4463e-15,-9.3679e-21,9.4843e-17
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment